/* ════════════════════════════════════════════════════════════════
   MAOJIEN theme (same family as sumihandles.com)
   ════════════════════════════════════════════════════════════════ */
:root {
  --display: 'Archivo', 'Inter', system-ui, sans-serif;
}

:root[data-theme="dark"] {
  --spot: rgba(255,255,255,0.07);
  --bg: #0a0a0a;
  --bg-2: #111;
  --surface: #0e0e0e;
  --surface-2: #161616;
  --surface-3: #1d1d1d;
  --text: #f0f0f0;
  --text-bright: #fff;
  --text-dim: #888;
  --text-faint: #555;
  --border: #1c1c1c;
  --border-strong: #2a2a2a;
  --border-bright: #444;
  --accent: #fff;
  --shadow: 0 1px 0 rgba(255,255,255,0.02), 0 16px 40px rgba(0,0,0,0.5);
  --grain-opacity: 0.05;
}

:root[data-theme="light"] {
  --spot: rgba(20,19,18,0.05);
  --bg: #fcfcfa;
  --bg-2: #f0f0ed;
  --surface: #f8f8f6;
  --surface-2: #efefec;
  --surface-3: #e6e6e2;
  --text: #2a2926;
  --text-bright: #16150f;
  --text-dim: #6a685f;
  --text-faint: #a6a49b;
  --border: #e7e6e1;
  --border-strong: #cccbc4;
  --border-bright: #a09f97;
  --accent: #16150f;
  --shadow: 0 1px 0 rgba(0,0,0,0.02), 0 16px 40px rgba(40,38,30,0.07);
  --grain-opacity: 0.04;
}

:root { color-scheme: dark; }
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body { animation: pageEnter 0.55s cubic-bezier(0.16, 1, 0.3, 1) both; overflow-x: hidden; }
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible { outline: 2px solid var(--text-dim); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute;
  left: 16px; top: -48px;
  z-index: 100;
  background: var(--accent);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 14px; }

/* film grain. quiet. */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ════════════════════════════════════════════════════════════════
   HORIZONTAL STAGE — the page scrolls left → right like a timeline
   ════════════════════════════════════════════════════════════════ */
:root { --topbar-h: 61px; --timeline-h: 92px; }

.stage { position: relative; z-index: 1; }
.htrack { display: flex; flex-direction: column; }
.slide { position: relative; padding: 54px clamp(22px, 5vw, 40px); }
.slide .panel, .slide .monitor { width: 100%; max-width: 980px; margin: 0 auto; }
.hspacer { flex: 0 0 auto; }

