/* ── About page styles ── */
/* Loaded only by about.html */

/* ── wave-in letter animation (shared mechanic with case-study .header-title) ── */
.wv-title .wv-word {
  display: inline-block;
}
.wv-title .wv-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  will-change: transform, opacity;
}
.wv-title.wv-in .wv-letter {
  animation: wv-wave 0.55s cubic-bezier(.2,.8,.3,1) forwards;
}
@keyframes wv-wave {
  0%   { opacity: 0; transform: translateY(0.35em); }
  60%  { opacity: 1; transform: translateY(-0.06em); }
  100% { opacity: 1; transform: translateY(0); }
}
.bc-bio .bc-bio-explainer {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.bc-bio.bf-in .bc-bio-explainer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.bc-bio .feels-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.bc-bio.bf-in .feels-item {
  opacity: 1;
  transform: translateY(0);
}
.bc-bio.bf-in .feels-item:nth-child(1) { transition-delay: 0.95s; }
.bc-bio.bf-in .feels-item:nth-child(2) { transition-delay: 1.1s; }
.bc-bio.bf-in .feels-item:nth-child(3) { transition-delay: 1.25s; }
.bc-bio.bf-in .feels-item:nth-child(4) { transition-delay: 1.4s; }

/* ── NAV (match home page: fixed, dark) ── */
body.page-about .nav {
  position: fixed !important;
  background: #111 !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
}
body.page-about { padding-top: 65px; }
body.page-about .nav-back { display: none; }
.nav-r-cs {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}
body.page-about .cs-theme-toggle {
  background: none;
  border: 0.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.5);
  height: 32px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  padding: 0 12px;
}
body.page-about .cs-theme-toggle svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
  display: block;
}
body.page-about .cs-theme-toggle:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
body.page-about .cs-theme-toggle:hover svg { transform: rotate(20deg) scale(1.15); }

/* ── NAV (theme-light toggle, matching home page) ── */
body.page-about.theme-light .nav { background: var(--bg) !important; border-color: transparent !important; }
body.page-about.theme-light .nav-logo { color: rgba(30,28,24,0.88) !important; }
body.page-about.theme-light .nav-clock,
body.page-about.theme-light .nav-clock-time { color: rgba(30,28,24,0.35) !important; }
body.page-about.theme-light .nl { color: var(--muted) !important; }
body.page-about.theme-light .nl:hover,
body.page-about.theme-light .nl.on { color: var(--ink) !important; }
body.page-about.theme-light .nc {
  color: var(--ink) !important;
  border-color: var(--bord2) !important;
}
body.page-about.theme-light .nc:hover { background: var(--bg2) !important; color: var(--ink) !important; }
body.page-about.theme-light .cs-theme-toggle {
  border-color: rgba(30,28,24,0.22);
  color: rgba(30,28,24,0.5);
}
body.page-about.theme-light .cs-theme-toggle:hover {
  color: rgba(30,28,24,0.9);
  border-color: rgba(30,28,24,0.5);
}

@keyframes spin-in {
  from { transform: rotate(-90deg) scale(0.6); opacity: 0; }
  to   { transform: rotate(0deg)  scale(1);   opacity: 1; }
}
body.page-about .cs-theme-toggle.spin svg { animation: spin-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* ── Page ── */
body.page-about {
  --bg: #0c0906;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.3'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--mono);
  min-height: 100vh;
  cursor: none;
}
body.page-about:not(.theme-light) {
  --ink: rgba(255,255,255,0.92);
  --ink2: rgba(255,255,255,0.72);
  --muted: rgba(255,255,255,0.4);
  --border: rgba(255,255,255,0.1);
  --bord2: rgba(255,255,255,0.2);
  --bg2: rgba(255,255,255,0.08);
  --bg3: rgba(255,255,255,0.14);
}
body.page-about.theme-light {
  --bg: #fefefe;
}

/* ── HERO ── */
.ab-hero {
  background: var(--bg);
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ab-hero-text {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.ab-hero-text .ab-hero-cta { pointer-events: auto; }
.ab-tag {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ab-tag::before { content:''; width:18px; height:1px; background:var(--muted); opacity: 0.5; }
.ab-tag-flower {
  font-size: 22px;
  line-height: 1;
}
.ab-tag-flower::before { content: none; }
.ab-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.ab-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 28px;
}
.ab-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink2);
  border: 0.5px solid var(--bord2);
  padding: 9px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.ab-hero-cta:hover { border-color: var(--rose); color: var(--rose); }

/* ── SCATTERED PHOTOS ── */
.ab-scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.ab-photo {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 4px 24px rgba(30,28,24,0.1);
  border: 0.5px solid var(--border);
  --tx: 0px;
  --ty: 0px;
  transform: translate(var(--tx), var(--ty));
}
.ab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Top-left */
.ab-p1 { width: 72px;  height: 90px;  top:  6%;  left:  4%; }
.ab-p2 { width: 108px; height: 135px; top:  2%;  left:  22%; }
/* Top-right */
.ab-p3 { width: 60px;  height: 75px;  top:  4%;  right: 5%; }
.ab-p4 { width: 94px;  height: 118px; top:  7%;  right: 22%; }
/* Mid edges */
.ab-p5 { width: 83px;  height: 104px; top:  40%; left:  1%; }
.ab-p6 { width: 55px;  height: 69px;  top:  38%; right: 1%; }
/* Bottom */
.ab-p7 { width: 102px; height: 128px; bottom: 5%; left:  6%; }
.ab-p8 { width: 66px;  height: 83px;  bottom: 3%; left:  27%; }
.ab-p9 { width: 88px;  height: 110px; bottom: 5%; right: 5%; }

/* ── PREVIOUSLY @ ── */
.ab-prev {
  padding: 28px 64px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ab-prev-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.ab-prev-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ab-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg);
  border: 1px solid var(--bord2);
  border-radius: 20px;
  padding: 6px 14px 6px 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink2);
  text-decoration: none;
  transition: all 0.18s;
  cursor: none;
}
.ab-chip:hover { border-color: var(--rose); color: var(--ink); }
.ab-chip-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  color: var(--muted);
  flex-shrink: 0;
}
.ab-chip-logo img { width:100%; height:100%; object-fit:contain; padding:3px; filter: brightness(0) opacity(0.55); }
body.page-about:not(.theme-light) .ab-chip-logo img { filter: brightness(0) invert(1) opacity(0.55); }

