/* portfolio.css — stylesheet for the full interactive portfolio */

:root{
  --bg: #fbfbfd;
  --fg: #1d1d1f;
  --muted: #6e6e73;
  --faint: #86868b;
  --line: rgba(0,0,0,0.08);
  --line-2: rgba(0,0,0,0.12);
  --tile: #ffffff;
  --accent: #0071e3;
  --panel: #ffffff;
  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 6px 20px rgba(0,0,0,.04);
  --content-pad-x: max(44px, calc(50vw - 640px));
}
html.dark{
  --bg: #000;
  --fg: #f5f5f7;
  --muted: #a1a1a6;
  --faint: #86868b;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --tile: #141416;
  --accent: #4d9cff;
  --panel: #141416;
  --shadow-card: 0 1px 3px rgba(0,0,0,.4), 0 6px 20px rgba(0,0,0,.25);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body{
  background: var(--bg); color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
  min-height: 100vh;
}
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
img{ display: block; max-width: 100%; }

/* ── NAV */
.nav{
  position: sticky; top: 0; z-index: 50;
  height: 52px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border-bottom: 0.5px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--content-pad-x); font-size: 13px;
  transition: background .35s ease;
}
.nav .brand{ font-weight: 600; letter-spacing: -0.3px; font-size: 15px; }
.nav .brand span{ color: var(--accent); }
.nav ul{ list-style: none; margin: 0; padding: 0; display: flex; gap: 26px; font-size: 12px; }
.nav ul li{ opacity: .78; cursor: pointer; transition: opacity .15s, color .15s; position: relative; padding: 4px 2px; }
.nav ul li:hover{ opacity: 1; }
.nav ul li.active{ opacity: 1; color: var(--accent); }
.nav ul li.active::after{
  content:''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 1px;
}
.nav-right{ display: flex; gap: 10px; align-items: center; font-size: 11px; }
.nav-status{ display: inline-flex; align-items: center; gap: 6px; color: #30a46c; }
.nav-status .dot{ width: 7px; height: 7px; border-radius: 4px; background: #30d158; box-shadow: 0 0 0 3px rgba(48,209,88,.15); }
.nav-btn{
  background: var(--fg); color: var(--bg);
  border: none; padding: 6px 13px; border-radius: 999px; font-size: 12px; font-weight: 500;
  transition: transform .15s, opacity .15s;
}
.nav-btn:hover{ opacity: .9; transform: translateY(-1px); }
.nav-icon{
  width: 30px; height: 30px; border-radius: 15px; border: none;
  background: transparent; color: var(--fg); display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.nav-icon:hover{ background: var(--line-2); }

/* ── HERO */
.hero{ padding: 84px var(--content-pad-x) 44px; text-align: center; }
.hero .eyebrow{ font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 20px; letter-spacing: .2px; }
.hero h1{
  font-size: clamp(48px, 7vw, 86px); font-weight: 600;
  letter-spacing: -2.4px; line-height: 1.02;
  margin: 0 auto 20px; max-width: 1000px;
  background: linear-gradient(180deg, var(--fg), color-mix(in srgb, var(--fg) 65%, transparent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lede{
  font-size: 22px; color: var(--muted); max-width: 640px;
  margin: 0 auto 32px; line-height: 1.35; letter-spacing: -.2px;
}
.hero p.lede strong{ color: var(--fg); font-weight: 500; }
.hero-cta{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn{
  padding: 12px 22px; border-radius: 999px; font-size: 14px; font-weight: 500;
  border: 1px solid transparent; transition: transform .15s, opacity .15s, background .15s, border-color .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{ background: var(--accent); color: #fff; }
.btn.primary:hover{ opacity: .92; }
.btn.ghost{ background: transparent; color: var(--accent); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.btn.ghost:hover{ background: color-mix(in srgb, var(--accent) 8%, transparent); }

/* ── HERO STAGE — cycling featured */
.stage-wrap{ padding: 0 22px 64px; }
.stage{
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: 0 12px 40px -16px rgba(0,0,0,.12);
  isolation: isolate;
  background: #0a0a0c;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.stage-layer{
  grid-column: 1; grid-row: 1;
  min-width: 0;
  opacity: 0; transition: opacity .6s ease;
  display: flex; flex-direction: column; align-items: center;
  padding: 44px 20px 32px;
  gap: 10px;
}
.stage-layer.active{ opacity: 1; }
.stage-fade{
  position: absolute; left: 0; right: 0; bottom: 0; height: 220px;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  pointer-events: none;
}
.stage-glow{ position: absolute; inset: -40px; pointer-events: none; }
.stage-caption{ text-align: center; color: #f5f5f7; max-width: 720px; position: relative; z-index: 2; }
.stage-caption .kicker{ font-size: 12px; color: #86868b; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.stage-caption h2{ font-size: clamp(32px, 4vw, 46px); font-weight: 600; letter-spacing: -1.2px; margin: 0 0 8px; }
.stage-caption p{ font-size: 17px; color: #a1a1a6; max-width: 580px; margin: 0 auto; line-height: 1.4; }
.stage-phones{
  align-self: flex-start;
  position: relative; z-index: 1;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 14px; align-items: flex-end;
  width: max-content;
  margin-top: 0; margin-bottom: -6px;
}
.stage-phones .stage-phone{
  width: 200px; height: 400px;
}
.stage-phones .stage-phone:nth-child(2),
.stage-phones .stage-phone:nth-child(4){
  width: 220px; height: 440px;
}
.stage-phones .stage-phone:nth-child(3){
  width: 240px; height: 480px;
}
.stage-phone-inner{ width: 100%; height: 100%; overflow: visible; background: transparent; }
.stage-phone-inner img,
.stage-phone-inner video{ width: 100%; height: 100%; object-fit: cover; }
.stage-footer{
  margin-top: auto;
  width: 100%;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 12px;
  color: #f5f5f7; font-variant-numeric: tabular-nums;
  position: relative; z-index: 2;
}
.stage-metric.right{ text-align: right; }
.stage-metric .n{ font-size: clamp(32px, 4vw, 48px); font-weight: 600; letter-spacing: -1.2px; }
.stage-metric .l{ font-size: 12px; color: #a1a1a6; margin-top: 2px; }

.stage-dots{
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
}
.stage-dots button{
  width: 6px; height: 6px; border-radius: 3px; border: none; padding: 0;
  background: rgba(255,255,255,.35); transition: background .2s, width .2s;
}
.stage-dots button.active{ background: #fff; width: 22px; }
.stage-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 22px; border: none;
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px); color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: background .15s; z-index: 3;
}
.stage-nav:hover{ background: rgba(255,255,255,.18); }
.stage-nav.prev{ left: 22px; } .stage-nav.next{ right: 22px; }
.stage-link{
  position: absolute; top: 28px; right: 20px; z-index: 3;
  font-size: 12px; color: #f5f5f7; opacity: .8;
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
  padding: 8px 14px; border-radius: 999px; border: none; transition: background .15s;
}
.stage-link:hover{ background: rgba(255,255,255,.16); }

/* ── SECTION HEADERS */
section { scroll-margin-top: 70px; }
.section-header{
  position: sticky; top: 52px; z-index: 5;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px var(--content-pad-x); border-bottom: 0.5px solid var(--line);
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 0;
}
.section-header .kicker{ font-size: 11px; letter-spacing: 2px; color: var(--faint); text-transform: uppercase; font-weight: 600; }
.section-header .title{ font-size: 22px; font-weight: 600; letter-spacing: -.4px; }
.section-header .spacer{ flex: 1; }
.section-header .filters{ display: flex; gap: 6px; }

/* ── PROJECT ROW */
.proj-list{ padding: 0 var(--content-pad-x); }
.proj-row{
  display: grid; grid-template-columns: 180px 1fr; gap: 40px;
  padding: 48px 0; border-top: 0.5px solid var(--line-2);
}
.proj-row:first-child{ border-top: none; }
.proj-tenure{
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--faint);
  position: sticky; top: 130px; align-self: start;
}
.proj-head{ display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.proj-logo{
  width: 52px; height: 52px; border-radius: 14px; overflow: hidden;
  background: var(--tile); border: 0.5px solid var(--line);
}
.proj-logo img{ width: 100%; height: 100%; object-fit: cover; }
.proj-title{ font-size: 22px; font-weight: 600; letter-spacing: -.4px; color: var(--fg); }
.proj-title .arrow{ color: var(--accent); margin-left: 8px; font-size: 14px; font-weight: 400; }
.proj-sub{ font-size: 14px; color: var(--muted); margin-top: 2px; }
.proj-summary{ font-size: 17px; color: var(--fg); line-height: 1.45; margin: 8px 0 16px; max-width: 720px; opacity: .88; text-wrap: pretty; }
.proj-bullets{ margin: 0; padding: 0 0 0 18px; font-size: 14px; line-height: 1.55; color: var(--fg); }
.proj-bullets li{ margin-bottom: 6px; }
.proj-chips{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.chip{
  font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--accent);
  transition: background .15s;
}
.proj-images{
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0px 14px; margin-top: 22px;
}
.proj-images .cell{
  aspect-ratio: 9/19.5; border-radius: 12px; overflow: hidden;
  background: transparent;
  cursor: zoom-in; transition: transform .25s;
}
.proj-images .cell:hover{ transform: translateY(-4px) scale(1.015); }
.proj-images .cell img{ width: 100%; height: 100%; object-fit: cover; }
.proj-actions{ margin-top: 20px; display: flex; gap: 10px; }
.proj-actions .btn{ font-size: 13px; padding: 9px 18px; }

/* ── STATS */
.stats{
  padding: 40px 44px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--line-2); border-bottom: 0.5px solid var(--line-2);
  margin: 24px var(--content-pad-x);
}
.stats .cell{ text-align: center; padding: 24px 8px; border-left: 0.5px solid var(--line); }
.stats .cell:first-child{ border-left: none; }
.stats .n{ font-size: clamp(32px, 4vw, 46px); font-weight: 600; letter-spacing: -1.2px; }
.stats .l{ font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── ABOUT */
.about-grid{
  padding: 40px var(--content-pad-x) 0;
  display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px;
  align-items: start;
}
.about-text{ min-width: 0; }
.about-side{ position: sticky; top: 130px; }
.about-avatar{
  position: relative;
  width: 100%; aspect-ratio: 1;
  border-radius: 22px; overflow: hidden;
  background: var(--tile);
}
.about-avatar img{ width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; display: block; }
.about-nowplaying{
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(10px);
  color: rgba(255,255,255,.6); padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 500; letter-spacing: .1px;
}
.about-nowplaying .song{ color: #fff; }
.about-nowplaying .eq{
  display: inline-flex; align-items: flex-end; gap: 2px;
  width: 12px; height: 12px;
}
.about-nowplaying .eq i{
  width: 2px; background: #30d158; border-radius: 1px;
  animation: about-eq 1s infinite ease-in-out;
}
.about-nowplaying .eq i:nth-child(1){ animation-delay: 0s; }
.about-nowplaying .eq i:nth-child(2){ animation-delay: .2s; }
.about-nowplaying .eq i:nth-child(3){ animation-delay: .4s; }
@keyframes about-eq {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}
.about-photo-fade{
  position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
  pointer-events: none;
}
.about-photo-meta{
  position: absolute; bottom: 18px; left: 20px; right: 20px;
  color: #fff;
}
.about-photo-meta .name{ font-size: 18px; font-weight: 600; letter-spacing: -.2px; }
.about-photo-meta .loc{ font-size: 13px; color: rgba(255,255,255,.78); margin-top: 3px; }
.about-stats{
  margin-top: 16px;
  border: 0.5px solid var(--line-2);
  border-radius: 16px;
  padding: 4px 18px;
}
.about-stats .row{
  padding: 8px 0; border-bottom: 0.5px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.about-stats .row:last-child{ border-bottom: none; }
.about-stats .k{ font-size: 13px; color: var(--faint); }
.about-stats .v{ font-size: 13px; color: var(--fg); text-align: right; }

/* ── CTA */
.cta-wrap{ padding: 40px 22px 50px; }
.cta{
  border-radius: 22px; padding: 56px 40px; text-align: center; color: #fff;
  background: linear-gradient(180deg, #0a0a0c 0%, #1a1a1f 60%, #2a2230 100%);
  position: relative; overflow: hidden;
}
.cta::before{
  content:''; position: absolute; inset: -40px; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 30%, rgba(120,90,200,.35), transparent 70%),
              radial-gradient(40% 40% at 30% 80%, rgba(70,130,220,.25), transparent 70%);
}
.cta .k{ font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .75; margin-bottom: 12px; position: relative; }
.cta h3{ font-size: clamp(28px, 4vw, 42px); font-weight: 600; letter-spacing: -1px; line-height: 1.1; margin: 0 0 10px; position: relative; }
.cta p{ font-size: 17px; opacity: .88; max-width: 500px; margin: 0 auto 28px; position: relative; line-height: 1.45; }
.cta-actions{ display: inline-flex; gap: 10px; position: relative; }
.cta .btn.primary{ background: #fff; color: var(--accent); }
.cta .btn.ghost{ background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.35); }
.cta .btn.ghost:hover{ background: rgba(255,255,255,.25); }

/* ── FOOTER */
footer.foot{
  padding: 36px var(--content-pad-x); display: flex; justify-content: space-between; gap: 20px;
  color: var(--faint); font-size: 12px; flex-wrap: wrap;
  border-top: 0.5px solid var(--line);
}
footer.foot a{ color: var(--muted); margin-left: 16px; transition: color .15s; }
footer.foot a:hover{ color: var(--fg); }

/* ── MODAL */
.modal-backdrop{
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.88);
  display: flex; justify-content: center; padding: 5vh 2vw;
  opacity: 0; pointer-events: none; transition: opacity .25s;
  overflow: auto;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
.modal-backdrop.open{ opacity: 1; pointer-events: auto; }
.modal{
  background: var(--panel); color: var(--fg);
  border-radius: 22px; max-width: 1040px; width: 100%;
  box-shadow: 0 40px 120px rgba(0,0,0,.4);
  transform: translateY(20px); transition: transform .3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden; align-self: flex-start;
}
.modal-backdrop.open .modal{ transform: translateY(0); }
.modal-hero{
  padding: 44px 44px 32px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent);
  border-bottom: 0.5px solid var(--line);
}
.modal-hero .kicker{ font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.modal-hero h2{ font-size: 40px; font-weight: 600; letter-spacing: -1.2px; margin: 0 0 6px; line-height: 1.05; }
.modal-hero .sub{ font-size: 17px; color: var(--muted); }
.modal-close{
  position: fixed; z-index: 101;
  top: calc(5vh + 14px);
  right: calc(max(2vw, 50vw - 520px) + 14px);
  width: 44px; height: 44px; border-radius: 22px; border: none;
  background: rgba(0,0,0,.5); backdrop-filter: blur(10px); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover{ background: rgba(0,0,0,.7); }
.modal-body{ padding: 28px 44px 36px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.modal-body h3{ font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin: 0 0 12px; font-weight: 600; }
.modal-bullets{ margin: 0; padding: 0 0 0 18px; font-size: 14.5px; line-height: 1.55; }
.modal-bullets li{ margin-bottom: 10px; }
.modal-quote{
  margin: 22px 0 0; padding: 16px 18px;
  border-left: 3px solid var(--accent);
  font-style: italic; font-size: 16px; line-height: 1.5;
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  border-radius: 0 12px 12px 0;
}
.modal-meta{ font-size: 13px; line-height: 1.6; }
.modal-meta .row{ padding: 10px 0; border-bottom: 0.5px solid var(--line); display: flex; justify-content: space-between; gap: 12px; }
.modal-meta .row:last-child{ border-bottom: none; }
.modal-meta .k{ color: var(--faint); }
.modal-meta .v{ color: var(--fg); text-align: right; }
.modal-chips{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.modal-gallery{
  padding: 0 44px 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 8px 14px;
}
.modal-section-head{ padding: 0 44px 24px; }
.modal-section-head h3{ font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin: 0 0 12px; font-weight: 600; }
.modal-foot{ padding: 24px 44px 40px; }
.modal-gallery .cell{
  aspect-ratio: 9/19.5; border-radius: 10px; overflow: hidden;
  background: transparent; cursor: zoom-in; transition: transform .2s;
}
.modal-gallery .cell:hover{ transform: scale(1.02); }
.modal-gallery .cell img{ width: 100%; height: 100%; object-fit: cover; }

/* ── LIGHTBOX */
.lightbox{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.85); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.lightbox.open{ opacity: 1; pointer-events: auto; }
.lightbox img{ max-width: 90vw; max-height: 90vh; background: transparent; }
.lightbox-btn{
  position: absolute; border: none; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); color: #fff;
  width: 44px; height: 44px; border-radius: 22px; padding: 0;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.lightbox-btn:hover{ background: rgba(255,255,255,.18); }
.lightbox-btn.close{ top: 24px; right: 24px; }
.lightbox-btn.prev{ left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-btn.next{ right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-count{ position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; opacity: .7; font-size: 12px; font-variant-numeric: tabular-nums; }

/* ── TOAST */
.toast{
  position: fixed; bottom: 32px; left: 50%; transform: translate(-50%, 20px);
  background: var(--fg); color: var(--bg);
  padding: 10px 18px; border-radius: 999px; font-size: 13px;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 300;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.toast.show{ opacity: 1; transform: translate(-50%, 0); }

/* ── REVEAL */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ── responsive */
@media (max-width: 820px){
  .proj-row{ grid-template-columns: 1fr; gap: 14px; }
  .proj-tenure{ position: static; }
  .proj-images{ grid-template-columns: repeat(3, 1fr); }
  .stats{ grid-template-columns: repeat(2, 1fr); margin: 24px 22px; }
  .stats .cell:nth-child(3){ border-left: none; border-top: 0.5px solid var(--line); }
  .modal-body{ grid-template-columns: 1fr; padding: 28px 24px; }
  .modal-hero, .modal-gallery, .modal-section-head, .modal-foot{ padding-left: 24px; padding-right: 24px; }
  .nav ul{ display: none; }
  .nav, .hero, .stage-wrap, .proj-list, .cta-wrap, .section-header, footer.foot { padding-left: 22px; padding-right: 22px; }
  .section-header{ flex-wrap: wrap; }
  .about-grid{ grid-template-columns: 1fr; gap: 32px; padding: 32px 22px 0; }
  .about-side{ position: static; max-width: 360px; margin: 0 auto; width: 100%; }
}

/* Stage responsive: keep images fixed, tighten gap + footer spacing */
@media (max-width: 1200px){
  .stage-phones{ gap: 10px; }
}
@media (max-width: 680px){
  .stage-phones{ gap: 6px; }
  .stage-layer{ padding: 40px 16px 32px; }
  .stage-footer{ padding: 0 8px; gap: 12px; }
  .stage-metric .n{ font-size: 24px; letter-spacing: -.6px; }
  .stage-metric .l{ font-size: 10px; }
  .stage-link .label{ display: none; }
  .stage-link{ padding: 8px 12px; }
}