@media (min-width: 821px) {
  html, body.home { height: 100%; overflow: hidden; }
  .stage {
    position: fixed;
    top: var(--topbar-h); bottom: var(--timeline-h);
    left: 0; right: 0;
    overflow-x: auto; overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: auto;
  }
  .stage::-webkit-scrollbar { display: none; }
  .htrack { flex-direction: row; align-items: stretch; height: 100%; width: max-content; }
  .slide {
    height: 100%;
    flex: 0 0 auto;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 clamp(48px, 5.5vw, 130px);
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  .slide.dim { opacity: 0.38; }
  .hspacer { height: 100%; }
  .slide + .slide { border-left: 1px solid var(--border); }
  .slide .panel, .slide .monitor { margin: 0; }
  .slide-hero .monitor { width: min(1040px, 84vw); }
  .slide-stats { gap: 30px; justify-content: center; }
  .slide-stats .stats-band,
  .slide-stats .marquee { width: min(760px, 78vw); }
  .slide-stats .marquee { margin: 0; }
  .slide-work .panel { width: min(940px, 88vw); }
  .slide-about .panel { width: min(940px, 88vw); }
  .slide-contact .panel { width: min(720px, 84vw); }
  .slide-end { align-items: center; text-align: center; padding-right: clamp(80px, 12vw, 220px); }
}

/* ════════════════════════════════════════════════════════════════
   TIMELINE (fixed multi-track editor timeline; scroll = playhead)
   ════════════════════════════════════════════════════════════════ */

.timeline {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  height: 92px;
  display: flex;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}
.tl-heads {
  display: grid;
  grid-template-rows: 18px 1fr 1fr 1fr;
  width: 46px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: var(--surface-2);
}
.tl-h {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  border-bottom: 1px solid var(--border);
}
.tl-h:last-child { border-bottom: none; }
.tl-body {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-rows: 18px 1fr 1fr 1fr;
  min-width: 0;
}
.tl-ruler {
  position: relative;
  border-bottom: 1px solid var(--border);
  background-image: repeating-linear-gradient(90deg, var(--border-strong) 0 1px, transparent 1px 22px);
  background-size: 100% 6px;
  background-position: left bottom;
  background-repeat: repeat-x;
  overflow: hidden;
}
.tl-rlabel {
  position: absolute;
  top: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  transform: translateX(4px);
  font-variant-numeric: tabular-nums;
}
.tl-track { position: relative; border-bottom: 1px solid var(--border); }
.tl-track.tl-a1 { border-bottom: none; }
.tl-clip {
  position: absolute;
  top: 2px; bottom: 2px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--surface-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tl-clip:hover { color: var(--text); border-color: var(--border-bright); background: var(--surface-3); }
.tl-clip.active { color: var(--text-bright); border-color: var(--border-bright); }
.tl-still {
  position: absolute;
  left: 0.8%;
  width: 10%;
  min-width: 64px;
  top: 2px; bottom: 2px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  background: var(--surface);
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
}
.tl-audio {
  position: absolute;
  left: 0.4%; right: 0.4%;
  top: 2px; bottom: 2px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background-color: var(--surface);
  background-image: repeating-linear-gradient(
    90deg,
    color-mix(in srgb, var(--text-faint) 50%, transparent) 0 2px,
    transparent 2px 5px
  );
  background-size: calc(100% - 140px) 52%;
  background-position: right 8px center;
  background-repeat: no-repeat;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
}
.tl-playhead {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: var(--accent);
  pointer-events: none;
  z-index: 3;
}
.tl-head {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border: 6px solid transparent;
  border-top: 7px solid var(--accent);
}
.tl-tc {
  position: absolute;
  top: 3px; left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.tl-tc.flip { left: auto; right: 8px; }

/* ════════════════════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════════════════════ */
.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 18px 36px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.topbar > .brand { flex: 1 1 0; justify-content: flex-start; }
.topbar > .nav-links { flex: 1 1 0; justify-content: center; }
.topbar > .topbar-right { flex: 1 1 0; justify-content: flex-end; }
.topbar-sticky {
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand { display: flex; align-items: center; gap: 12px; transition: opacity 0.2s ease; }
.brand:hover { opacity: 0.85; }
.brand .mark-svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.brand:hover .mark-svg { transform: rotate(-8deg) scale(1.06); }
.brand .mark-svg path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawOn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}
@keyframes drawOn { to { stroke-dashoffset: 0; } }
.brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-bright);
  padding-top: 1px;
}
.brand-file {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  padding: 3px 7px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { position: relative; transition: color 0.2s ease; padding-bottom: 2px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-links a.current { color: var(--text); }
.nav-links a.current::after { right: 0; }

.topbar-right { display: flex; align-items: center; gap: 18px; }

/* theme toggle */
.theme-toggle { background: none; border: none; cursor: pointer; padding: 4px; }
.t-track {
  display: inline-flex;
  width: 38px; height: 21px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  position: relative;
  transition: border-color 0.25s ease;
}
.theme-toggle:hover .t-track { border-color: var(--border-bright); }
.t-knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--text-dim);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
:root[data-theme="light"] .t-knob { transform: translateX(17px); }
.t-icon-dark { display: block; }
.t-icon-light { display: none; }
:root[data-theme="light"] .t-icon-dark { display: none; }
:root[data-theme="light"] .t-icon-light { display: block; }

.btn-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-cta:hover { border-color: var(--border-bright); background: var(--surface-2); }

/* ════════════════════════════════════════════════════════════════
   LAYOUT / SECTIONS
   ════════════════════════════════════════════════════════════════ */
.home-main { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.home-section { padding: 52px 0 0; }

/* ════════════════════════════════════════════════════════════════
   PANEL CHROME (every section is a panel)
   ════════════════════════════════════════════════════════════════ */
.panel {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.ph-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.ph-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.ph-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.panel-body { padding: 26px; }
.panel-body.panel-flush { padding: 0; }

/* panels zoom in as they enter */
.slide .panel.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.975);
  transform-origin: center top;
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.slide .panel.reveal.in { opacity: 1; transform: translateY(0) scale(1); }

.section-sub { color: var(--text-dim); font-size: 14px; line-height: 1.7; max-width: 560px; margin: 0 0 36px; }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero { padding: 26px 0 0; }

/* the program monitor */
.monitor {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}
.monitor-body {
  position: relative;
  background: var(--bg);
  padding: clamp(44px, 7vw, 96px) clamp(26px, 5.5vw, 76px);
  min-height: min(62vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.m-guide { position: absolute; background: var(--text); opacity: 0.04; pointer-events: none; }
.m-guide.v1 { left: 33.333%; top: 0; bottom: 0; width: 1px; }
.m-guide.v2 { left: 66.666%; top: 0; bottom: 0; width: 1px; }
.m-guide.h1 { top: 33.333%; left: 0; right: 0; height: 1px; }
.m-guide.h2 { top: 66.666%; left: 0; right: 0; height: 1px; }
.m-corner { position: absolute; width: 16px; height: 16px; border: 1.5px solid var(--text-faint); opacity: 0.55; pointer-events: none; }
.m-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.m-corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.m-corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.m-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.hero-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 12px;
}
.hero-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 10.5vw, 148px);
  line-height: 1.04;
  padding-bottom: 0.06em;
  margin: 0 0 20px;
  color: var(--text-bright);
  letter-spacing: -0.03em;
  overflow: hidden;
}

.monitor-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 14px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.monitor-foot .tc { font-size: 11.5px; }
.m-zoom {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.transport { display: flex; gap: 6px; }
.transport button {
  width: 32px; height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.transport button:hover { color: var(--text-bright); border-color: var(--border-bright); }
.transport button:active { transform: translateY(1px); }
.transport svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }

/* floating transport bar, centered just above the timeline */
.transport-bar {
  position: fixed;
  left: 50%;
  bottom: calc(var(--timeline-h, 92px) + 14px);
  transform: translateX(-50%);
  z-index: 55;
}
.transport-bar .transport {
  gap: 7px;
  padding: 7px 9px;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.transport-bar .transport button { width: 34px; height: 28px; border-radius: 7px; }
.transport-bar .t-play {
  width: 40px;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.transport-bar .t-play:hover { color: var(--bg); border-color: var(--accent); opacity: 0.9; }
.transport-bar .t-play svg { width: 14px; height: 14px; }
.hero-dot { color: var(--text-dim); }
.hero-wordmark .wl {
  display: inline-block;
  transform: translateY(118%) rotate(4deg);
  animation: wlUp 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes wlUp {
  to { transform: translateY(0) rotate(0deg); }
}
.tc {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.lede { color: var(--text-dim); font-size: 15px; line-height: 1.75; max-width: 440px; margin: 0 0 26px; }

.cta-row { display: flex; align-items: center; gap: 22px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  background: var(--accent);
  color: var(--bg);
  padding: 13px 26px;
  border-radius: 6px;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary.lg { padding: 15px 32px; font-size: 14px; }
.btn-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-link:hover { color: var(--text); border-color: var(--border-bright); }

/* hero mark: the bug in the monitor's corner */
.hero-mark {
  position: absolute;
  right: clamp(22px, 4.5vw, 52px);
  bottom: clamp(20px, 4vw, 46px);
  cursor: pointer;
}
.hero-mark svg { width: clamp(120px, 15vw, 185px); height: auto; color: var(--accent); display: block; }
.hero-mark .draw-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawOn 2s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards;
}

/* ════════════════════════════════════════════════════════════════
   STATS BAND
   ════════════════════════════════════════════════════════════════ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 10px 0 0;
}
.stat-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-bright);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  margin: 56px calc(50% - 50vw) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marq 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
@keyframes marq { to { transform: translateX(-50%); } }
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════════
   WORK GRID
   ════════════════════════════════════════════════════════════════ */
/* client category tabs */
.work-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.work-filters:empty { display: none; }
.filter-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.filter-btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter-btn.active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

/* horizontal clip strip: each piece is a clip, click opens the preview */
.work-grid { display: block; }
.work-row { display: flex; gap: 16px; align-items: stretch; padding: 2px; }
.clip-card {
  flex: 0 0 auto; width: 214px;
  display: flex; flex-direction: column; align-items: stretch;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  cursor: pointer; color: inherit; font: inherit; text-align: left; padding: 0;
  transition: border-color 0.2s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.clip-card.hidden { display: none; }
.clip-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.clip-thumb { display: block; position: relative; width: 100%; height: 0; padding-bottom: 150%; background: var(--bg-2); overflow: hidden; }
.clip-thumb img, .clip-thumb video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clip-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 80% at 50% 0%, var(--surface-3), var(--bg-2) 76%);
}
.clip-ph svg { width: 30px; height: 30px; stroke: var(--text-faint); fill: none; stroke-width: 1.6; opacity: 0.75; }
.clip-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(10,10,10,0.66); border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.clip-card:hover .clip-play { transform: translate(-50%, -50%) scale(1.12); }
.clip-play svg { width: 15px; height: 15px; fill: #fff; margin-left: 2px; }

/* real thumbnail (proxied); fades in on load, slight zoom on hover; falls back to placeholder */
.clip-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  opacity: 0; transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.clip-img.on { opacity: 1; }
.clip-card:hover .clip-img { transform: scale(1.04); }
.clip-thumb .pf-badge, .clip-thumb .clip-star, .clip-thumb .clip-play { z-index: 2; }
.clip-meta { display: block; padding: 12px 13px 14px; }
.clip-title { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-bright); line-height: 1.3; }
.clip-client { display: block; font-size: 10.5px; color: var(--text-faint); margin-top: 4px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; }

/* preview modal: opening a clip in the program window */
.pv-modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 32px; }
.pv-modal.open { display: flex; }
.pv-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.74); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.pv-window {
  position: relative; z-index: 1;
  width: min(400px, 92vw); max-height: 90vh; overflow: auto;
  border: 1px solid var(--border-strong); border-radius: 12px;
  background: var(--surface); box-shadow: var(--shadow);
  animation: pvIn 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
.pv-window.wide { width: min(840px, 94vw); }
@keyframes pvIn { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }
.pv-close {
  background: var(--surface-3); border: 1px solid var(--border-strong); color: var(--text);
  height: 22px; padding: 0 9px; border-radius: 5px; cursor: pointer;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.pv-close:hover { color: var(--text-bright); border-color: var(--border-bright); }
.pv-body { background: var(--bg-2); padding: 16px; display: flex; justify-content: center; }
.pv-body iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 8px; }
.pv-body video { width: 100%; max-height: 76vh; border-radius: 8px; background: #000; }
.pv-body .embed-holder { background: none; padding: 0; box-shadow: none; }

/* ════════════════════════════════════════════════════════════════
   PROJECT BIN — clients as folders, their clips on the right
   ════════════════════════════════════════════════════════════════ */
.bin-browser { display: grid; grid-template-columns: 236px 1fr; height: min(62vh, 520px); }
.bin-list {
  border-right: 1px solid var(--border);
  background: var(--surface);
  padding: 8px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 2px;
}
.bin-folder {
  display: flex; align-items: center; gap: 11px;
  width: 100%; text-align: left;
  padding: 11px 12px;
  background: none; border: 1px solid transparent; border-radius: 8px;
  color: var(--text-dim); cursor: pointer; font: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.bin-folder:hover { background: var(--surface-2); color: var(--text); }
.bin-folder.active { background: var(--surface-2); border-color: var(--border-strong); color: var(--text-bright); }
.bin-folder .fi { width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.bin-folder .fi svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.bin-folder .fn { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bin-folder .fc {
  margin-left: auto; flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--text-faint);
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 99px; padding: 1px 7px;
}
.bin-folder.active .fc { color: var(--text); }

.bin-clips { display: flex; flex-direction: column; min-width: 0; min-height: 0; }
.bin-sub {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 13px 18px; border-bottom: 1px solid var(--border);
}
.bs-name { font-size: 13.5px; font-weight: 700; color: var(--text-bright); }
.bs-note { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.bs-link {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim); border-bottom: 1px solid var(--border-strong); padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.bs-link:hover { color: var(--text); border-color: var(--border-bright); }
.bin-grid {
  flex: 1; min-height: 0; overflow-y: auto;
  padding: 16px 18px;
  display: flex; flex-wrap: wrap; align-content: flex-start;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
  overscroll-behavior: contain;
}
.bin-grid::-webkit-scrollbar { width: 11px; }
.bin-grid::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; border: 3px solid var(--surface); }
.bin-grid::-webkit-scrollbar-thumb:hover { background: var(--border-bright); }
.bin-grid .clip-card { flex: 0 0 150px; width: 150px; }
.bin-grid .clip-thumb { flex: 0 0 auto; height: 224px; padding-bottom: 0; }
.bin-empty { padding: 28px 18px; color: var(--text-dim); font-size: 13px; line-height: 1.7; max-width: 420px; }
.bin-empty a { color: var(--text); border-bottom: 1px solid var(--border-bright); }

.bin-more {
  display: block; width: calc(100% - 36px);
  margin: 2px 18px 18px;
  padding: 13px;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim); cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.bin-more:hover { color: var(--text); border-color: var(--border-bright); background: var(--surface-3); }
.bin-more:active { transform: translateY(1px); }

/* sort control + dated cards */
.bs-right { margin-left: auto; display: inline-flex; align-items: center; gap: 14px; }
.bs-right .bs-link { margin-left: 0; }
.bin-sort { display: inline-flex; gap: 4px; }
.bin-sort button {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-faint); background: none; border: 1px solid var(--border); border-radius: 6px;
  padding: 5px 9px; cursor: pointer; transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.bin-sort button:hover { color: var(--text); border-color: var(--border-strong); }
.bin-sort button.on { color: var(--bg); background: var(--accent); border-color: var(--accent); }

.clip-date { display: block; font-size: 10.5px; color: var(--text-faint); margin-top: 4px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.03em; }
.clip-card.feat { border-color: var(--border-bright); }
.clip-star { position: absolute; top: 8px; right: 9px; z-index: 2; color: #fff; font-size: 13px; line-height: 1; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }

.pv-actions { display: inline-flex; align-items: center; gap: 12px; }
.pv-out { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); border-bottom: 1px solid var(--border-strong); padding-bottom: 2px; transition: color 0.2s ease, border-color 0.2s ease; }
.pv-out:hover { color: var(--text); border-color: var(--border-bright); }

.work-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  overflow: hidden;
}
.work-media.vertical { aspect-ratio: 9 / 16; max-height: 420px; }
.work-media img, .work-media video, .work-media iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.work-media .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  transition: background 0.25s ease;
}
.work-media .play:hover { background: rgba(0,0,0,0.12); }
.play-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(10,10,10,0.78);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.work-media .play:hover .play-btn { transform: scale(1.08); }
.play-btn svg { width: 18px; height: 18px; fill: #fff; margin-left: 3px; }

.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.work-title { font-size: 13px; font-weight: 500; color: var(--text); }
.work-client { font-size: 11.5px; color: var(--text-faint); margin-top: 3px; }
.work-out {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.work-out:hover { color: var(--text); border-color: var(--border-bright); }

.pf-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #eee;
  background: rgba(10,10,10,0.66);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 4px 9px;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}

/* official platform embeds (Instagram / TikTok) */
.work-card.embed .embed-holder {
  background:
    radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--surface-3) 55%, transparent), transparent 70%),
    var(--bg-2);
  padding: 22px 22px 14px;
  display: flex;
  justify-content: center;
}
.embed-holder .instagram-media,
.embed-holder .tiktok-embed {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 400px !important;
  min-width: 0 !important;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  border: none !important;
}
.embed-holder iframe { border-radius: 12px; }

/* quiet empty state */
.work-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 44px 40px;
}
.work-empty p { color: var(--text-dim); font-size: 14px; line-height: 1.8; margin: 0; max-width: 480px; }
.work-empty a { color: var(--text); border-bottom: 1px solid var(--border-bright); transition: opacity 0.2s ease; }
.work-empty a:hover { opacity: 0.8; }

/* ════════════════════════════════════════════════════════════════
   CLIENTS
   ════════════════════════════════════════════════════════════════ */
/* the project bin: clients listed like source footage */
.bin-cols {
  display: flex;
  justify-content: space-between;
  padding: 8px 18px;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.bin-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}
.bin-row:last-child { border-bottom: none; }
a.bin-row:hover { background: var(--surface-2); }
.bin-icon {
  width: 30px; height: 21px;
  border: 1.5px solid var(--text-faint);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  opacity: 0.85;
}
.bin-icon::before,
.bin-icon::after {
  content: "";
  position: absolute;
  left: 3px; right: 3px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--text-faint) 0 3px, transparent 3px 6px);
}
.bin-icon::before { top: 2.5px; }
.bin-icon::after { bottom: 2.5px; }
.bin-name { font-size: 13.5px; font-weight: 600; color: var(--text-bright); }
.bin-meta {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
.clients-note { color: var(--text-dim); font-size: 14px; line-height: 1.8; margin: 0; max-width: 480px; padding: 20px 18px; }

/* ════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.about-text {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.85;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}
.about-body { padding: 30px 30px 32px; }
.about-lead {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--text-bright);
  margin: 0 0 28px;
  max-width: 740px;
  text-wrap: balance;
}
.about-skills {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.sk-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint);
  margin-right: 8px;
}
.sk {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--text-dim); border: 1px solid var(--border-strong);
  border-radius: 99px; padding: 6px 12px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.sk:hover { color: var(--text); border-color: var(--border-bright); }

/* Selected Work folder, set apart at the top of the bin */
.bin-folder.bin-sel { margin-bottom: 6px; padding-bottom: 13px; border-bottom: 1px solid var(--border); border-radius: 8px 8px 0 0; }
.bin-folder.bin-sel .fi svg { fill: currentColor; stroke: none; }
.bin-folder.bin-sel.active .fi svg,
.bin-folder.bin-sel:hover .fi svg { fill: var(--text-bright); }

/* ════════════════════════════════════════════════════════════════
   SOCIALS
   ════════════════════════════════════════════════════════════════ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 18px 20px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.social-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-icon svg { width: 17px; height: 17px; stroke: var(--text); fill: none; stroke-width: 1.6; }
.social-name { font-size: 13px; font-weight: 600; color: var(--text-bright); }
.social-handle { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.social-desc { font-size: 11px; color: var(--text-faint); margin-top: 2px; }
.social-card.static { cursor: default; }
.social-card.static:hover { border-color: var(--border); transform: none; }

/* ════════════════════════════════════════════════════════════════
   CTA BAND / FOOTER
   ════════════════════════════════════════════════════════════════ */
.cta-band {
  text-align: center;
  padding: 96px 0 84px;
}
.cta-band h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--text-bright);
  text-wrap: balance;
}
.cta-center { justify-content: center; }