/* ── BIO ── */
.bc-bio-img {
  width: 100%;
  aspect-ratio: 16/2.4;
  border-radius: 14px;
  overflow: visible;
  margin-top: 40px;
  margin-bottom: 0;
  position: relative;
}
.bc-bio-img::before { content: none; }
.bc-bio-img .ph {
  aspect-ratio: 16/2.4;
  margin: 0;
  border-radius: 14px;
  background: none !important;
  position: relative;
  z-index: 0;
}
.bc-bio-img .ph .ph-label { color: var(--muted) !important; }
.bc-bio-pill-wrap {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-55px);
  z-index: 3;
  width: 110px;
  height: 55px;
  display: flex;
  align-items: center;
  border-radius: 40px;
  padding: 0;
  transition: width 0.45s cubic-bezier(.22,.68,0,1), transform 0.45s cubic-bezier(.22,.68,0,1), padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.bc-bio-pill-wrap.expanded {
  width: 380px;
  transform: translateX(-190px);
  padding: 7px 20px 7px 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}
.bc-bio-pill {
  position: relative;
  flex-shrink: 0;
  width: 110px;
  height: 55px;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  background-size: 140% auto;
  background-position: 88% 70%;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: width 0.45s cubic-bezier(.22,.68,0,1), height 0.45s cubic-bezier(.22,.68,0,1), box-shadow 0.3s ease;
}
.bc-bio-pill-wrap.expanded .bc-bio-pill {
  width: 52px;
  height: 52px;
  box-shadow: none;
}
.who-expand {
  flex: 1;
  min-width: 0;
  padding-left: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 0.1s;
}
.bc-bio-pill-wrap.expanded .who-expand {
  opacity: 1;
  pointer-events: auto;
}
.who-expand-text {
  margin: 0;
  font-family: var(--serif);
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--ink2);
}
.who-expand-close {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--bord2);
  background: var(--bg);
  color: var(--ink2);
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}
.who-popup {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-bottom: 12px;
  transform: translateX(-50%) translateY(6px);
  background: rgba(250,248,244,0.96);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 4;
}
.who-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(250,248,244,0.96);
}
.who-popup.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.bc-bio-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  position: absolute;
  inset: 0;
  margin-top: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.bio-fan {
  position: relative;
  width: 100%;
  max-width: 868px;
  height: 210px;
  margin: 56px auto 24px;
  padding: 24px 0;
}
.bio-fan::before {
  content: '';
  position: absolute;
  inset: -40px -80px;
  background:
    radial-gradient(closest-side, #e0295a 0%, transparent 72%),
    radial-gradient(closest-side, #3c56d6 0%, transparent 72%);
  background-position: 28% 50%, 72% 50%;
  background-repeat: no-repeat;
  background-size: 60% 90%, 60% 90%;
  opacity: 0.65;
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
  animation: bio-fan-glow 14s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.bio-fan:has(.bio-fan-item:hover)::before { opacity: 0.3; }
.bio-fan-backdrop {
  content: '';
  position: absolute;
  inset: -60px -110px;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(closest-side, var(--bg) 0%, var(--bg) 50%, transparent 100%),
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  background-repeat: no-repeat, repeat, repeat;
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
}
.theme-light .bio-fan-backdrop {
  background-image:
    radial-gradient(closest-side, var(--bg) 0%, var(--bg) 50%, transparent 100%),
    linear-gradient(rgba(20,18,14,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,18,14,0.06) 1px, transparent 1px);
}
@keyframes bio-fan-glow {
  0%   { background-position: 28% 50%, 72% 50%; background-size: 60% 90%, 60% 90%; }
  25%  { background-position: 34% 40%, 64% 62%; background-size: 68% 100%, 52% 78%; }
  50%  { background-position: 22% 58%, 78% 42%; background-size: 52% 78%, 68% 100%; }
  75%  { background-position: 32% 46%, 68% 56%; background-size: 64% 96%, 58% 86%; }
  100% { background-position: 28% 50%, 72% 50%; background-size: 60% 90%, 60% 90%; }
}
.bio-fan-item { z-index: 1; }
.bio-fan-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 140px;
  margin-left: -70px;
  border-radius: 10px;
  overflow: hidden;
  transform-origin: center center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform 0.6s cubic-bezier(.32,1.7,.4,1), box-shadow 0.3s ease, opacity 0.5s ease;
  cursor: none;
  will-change: transform;
  opacity: 0;
}
.bio-fan.center-in .bio-fan-item:nth-child(3) { opacity: 1; transform: rotate(0deg) scale(1); }
.bio-fan.is-fanned .bio-fan-item { opacity: 1; }
.bio-fan-item .ph { width: 100%; height: 100%; margin: 0; border-radius: 10px; background: var(--ink) !important; }
.bio-fan-item .ph-inner, .bio-fan-item .ph-label { display: none; }
.bio-fan-img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 30%; transform: scale(1.35); border-radius: 10px; display: block; }
.bio-fan-item:nth-child(1) .bio-fan-img { object-position: 50% 100%; }
.bio-fan-item:nth-child(4) .bio-fan-img { object-position: 50% 30%; transform: scale(1.05); filter: brightness(0.85); }
.bio-fan-item:nth-child(3) .bio-fan-img { object-position: 65% 40%; transform: scale(1); filter: saturate(1.35) brightness(1.15); }
.bio-fan-item:nth-child(1) { transform: rotate(-10deg); z-index: 1; }
.bio-fan-item:nth-child(2) { transform: rotate(-5deg); z-index: 2; }
.bio-fan-item:nth-child(3) { transform: rotate(-14deg) scale(0.5); z-index: 3; }
.bio-fan-item:nth-child(4) { transform: rotate(5deg);  z-index: 2; }
.bio-fan-item:nth-child(5) { transform: rotate(10deg);  z-index: 1; }
.bio-fan.is-fanned .bio-fan-item:nth-child(1) { transform: rotate(-8deg) translateX(-256px) scale(1); box-shadow: 0 16px 36px rgba(0,0,0,0.28); }
.bio-fan.is-fanned .bio-fan-item:nth-child(2) { transform: rotate(-4deg) translateX(-128px)  scale(1); box-shadow: 0 16px 36px rgba(0,0,0,0.28); }
.bio-fan.is-fanned .bio-fan-item:nth-child(3) { transform: rotate(0deg)  translateX(0)       scale(1); box-shadow: 0 16px 36px rgba(0,0,0,0.28); }
.bio-fan.is-fanned .bio-fan-item:nth-child(4) { transform: rotate(4deg)  translateX(128px)   scale(1); box-shadow: 0 16px 36px rgba(0,0,0,0.28); }
.bio-fan.is-fanned .bio-fan-item:nth-child(5) { transform: rotate(8deg)  translateX(256px)  scale(1); box-shadow: 0 16px 36px rgba(0,0,0,0.28); }
.bio-fan-item:hover { z-index: 6 !important; }
.bio-fan.is-fanned .bio-fan-item:nth-child(1):hover { transform: rotate(-8deg) translateX(-256px) scale(1.3); }
.bio-fan.is-fanned .bio-fan-item:nth-child(2):hover { transform: rotate(-4deg) translateX(-128px)  scale(1.3); }
.bio-fan.is-fanned .bio-fan-item:nth-child(3):hover { transform: rotate(0deg)  translateX(0)       scale(1.3); }
.bio-fan.is-fanned .bio-fan-item:nth-child(4):hover { transform: rotate(4deg)  translateX(128px)   scale(1.3); }
.bio-fan.is-fanned .bio-fan-item:nth-child(5):hover { transform: rotate(8deg)  translateX(256px)  scale(1.3); }
.bio-fan-item { cursor: none; }
.fan-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 40px;
}
.fan-lightbox.open { opacity: 1; pointer-events: auto; }
.fan-lightbox-inner {
  max-width: min(720px, 90vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: scale(0.94);
  transition: transform 0.25s ease;
}
.fan-lightbox.open .fan-lightbox-inner { transform: scale(1); }
.fan-lightbox-img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.fan-lightbox-caption {
  font-family: var(--serif);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.6;
  color: #f2f2f2;
  text-align: center;
  max-width: 60ch;
  margin: 0;
}
.fan-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--mono);
  font-size: 28px;
  line-height: 1;
  color: #f2f2f2;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.fan-lightbox-close:hover { opacity: 1; }