.foot { border-top: 1px solid var(--border); padding: 26px 36px; position: relative; z-index: 1; }
.foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.foot-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--text-dim); }
.foot-brand svg { width: 16px; height: 16px; }
.foot-nav { display: flex; gap: 18px; }
.foot-nav a { transition: color 0.2s ease; }
.foot-nav a:hover { color: var(--text); }

/* ════════════════════════════════════════════════════════════════
   WIP PAGE (404)
   ════════════════════════════════════════════════════════════════ */
.wip-page {
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 36px;
  position: relative;
  z-index: 1;
}
.wip-page h1 { font-family: var(--display); font-weight: 600; font-size: 52px; letter-spacing: -0.015em; margin: 0 0 14px; color: var(--text-bright); }
.wip-page p { color: var(--text-dim); font-size: 14px; line-height: 1.8; max-width: 460px; margin: 0 0 30px; }
.wip-mark { width: 64px; height: 64px; color: var(--text-faint); margin-bottom: 26px; }

/* ════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════════ */
.enter-1 { animation: enter 0.6s 0.05s cubic-bezier(0.16,1,0.3,1) both; }
.enter-2 { animation: enter 0.6s 0.12s cubic-bezier(0.16,1,0.3,1) both; }
.enter-3 { animation: enter 0.6s 0.20s cubic-bezier(0.16,1,0.3,1) both; }
.enter-4 { animation: enter 0.6s 0.28s cubic-bezier(0.16,1,0.3,1) both; }
.enter-5 { animation: enter 0.7s 0.30s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes enter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.10s; }
.reveal.delay-2 { transition-delay: 0.20s; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .brand-file { display: none; }
}