#bio-fan-desc { position: relative; width: 100%; height: 6.2em; overflow: hidden; }
#bio-fan-desc-text { position: absolute; inset: 0; }
@media (max-width: 560px) {
  .bio-fan { height: 100px; }
  .bio-fan-item { width: 76px; height: 76px; margin-left: -38px; }
  .bio-fan.is-fanned .bio-fan-item:nth-child(1) { transform: rotate(-8deg) translateX(-62px); }
  .bio-fan.is-fanned .bio-fan-item:nth-child(2) { transform: rotate(-4deg) translateX(-31px); }
  .bio-fan.is-fanned .bio-fan-item:nth-child(3) { transform: rotate(0deg)  translateX(0); }
  .bio-fan.is-fanned .bio-fan-item:nth-child(4) { transform: rotate(4deg)  translateX(31px); }
  .bio-fan.is-fanned .bio-fan-item:nth-child(5) { transform: rotate(8deg)  translateX(62px); }
}
.ab-bio-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(13.5px, 1.3vw, 16px);
  line-height: 1.58;
  color: var(--ink2);
  max-width: 630px;
  margin: 0 auto 14px;
}
.ab-bio-quote:last-of-type { margin-bottom: 44px; }
.bc-bio-sub {
  font-family: var(--serif);
  font-style: normal;
  font-size: 15px;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 560px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
.bio-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--serif);
  font-size: 0.9em;
  letter-spacing: -0.015em;
  color: var(--ink2);
  border: 1px solid var(--bord2);
  padding: 2px 10px;
  border-radius: 14px;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
}
.ab-sig {
  width: 160px;
  height: 44px;
  background: var(--bg2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}

/* Sidebar */
.ab-bio-lily-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.sb-block { margin-bottom: 28px; }
.sb-label {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sb-label::before { content:''; width:12px; height:1px; background:var(--muted); opacity:0.4; }
.sb-item {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink2);
  line-height: 2;
}
.sb-link {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink2);
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.sb-link:hover { color: var(--rose); }

/* ── PHOTOS ── */
.ab-photo-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.ab-photo-img .ph {
  aspect-ratio: 4/5;
  margin: 0;
  border-radius: 14px;
  background: var(--bg2) !important;
}
.ab-photo-img .ph .ph-label { color: var(--muted) !important; }
.ab-photo-cap {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* ── PHOTO QUAD (2x2 grid of separate boxes) ── */
.photo-quad-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.pq-card {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: help;
}
.pq-card .ph {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 0;
  background: var(--bg2) !important;
}
.pq-card .ph .ph-label { color: var(--muted) !important; font-size: 9px !important; }
.pq-card-empty .ph { opacity: 0.5; }

/* ── SECTION TITLE ── */
.ab-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 350;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 36px;
}

/* ── READS + LISTENS ── */
/* Books — scattered */
.reads-scatter {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 0;
}
.read-book { flex-shrink: 0; width: 70px; }
.read-book:nth-child(1) { transform: rotate(-7deg) translateY(-6px); }
.read-book:nth-child(2) { transform: rotate(4deg) translateY(10px); }
.read-book:nth-child(3) { transform: rotate(-3deg) translateY(-14px); }
.read-book .ph {
  aspect-ratio: 2/3;
  border-radius: 4px;
  margin: 0;
  background: var(--bg2) !important;
  border: 1px solid var(--border) !important;
}
.read-book .ph .ph-label { color: var(--muted) !important; font-size: 8px !important; }
.read-book .ph .ph-desc  { color: var(--muted) !important; opacity: 0.6; font-size: 8px !important; }

/* Music cards */
.listens-grid { display: flex; flex-direction: column; gap: 6px; }
.listen-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 8px;
  align-items: center;
  transition: border-color 0.15s;
}
.listen-card:hover { border-color: var(--bord2); }
.listen-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 2px;
}
.listen-artist {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 6px;
}
.listen-bar {
  height: 1.5px;
  background: var(--bg3);
  border-radius: 2px;
  width: 65%;
}
.listen-art {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg3);
}
.listen-art .ph {
  aspect-ratio: 1/1; margin: 0; border-radius: 8px;
  background: var(--bg3) !important;
}
.listen-art .ph .ph-label { color: var(--muted) !important; font-size: 7px !important; }

/* ── EXPERIENCE (compact) ── */
.exp-edu-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.exp-edu-text { display: flex; flex-direction: column; flex: 1; }
.exp-edu-school { font-family: var(--serif); font-size: clamp(12px, 1.1vw, 14px); font-style: normal; color: var(--ink2); }
.exp-edu-degree { font-family: var(--serif); font-size: clamp(12px, 1.1vw, 14px); font-style: normal; font-weight: 400; color: var(--ink); }
.exp-edu-year { position: relative; font-family: var(--serif); font-size: clamp(12px, 1.1vw, 14px); font-style: normal; color: var(--ink2); flex-shrink: 0; }
.exp-edu-year-num { position: relative; z-index: 2; background: var(--bg); user-select: none; }
body.page-about.theme-light .exp-edu-year-num { background: rgba(255,255,255,0.55); }
.exp-edu-cap {
  position: absolute;
  left: 50%;
  bottom: 1px;
  z-index: 1;
  transform: translate(-50%, 0);
  font-size: 32px;
  pointer-events: none;
  opacity: 0;
}
.exp-edu-cap-spin { display: inline-block; }
.bc-exp:hover .exp-edu-cap {
  animation: exp-edu-cap-toss 1s linear;
}
.bc-exp:hover .exp-edu-cap-spin {
  animation: exp-edu-cap-spin 1s linear;
}
@keyframes exp-edu-cap-toss {
  0%   { transform: translate(-50%, 0); opacity: 0; }
  4%   { opacity: 1; }
  15%  { transform: translate(-50%, -30px); }
  28%  { transform: translate(-50%, -48px); }
  40%  { transform: translate(-50%, -58px); }
  50%  { transform: translate(-50%, -62px); }
  60%  { transform: translate(-50%, -58px); }
  72%  { transform: translate(-50%, -48px); }
  85%  { transform: translate(-50%, -30px); }
  96%  { opacity: 1; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}
@keyframes exp-edu-cap-spin {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(80deg); }
  28%  { transform: rotate(150deg); }
  40%  { transform: rotate(195deg); }
  50%  { transform: rotate(215deg); }
  60%  { transform: rotate(235deg); }
  72%  { transform: rotate(280deg); }
  85%  { transform: rotate(350deg); }
  100% { transform: rotate(360deg); }
}
.exp-edu-token {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f4c430;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--a)) translateX(0) scale(0.5);
}
.bc-exp:hover .exp-edu-token {
  animation: exp-edu-token-burst 1s linear;
}
@keyframes exp-edu-token-burst {
  0%, 36%  { opacity: 0; transform: translate(-50%, -50%) rotate(var(--a)) translateX(0) scale(0.4); }
  46%      { opacity: 1; transform: translate(-50%, -50%) rotate(var(--a)) translateX(5px) scale(1); }
  78%      { opacity: 0.8; transform: translate(-50%, -50%) rotate(var(--a)) translateX(22px) scale(0.7); }
  100%     { opacity: 0; transform: translate(-50%, -50%) rotate(var(--a)) translateX(30px) scale(0.3); }
}