/* below the horizontal breakpoint: stack vertically, hide the timeline */
@media (max-width: 820px) {
  .timeline { display: none; }
  .transport-bar { display: none; }
  .hspacer { display: none; }
  .htrack { flex-direction: column; }
  .slide { height: auto; min-height: 0; padding: 40px clamp(20px, 5vw, 40px); }
  .slide + .slide { border-left: none; border-top: 1px solid var(--border); }
  .slide-hero { padding-top: 26px; }
  .monitor, .slide .panel { width: 100%; max-width: 680px; margin: 0 auto; }
  .monitor-body { min-height: auto; padding: 42px 26px 48px; }
  .bin-browser { grid-template-columns: 1fr; height: auto; }
  .bin-list { flex-direction: row; overflow-x: auto; gap: 6px; border-right: none; border-bottom: 1px solid var(--border); scrollbar-width: none; }
  .bin-list::-webkit-scrollbar { display: none; }
  .bin-folder { width: auto; flex: 0 0 auto; }
  .bin-folder.bin-sel { margin: 0; padding-bottom: 11px; border-bottom: none; border-radius: 8px; }
  /* let the bin flow in the normal page scroll instead of an internal scroll box */
  .bin-clips { display: block; }
  .bin-grid { flex: none; overflow: visible; max-height: none; min-height: 0; }
  .stats-band { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 16px; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .marquee { margin: 26px 0 0; }
  .cta-band { padding: 60px 0 52px; }
  .cta-band h3 { font-size: 34px; }
}
@media (max-width: 560px) {
  .topbar { padding: 14px 18px; }
  .topbar-right { gap: 12px; }
  .slide { padding: 34px 18px; }
  .monitor-body { padding: 34px 20px 40px; }
  .hero-kicker { font-size: 10px; letter-spacing: 0.16em; }
  .hero-mark { display: none; }
  .lede { font-size: 14px; }
  .panel-body { padding: 16px; }
  .about-body { padding: 20px 18px 22px; }
  .bin-grid { padding: 14px; gap: 12px; }
  .bin-grid .clip-card { flex: 1 1 calc(50% - 6px); }
  .m-zoom { display: none; }
  .social-grid { grid-template-columns: 1fr; }
  .foot-inner { justify-content: center; text-align: center; gap: 10px; }
}