.exp-table { width: 100%; border-collapse: collapse; }
.exp-table tr { border-bottom: 1px solid var(--border); }
.exp-table tr:hover td { background: rgba(30,28,24,0.035); }
.exp-row-link { cursor: pointer; }
.exp-table td { padding: 6px 6px; vertical-align: middle; }
.exp-table td:first-child { padding-left: 0; width: 26px; }
.exp-table td:last-child  { padding-right: 0; text-align: right; }

.exp-logo {
  width: 40px; height: 40px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 5.5px; color: var(--muted);
  overflow: hidden; flex-shrink: 0;
}
.exp-logo img { width:100%; height:100%; object-fit:contain; }
.exp-company { font-family: var(--serif); font-size: clamp(12px, 1.1vw, 14px); font-style: normal; color: var(--ink2); white-space: nowrap; }
.exp-disc { font-family: var(--serif); font-size: clamp(12px, 1.1vw, 14px); font-style: normal; color: var(--muted); white-space: nowrap; }
.exp-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  font-family: var(--mono); font-size: 13px;
  color: var(--rose);
  text-decoration: none; opacity: 0.55; transition: opacity 0.2s, color 0.2s;
}
.exp-link:hover { opacity: 0.85; color: var(--muted); }
.exp-link-dead { opacity: 0.2; pointer-events: none; }

/* ── RECOGNITION ── */
.listens-embeds { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 10px; min-width: 0; }
.listen-embed-slot {
  border-radius: 12px;
  overflow: hidden;
  background: #ececec;
  min-height: 152px;
  width: 100%;
}
body.theme-dark .listen-embed-slot { background: rgba(255,255,255,0.08); }
.listen-embed-slot iframe { display: block; border-radius: 12px; width: 100%; max-width: 100%; }
.listen-comment {
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink2);
  padding: 8px 4px 2px;
}
.reads-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.read-col { display: flex; flex-direction: column; }
.read-cover { width: 80%; margin: 0 auto; }
.read-cover .ph { aspect-ratio: 2/3; margin: 0 0 10px; border: 1px solid var(--border) !important; }
.read-cover .ph .ph-label { font-size: 8px !important; }
.read-cover-img {
  width: 80%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin: 0 auto 10px;
  display: block;
}
.read-cover-img--zoom-out { transform: scale(0.85); }
.read-title {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 2px;
}
.read-author {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
}
.read-review {
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink2);
}
@media (max-width: 560px) {
  .reads-cols { grid-template-columns: 1fr; gap: 24px; }
}
.recog-list { list-style: none; padding: 0; margin: 0; }
.recog-list li {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--ink2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.recog-list li:has(.recog-row-link) { padding: 0; }
.recog-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  margin: 0 -6px;
  padding-left: 6px;
  padding-right: 6px;
  color: inherit;
  text-decoration: none;
}
.recog-row-link:hover { background: rgba(30,28,24,0.035); }
.recog-link {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  transition: color 0.15s;
}

.ab-cta-side {}
.ab-cta-label {
  font-family: var(--mono);
  font-size: 7.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
  display: flex; align-items: center; gap: 7px;
}
.ab-cta-label::before { content:''; width:12px; height:1px; background:var(--muted); opacity:0.4; }
.ab-cta-pills { display: flex; flex-direction: column; gap: 10px; }
.cta-pill {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--ink2); border: 1px solid var(--bord2);
  padding: 12px 24px; border-radius: 28px;
  text-decoration: none; transition: all 0.2s; cursor: none;
}
.cta-pill:hover { border-color: var(--rose); color: var(--rose); }

/* ── HERO ── */
.ab-hero {
  margin: 8px 32px 20px;
  padding: 56px 28px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 85%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 85%);
}
.theme-light .ab-hero::before {
  background-image:
    linear-gradient(rgba(20,18,14,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,18,14,0.08) 1px, transparent 1px);
}
body.page-about.theme-light .ab-hero {
  background: rgba(255,255,255,0.55);
}
.ab-hero-grid { position: relative; z-index: 1; }
.ab-hero-float {
  position: absolute;
  z-index: 2;
  width: clamp(52px, 5vw, 82px);
  height: auto;
  padding: 0;
  border: none;
  background: none;
  cursor: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.22));
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), filter 0.4s ease, z-index 0s;
}
.ab-hero-float:hover {
  z-index: 20;
  filter: drop-shadow(0 22px 38px rgba(0,0,0,0.36));
}
.fl-token-img { display: block; width: 100%; height: auto; pointer-events: none; }
.fl-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 13px;
  color: #fff;
  pointer-events: none;
}
.fl-tint-1 .fl-token-img { filter: url(#token-tint-1); }
.fl-tint-2 .fl-token-img { filter: url(#token-tint-2); }
.fl-tint-3 .fl-token-img { filter: url(#token-tint-3); }
.fl-tint-4 .fl-token-img { filter: url(#token-tint-4); }
.fl-tint-5 .fl-token-img { filter: url(#token-tint-5); }
.fl-title {
  position: absolute;
  left: 0;
  right: 0;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  bottom: 100%;
  margin-bottom: -18px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(20,18,14,0.92);
  background: rgba(250,248,244,0.96);
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.fl-1 {
  left: 8%;
  top: 16%;
  transform: rotate(-6deg);
  width: 132px;
  height: 132px;
  background-size: 130%;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: url(#scallop-clip);
}
.fl-2 { left: 11%; top: 60%; transform: rotate(4deg); }
.fl-3 { right: 7%; top: 12%; transform: rotate(5deg); }
.fl-4 {
  right: 13%;
  top: 54%;
  transform: rotate(-4deg);
  width: 132px;
  height: 132px;
  background-size: 130%;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: url(#scallop-clip);
}
.fl-5 { right: 2%; top: 76%; transform: rotate(3deg); }
.fl-1:hover { transform: rotate(-6deg) scale(2.6); }
.fl-2:hover { transform: rotate(4deg)  scale(2.8); }
.fl-3:hover { transform: rotate(5deg)  scale(2.6); }
.fl-4:hover { transform: rotate(-4deg) scale(3); }
.fl-5:hover { transform: rotate(3deg)  scale(2.4); }
.fl-1 .fl-title { transform: rotate(6deg)  translateY(4px); }
.fl-2 .fl-title { transform: rotate(-4deg) translateY(4px); }
.fl-3 .fl-title { transform: rotate(-5deg) translateY(4px); }
.fl-4 .fl-title { transform: rotate(4deg)  translateY(4px); }
.fl-5 .fl-title { transform: rotate(-3deg) translateY(4px); }
.fl-1:hover .fl-title { transform: rotate(6deg)  translateY(0) scale(0.5); }
.fl-2:hover .fl-title { transform: rotate(-4deg) translateY(0) scale(0.5); }
.fl-3:hover .fl-title { transform: rotate(-5deg) translateY(0) scale(0.5); }
.fl-4:hover .fl-title { transform: rotate(4deg)  translateY(0) scale(0.5); }
.fl-5:hover .fl-title { transform: rotate(-3deg) translateY(0) scale(0.5); }
.ab-hero-float:hover .fl-title { opacity: 1; visibility: visible; }
@media (max-width: 900px) {
  .ab-hero-float { display: none; }
}
.ab-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  text-align: center;
  width: 100%;
  max-width: 880px;
  position: relative;
}
@media (max-width: 900px) {
  .ab-hero { margin: 8px 16px 16px; padding: 44px 20px; min-height: 200px; }
}
@media (max-width: 560px) {
  .ab-hero { margin: 8px 12px 12px; padding: 32px 16px; min-height: 150px; }
}

/* ── BENTO GRID ── */
.ab-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(170px, auto);
  grid-auto-flow: dense;
  gap: 20px;
  padding: 8px 64px 96px;
  scroll-margin-top: 110px;
}
.bento-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
}
body.page-about.theme-light .bento-card {
  background: rgba(255,255,255,0.55);
}
.ab-highlight { animation: ab-highlight-flash 1.2s ease; }
@keyframes ab-highlight-flash {
  0%, 100% { background-color: var(--bg); }
  25% { background-color: rgba(196,104,122,0.16); }
}
.bc-span-2 { grid-column: span 2; }
.bc-span-3 { grid-column: span 3; }
.bc-span-4 { grid-column: span 4; }
.bc-row-2  { grid-row: span 2; }
.bc-bio   { display: flex; flex-direction: column; justify-content: flex-start; position: relative; }
.bc-reads   { grid-column: 1 / span 2; grid-row: 2; display: flex; flex-direction: column; min-width: 0; }
.bc-listens { grid-column: 3 / span 2; grid-row: 2; display: flex; flex-direction: column; min-width: 0; }
.bc-listens .ab-title, .bc-reads .ab-title { font-size: 20px; margin-bottom: 36px; }
.bc-bio-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; margin-bottom: 0; justify-content: center; align-self: center; align-items: center; }
.bc-bio-action-btn {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex: 0 0 auto;
  height: auto;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  background: var(--bg);
  border: 1px solid var(--bord2);
  padding: 12px 20px;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: none;
}
.bc-bio-action-btn:hover { border-color: var(--rose); color: var(--rose); }
.bc-side  { display: flex; flex-direction: column; }
.bc-photo { display: flex; flex-direction: column; }
.bc-photo .ab-photo-img { flex: 1; }
.bc-exp   { grid-column: 3 / span 1; grid-row: 1; padding-bottom: 64px; position: relative; }
.bc-info  { grid-column: 1 / span 4; grid-row: 3; }
.bc-info .ab-title { font-size: 20px; margin-bottom: 10px; }
.bc-info-list { display: flex; flex-direction: column; gap: 4px; }
.bc-info-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink2);
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.bc-info-link:hover { color: var(--rose); }
.bc-exp-resume-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  background: var(--bg);
  border: 1px solid var(--bord2);
  padding: 9px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: none;
}
.bc-exp-resume-btn:hover { border-color: var(--rose); color: var(--rose); }
.bc-recog { grid-column: 4 / span 1; grid-row: 1; }
.bc-exp .ab-title, .bc-recog .ab-title { font-size: 20px; margin-bottom: 10px; }
.bc-bio .ab-title { font-size: 36px; font-weight: 350; margin-top: 14px; margin-bottom: 26px; }

/* ── BIG DESIGN FEELINGS ── */
.bc-bio { display: flex; flex-direction: column; min-height: 620px; padding-left: 34px; padding-right: 34px; }
.bc-bio-explainer {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(13.5px, 1.3vw, 16px);
  line-height: 1.6;
  color: var(--ink2);
  margin: 0 0 24px;
}
.feels-stack { display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 0; }
.feels-item {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex: 0 1 auto;
  border-radius: 14px;
  transition: flex-grow 0.4s ease;
  cursor: pointer;
}
.feels-item.open { z-index: 1; }
.feels-item.open { align-items: flex-start; }
.feels-token {
  position: relative;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 10px 14px;
}
.feels-item.open .feels-token { align-self: flex-start; }
.feels-token .fl-token-img { height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.feels-token-num {
  position: absolute;
  top: 50%;
  left: calc(50% + 7px);
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 13px;
  color: #fff;
  pointer-events: none;
}
.feels-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feels-item.open .feels-body { justify-content: flex-start; }
.feels-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  transform-origin: top center;
}
.feels-item > * { position: relative; z-index: 1; }
.feels-stack.has-open .feels-item:not(.open) { opacity: 0.45; transition: opacity 0.4s ease; }
.feels-item.open { transition: opacity 0.4s ease; }
.feels-item.open::after {
  content: '';
  position: absolute;
  inset: -90px -80px;
  z-index: -1;
  border-radius: 26px;
  background:
    radial-gradient(closest-side, #e0295a 0%, transparent 70%),
    radial-gradient(closest-side, #3c56d6 0%, transparent 70%);
  background-position: 25% 50%, 75% 50%;
  background-repeat: no-repeat;
  background-size: 85% 120%, 85% 120%;
  opacity: 0.78;
  filter: blur(46px);
  pointer-events: none;
  animation: bio-fan-glow 14s ease-in-out infinite;
}
.feels-item.bounce.open::before { animation: feels-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.feels-item.bounce.push-up { animation: feels-push-up 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }
.feels-item.bounce.push-down { animation: feels-push-down 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes feels-bounce {
  0% { transform: scaleY(0.78); }
  45% { transform: scaleY(1.1); }
  65% { transform: scaleY(0.95); }
  85% { transform: scaleY(1.03); }
  100% { transform: scaleY(1); }
}
@keyframes feels-push-up {
  0% { transform: translateY(0); }
  35% { transform: translateY(-22px); }
  65% { transform: translateY(6px); }
  100% { transform: translateY(0); }
}
@keyframes feels-push-down {
  0% { transform: translateY(0); }
  35% { transform: translateY(22px); }
  65% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.feels-stack.has-open .feels-item { flex: 0 1 auto; }
.feels-stack.has-open .feels-item.open { flex: 1 1 auto; }
.feels-toggle {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--ink2);
  cursor: none;
  text-align: left;
}
.feels-plus {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--muted);
  transition: transform 0.25s ease;
}
.feels-item.open .feels-plus { transform: rotate(45deg); }
.feels-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, flex 0.35s ease, opacity 0.25s ease;
}
.feels-panel-inner { min-height: 0; overflow: hidden; display: flex; flex-direction: row; align-items: flex-start; gap: 18px; padding: 0 18px 16px 0; }
.feels-panel-text { min-width: 0; flex: 1; }
.feels-panel p { min-height: 0; overflow: hidden; }
.feels-panel-img {
  display: block;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}
.feels-item.open .feels-panel { grid-template-rows: 1fr; flex: 1; opacity: 1; transition: grid-template-rows 0.35s ease, flex 0.35s ease, opacity 0.3s ease 0.1s; }
.feels-panel p {
  margin: 0;
  padding: 0 0 16px;
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 1600px) {
  .reads-cols { grid-template-columns: repeat(2, 1fr); max-width: 460px; }
}
@media (max-width: 1100px) {
  .bc-reads   { grid-column: 1 / span 4; grid-row: auto; }
  .bc-listens { grid-column: 1 / span 4; grid-row: auto; }
}
@media (max-width: 900px) {
  .ab-bento { grid-template-columns: 3fr 2fr; padding: 8px 32px 72px; }
  .bc-span-2, .bc-span-3, .bc-span-4 { grid-column: span 2; }
  .bc-row-2 { grid-row: span 1; }
  .bc-info { grid-column: span 2; grid-row: auto; }
  .bc-bio, .bc-exp { grid-column: span 1; grid-row: auto; }
  .bc-recog { grid-column: 2 / span 1; grid-row: span 2; }
  .bc-reads { grid-column: 1 / span 1; grid-row: auto; }
  .bc-listens { grid-column: span 2; grid-row: auto; }
  .recog-list { column-count: 1; }
  .recog-list li { break-inside: avoid; }
}
@media (max-width: 560px) {
  .ab-bento { grid-template-columns: 1fr; padding: 8px 20px 56px; }
  .bc-span-2, .bc-span-3, .bc-span-4 { grid-column: span 1; }
  .bc-recog, .bc-exp, .bc-info, .bc-listens, .bc-reads { grid-column: span 1; grid-row: auto; }
}

