/* ============================================================
   collectorgreg.com — widgets.css
   Individual widget & component styles
   ============================================================ */

/* ── Currently / Now Sidebar Widget ───────────────────── */
.widget-now {
  --panel-rim: rgba(156, 185, 214, 0.74);
  --panel-glow: rgba(111, 142, 197, 0.16);
}

/* ── Page Utilities ────────────────────────────────────── */
.page-header-panel {
  margin-bottom: var(--spacing-sm);
  --panel-rim: rgba(171, 198, 227, 0.84);
  --panel-glow: rgba(128, 160, 220, 0.18);
  position: relative;
  overflow: hidden;
}

.page-header-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(171, 192, 255, 0.14), transparent 24%),
    radial-gradient(circle at 14% 100%, rgba(233, 221, 189, 0.06), transparent 18%);
  pointer-events: none;
}

.page-header-panel > * {
  position: relative;
  z-index: 1;
}

.page-header-title {
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: 0.35em;
  flex-wrap: wrap;
}

.page-header-title__icon {
  font-size: 1em;
}

.page-header-copy {
  font-size: var(--fs-page-copy);
  color: var(--text-primary);
}

.page-header-copy--compact {
  font-size: var(--fs-page-copy-compact);
  color: var(--text-soft);
}

#content-view .panel:not(.lastfm-widget):not(.widget-clock) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.12) 100%),
    radial-gradient(circle at 86% 14%, rgba(171, 192, 255, 0.18) 0%, transparent 26%),
    radial-gradient(circle at 14% 100%, rgba(255, 249, 230, 0.14) 0%, transparent 22%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0px, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 10px),
    linear-gradient(180deg, rgba(244, 251, 255, 0.78) 0%, rgba(217, 237, 249, 0.62) 100%);
  border-color: rgba(153, 195, 228, 0.24);
  box-shadow:
    0 10px 26px rgba(99, 145, 181, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 28px var(--panel-glow);
  backdrop-filter: blur(22px) saturate(1.35) contrast(1.03);
  -webkit-backdrop-filter: blur(22px) saturate(1.35) contrast(1.03);
}

.panel-body {
  padding: var(--spacing-sm);
}

.panel-body--tight {
  padding: 0 var(--spacing-sm);
}

.panel-body--spacious {
  padding: 16px;
}

/* ── Last.fm Recent Widget ─────────────────────────────── */
.lastfm-widget {
  --panel-rim: rgba(166, 197, 231, 0.82);
  --panel-glow: rgba(126, 160, 220, 0.2);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    radial-gradient(circle at 78% 18%, rgba(171, 192, 255, 0.14), transparent 28%),
    radial-gradient(circle at 14% 100%, rgba(233, 221, 189, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(20, 30, 45, 0.98), rgba(9, 15, 24, 0.98));
  box-shadow:
    var(--shadow-panel),
    inset 0 -16px 24px rgba(3, 7, 15, 0.14),
    0 0 28px rgba(126, 160, 220, 0.16);
}

.lastfm-widget__inner {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 164px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 249, 230, 0.42), transparent 28%),
    linear-gradient(160deg, rgba(244, 251, 255, 0.96) 0%, rgba(193, 228, 243, 0.9) 100%);
}

.lastfm-widget__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: blur(2.4px) saturate(0.82) brightness(0.86);
  transform: scale(1.01);
  transition: opacity 180ms ease, transform 220ms ease;
  pointer-events: none;
}

.lastfm-widget.has-art .lastfm-widget__bg {
  opacity: 0.62;
}

.lastfm-widget__meta {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-width: 0;
  display: flex;
  align-items: end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.04) 0%, rgba(10, 15, 24, 0.16) 38%, rgba(10, 15, 24, 0.72) 100%);
}

.lastfm-widget__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
}

.lastfm-widget__eyebrow {
  font-family: var(--font-pixel);
  font-size: var(--fs-lastfm-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3fbff;
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.lastfm-widget__track {
  display: block;
  width: 100%;
  color: #f7fbff;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-lastfm-track);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.lastfm-widget__track:hover {
  color: var(--accent-cream);
}

.lastfm-widget__artist {
  margin-top: 6px;
  width: 100%;
  color: #e6f2ff;
  font-size: var(--fs-lastfm-artist);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

#content-view > .lastfm-widget .lastfm-widget__inner {
  aspect-ratio: auto;
  min-height: 180px;
}

.lastfm-widget:hover .lastfm-widget__bg {
  transform: scale(1.03);
}

/* ── Clock Widget ──────────────────────────────────────── */
.widget-clock {
  --panel-rim: rgba(161, 191, 223, 0.8);
  --panel-glow: rgba(130, 162, 223, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    radial-gradient(circle at 16% 100%, rgba(233, 221, 189, 0.045), transparent 22%),
    linear-gradient(180deg, #1b2940 0%, #0e1725 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 280ms var(--ease-soft), box-shadow 280ms var(--ease-soft);
  box-shadow:
    var(--shadow-panel-soft),
    inset 0 -12px 18px rgba(3, 7, 15, 0.12),
    0 0 18px rgba(126, 160, 220, 0.12);
  --weather-orb-size: 72px;
  --weather-orb-opacity: 0.32;
  --weather-orb-blur: 0px;
  --weather-burst-opacity: 0;
  --weather-cloud-top: rgba(112, 142, 172, 0.48);
  --weather-cloud-bottom: rgba(32, 46, 65, 0.84);
  --weather-cloud-shadow: rgba(158, 195, 222, 0.08);
  --weather-precip: rgba(158, 195, 222, 0.48);
  --weather-precip-strong: rgba(220, 233, 242, 0.7);
  --weather-fog: rgba(219, 229, 239, 0.14);
  --weather-star: rgba(215, 231, 255, 0.95);
  --weather-sky-top: #162130;
  --weather-sky-bottom: #0c1420;
  transition:
    transform 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft),
    background 280ms var(--ease-soft);
}

.widget-clock:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-panel-soft),
    inset 0 -12px 18px rgba(3, 7, 15, 0.12),
    0 0 16px rgba(126, 160, 220, 0.1);
}

.widget-clock::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  box-shadow: inset 0 0 0 1px rgba(215, 231, 255, 0.05),
              inset 0 -32px 48px rgba(12, 20, 32, 0.26);
}

/* Weather backgrounds on the whole widget */
#clock-widget[data-weather="clear-night"] {
  background: linear-gradient(180deg, #1a2738 0%, #0d1623 100%);
  --weather-orb-size: 54px;
  --weather-orb-opacity: 0.42;
  --weather-burst-opacity: 0.08;
  --weather-cloud-top: rgba(82, 126, 170, 0.26);
  --weather-cloud-bottom: rgba(24, 38, 56, 0.74);
  --weather-star: rgba(224, 239, 255, 0.96);
  --weather-sky-top: #223144;
  --weather-sky-bottom: #111b29;
}
#clock-widget[data-weather="clear-day"] {
  background: linear-gradient(180deg, #3a536d 0%, #182434 100%);
  --weather-orb-size: 78px;
  --weather-orb-opacity: 0.5;
  --weather-burst-opacity: 0.22;
  --weather-cloud-top: rgba(208, 222, 234, 0.32);
  --weather-cloud-bottom: rgba(84, 109, 134, 0.62);
  --weather-cloud-shadow: rgba(224, 237, 247, 0.1);
  --weather-sky-top: #607b95;
  --weather-sky-bottom: #233548;
}
#clock-widget[data-weather="cloud1"],
#clock-widget[data-weather="cloud2"],
#clock-widget[data-weather="cloudy"] {
  background: linear-gradient(180deg, #243446 0%, #121b28 100%);
  --weather-orb-opacity: 0.18;
  --weather-burst-opacity: 0;
  --weather-cloud-top: rgba(154, 178, 200, 0.4);
  --weather-cloud-bottom: rgba(46, 61, 79, 0.84);
  --weather-cloud-shadow: rgba(193, 212, 227, 0.1);
  --weather-sky-top: #31465b;
  --weather-sky-bottom: #151f2c;
}
#clock-widget[data-period="day"][data-weather="cloud1"],
#clock-widget[data-period="day"][data-weather="cloud2"],
#clock-widget[data-period="day"][data-weather="cloudy"] {
  --weather-orb-opacity: 0.28;
  --weather-orb-size: 66px;
}
#clock-widget[data-period="night"][data-weather="cloud1"],
#clock-widget[data-period="night"][data-weather="cloud2"],
#clock-widget[data-period="night"][data-weather="cloudy"] {
  --weather-orb-opacity: 0.14;
  --weather-orb-size: 50px;
}
#clock-widget[data-weather="foggy"] {
  background: linear-gradient(180deg, #2b3d52 0%, #162230 100%);
  --weather-orb-opacity: 0.14;
  --weather-cloud-top: rgba(210, 222, 234, 0.18);
  --weather-cloud-bottom: rgba(117, 136, 156, 0.28);
  --weather-fog: rgba(219, 229, 239, 0.18);
  --weather-sky-top: #384c61;
  --weather-sky-bottom: #1c2938;
}
#clock-widget[data-weather="rain"],
#clock-widget[data-weather="drizzle"] {
  background: linear-gradient(180deg, #223140 0%, #111926 100%);
  --weather-orb-opacity: 0.08;
  --weather-cloud-top: rgba(133, 154, 176, 0.4);
  --weather-cloud-bottom: rgba(30, 42, 57, 0.86);
  --weather-precip: rgba(169, 196, 217, 0.48);
  --weather-precip-strong: rgba(224, 237, 247, 0.7);
  --weather-sky-top: #2d4154;
  --weather-sky-bottom: #141d29;
}
#clock-widget[data-weather="snow"] {
  background: linear-gradient(180deg, #415669 0%, #1b2937 100%);
  --weather-orb-opacity: 0.22;
  --weather-cloud-top: rgba(229, 236, 242, 0.28);
  --weather-cloud-bottom: rgba(104, 123, 144, 0.64);
  --weather-star: rgba(239, 248, 255, 0.98);
  --weather-sky-top: #5b7287;
  --weather-sky-bottom: #223242;
}
#clock-widget[data-weather="storm"] {
  background: linear-gradient(180deg, #182331 0%, #0a1018 100%);
  --weather-orb-opacity: 0.05;
  --weather-cloud-top: rgba(94, 110, 128, 0.42);
  --weather-cloud-bottom: rgba(18, 28, 40, 0.92);
  --weather-precip: rgba(158, 195, 222, 0.56);
  --weather-precip-strong: rgba(229, 236, 242, 0.78);
  --weather-sky-top: #202d3c;
  --weather-sky-bottom: #0d141d;
}

/* ── Weather scene — adapted from the CodePen's layered weather card idea ─── */
#weather-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius-md);
  z-index: 0;
  overflow: hidden;
}

.weather-scene > div {
  position: absolute;
  inset: 0;
}

.weather-scene__gradient {
  background:
    radial-gradient(circle at 78% 18%, rgba(210, 242, 255, 0.12) 0%, rgba(210, 242, 255, 0) 34%),
    linear-gradient(180deg, var(--weather-sky-top) 0%, var(--weather-sky-bottom) 100%);
  opacity: 0.95;
}

.weather-scene__orb,
.weather-scene__sunburst {
  left: auto;
  right: 18px;
  top: 16px;
  bottom: auto;
  transform-origin: center;
}

.weather-scene__orb {
  width: var(--weather-orb-size);
  height: var(--weather-orb-size);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 34%, rgba(243, 251, 255, 0.98) 0%, rgba(157, 225, 255, 0.82) 38%, rgba(125, 201, 255, 0.1) 72%, rgba(125, 201, 255, 0) 100%);
  opacity: var(--weather-orb-opacity);
  filter: blur(var(--weather-orb-blur));
  animation: wx-orb-pulse 9s ease-in-out infinite;
}

.weather-scene__sunburst {
  width: calc(var(--weather-orb-size) * 2.4);
  height: calc(var(--weather-orb-size) * 2.4);
  right: calc(18px - (var(--weather-orb-size) * 0.7));
  top: calc(16px - (var(--weather-orb-size) * 0.7));
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(125, 201, 255, 0.3) 0%, rgba(125, 201, 255, 0.12) 24%, rgba(125, 201, 255, 0) 58%),
    repeating-conic-gradient(from 0deg, rgba(210, 242, 255, 0.14) 0deg 10deg, rgba(210, 242, 255, 0) 10deg 24deg);
  opacity: var(--weather-burst-opacity);
  animation: wx-sunburst 24s linear infinite;
}

.weather-scene__backdrop,
.weather-scene__clouds,
.weather-scene__precip,
.weather-scene__foreground {
  overflow: hidden;
}

.weather-scene__flash {
  background: linear-gradient(180deg, rgba(219, 244, 255, 0.42) 0%, rgba(219, 244, 255, 0) 55%);
  mix-blend-mode: screen;
  opacity: 0;
}

#clock-widget[data-weather="storm"] .weather-scene__flash {
  animation: wx-lightning 7s step-end infinite;
}

/* Panel title and clock face float above particles */
.widget-clock .panel-title,
.widget-clock .clock-face,
.widget-clock .moon-row {
  position: relative;
  z-index: 1;
}

@keyframes wx-lightning {
  0%   { opacity: 0; }
  72%  { opacity: 0; }
  73%  { opacity: 1; }
  74%  { opacity: 0; }
  75%  { opacity: 1; }
  76%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ── Weather particles ──────────────────────────────────── */

.wx-drop {
  position: absolute;
  left: var(--x);
  top: -10px;
  width: 1.5px;
  height: var(--height, 14px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--weather-precip-strong) 100%);
  opacity: var(--opacity, 0.6);
  transform: rotate(12deg);
  animation: wx-rain var(--dur, 0.7s) linear var(--delay, 0s) infinite;
  pointer-events: none;
}

.wx-drop--mist {
  width: 1px;
  filter: blur(0.2px);
}

.wx-drop--heavy {
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--weather-precip-strong) 100%);
}

@keyframes wx-rain {
  0%   { transform: translate3d(0, 0, 0) rotate(12deg); opacity: var(--opacity, 0.7); }
  100% { transform: translate3d(var(--sway, 14px), 220px, 0) rotate(12deg); opacity: 0.08; }
}

.wx-flake {
  position: absolute;
  left: var(--x);
  top: -6px;
  width: var(--size, 3px);
  height: var(--size, 3px);
  background: rgba(240, 248, 255, 0.95);
  box-shadow: 0 0 10px rgba(240, 248, 255, 0.4);
  border-radius: 50%;
  animation: wx-snow var(--dur, 3s) linear var(--delay, 0s) infinite;
  pointer-events: none;
  opacity: var(--opacity, 0.85);
}

@keyframes wx-snow {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: var(--opacity, 0.9); }
  50%  { transform: translateY(90px) translateX(var(--drift, 8px)) rotate(160deg); }
  100% { transform: translateY(210px) translateX(calc(var(--drift, 8px) * -0.25)) rotate(320deg); opacity: 0.15; }
}

.wx-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--sz, 2px);
  height: var(--sz, 2px);
  background: var(--weather-star);
  border-radius: 50%;
  animation: wx-twinkle var(--dur, 2s) ease-in-out var(--delay, 0s) infinite;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(215, 231, 255, 0.32);
}

.wx-shimmer {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 2px;
  height: 2px;
  background: rgba(210, 242, 255, 0.72);
  border-radius: 50%;
  animation: wx-twinkle var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(210, 242, 255, 0.4);
}

.wx-glow {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--sz, 38px);
  height: var(--sz, 38px);
  background: radial-gradient(circle, rgba(164, 216, 255, 0.22) 0%, rgba(164, 216, 255, 0.08) 34%, rgba(164, 216, 255, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: wx-glow-pulse var(--dur, 5s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes wx-twinkle {
  0%, 100% { opacity: 0.85; transform: scale(1);   }
  50%       { opacity: 0.15; transform: scale(0.5); }
}

.wx-wisp,
.wx-cloud {
  transform-origin: center;
}

.wx-wisp {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--width, 96px);
  height: var(--height, 20px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--weather-fog), rgba(255, 255, 255, 0));
  border-radius: 50%;
  filter: blur(8px);
  opacity: var(--opacity, 0.24);
  animation: wx-fog var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
  pointer-events: none;
}

@keyframes wx-fog {
  0%, 100% { opacity: var(--opacity, 0.24); transform: translateX(0) scaleX(1); }
  50%      { opacity: calc(var(--opacity, 0.24) * 0.65); transform: translateX(18px) scaleX(1.08); }
}

.wx-cloud {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--width, 156px);
  height: var(--height, 34px);
  background: linear-gradient(180deg, var(--weather-cloud-top) 0%, var(--weather-cloud-bottom) 100%);
  border-radius: 50%;
  opacity: var(--opacity, 0.7);
  filter: blur(0.4px);
  transform: translateX(-35%) scale(var(--scale, 1));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12), inset 0 4px 10px var(--weather-cloud-shadow);
  animation: wx-drift var(--dur, 18s) linear var(--delay, 0s) infinite;
  pointer-events: none;
}

.wx-cloud::before,
.wx-cloud::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, var(--weather-cloud-top) 0%, var(--weather-cloud-bottom) 100%);
  border-radius: 50%;
}

.wx-cloud::before {
  width: 42%;
  height: 115%;
  left: 16%;
  bottom: 32%;
}

.wx-cloud::after {
  width: 34%;
  height: 92%;
  left: 52%;
  bottom: 26%;
}

.wx-cloud--soft {
  filter: blur(0.8px);
}

.wx-cloud--dense {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), inset 0 -6px 12px rgba(0, 0, 0, 0.14);
}

.wx-cloud--storm {
  filter: blur(0.6px);
}

@keyframes wx-drift {
  0%   { transform: translateX(-46%) scale(var(--scale, 1)); opacity: 0; }
  10%  { opacity: var(--opacity, 0.72); }
  50%  { transform: translateX(8%) scale(var(--scale, 1)) translateY(-2px); }
  90%  { opacity: var(--opacity, 0.72); }
  100% { transform: translateX(72%) scale(var(--scale, 1)); opacity: 0; }
}

.wx-splash {
  position: absolute;
  left: var(--x);
  bottom: 10px;
  width: 14px;
  height: 4px;
  border-radius: 999px;
  border-top: 1px solid rgba(220, 246, 255, 0.7);
  opacity: 0;
  animation: wx-splash var(--dur, 1s) ease-out var(--delay, 0s) infinite;
}

.wx-splash--storm {
  width: 18px;
}

@keyframes wx-splash {
  0%, 78%, 100% { opacity: 0; transform: translateX(-50%) scaleX(0.3) scaleY(0.8); }
  82% { opacity: 0.9; transform: translateX(-50%) scaleX(1) scaleY(1); }
  92% { opacity: 0.35; transform: translateX(-50%) translateY(-2px) scaleX(1.25) scaleY(0.9); }
}

@keyframes wx-orb-pulse {
  0%, 100% { transform: scale(1); opacity: var(--weather-orb-opacity); }
  50%      { transform: scale(1.015); opacity: calc(var(--weather-orb-opacity) * 0.9); }
}

@keyframes wx-sunburst {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes wx-glow-pulse {
  0%, 100% { opacity: 0.28; transform: translate(-50%, -50%) scale(0.96); }
  50%      { opacity: 0.18; transform: translate(-50%, -50%) scale(1.02); }
}

/* ── Weather info row ───────────────────────────────────── */
.weather-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xs);
  margin-bottom: 2px;
}

#weather-temp {
  font-family: var(--font-pixel);
  font-size: var(--fs-weather-temp);
  color: var(--gold);
  letter-spacing: 1px;
}

#weather-desc {
  font-family: var(--font-pixel);
  font-size: var(--fs-weather-meta);
  color: var(--text-soft);
  letter-spacing: 0.5px;
}

/* ── Clock face ─────────────────────────────────────────── */
.clock-face {
  padding: var(--spacing-xs) var(--spacing-md) var(--spacing-md);
}

#clock-time {
  font-family: var(--font-pixel);
  font-size: var(--fs-clock-time);
  color: var(--gold);
  letter-spacing: 2px;
  display: block;
  text-shadow: var(--glow-gold);
}

#clock-date {
  font-family: var(--font-pixel);
  font-size: var(--fs-clock-date);
  color: var(--text-soft);
  letter-spacing: 1px;
  display: block;
  margin-top: 4px;
}

#clock-tz {
  font-family: var(--font-pixel);
  font-size: var(--fs-clock-tz);
  color: var(--accent-blue);
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

/* ── Favourite Pokemon Display ─────────────────────────── */
.widget-pokemon {
  --panel-rim: rgba(160, 191, 220, 0.78);
  --panel-glow: rgba(116, 148, 205, 0.16);
}

.pokemon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xs);
  padding: var(--spacing-sm);
}

.pokemon-featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(18, 27, 41, 0.98), rgba(9, 15, 24, 0.98));
  border: 1px solid rgba(172, 200, 230, 0.8);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 18px rgba(117, 148, 201, 0.18);
}

.pokemon-featured img {
  width: 56px;
  height: 56px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 6px rgba(125, 201, 255, 0.55));
  animation: float 4s ease-in-out infinite;
}

.pokemon-featured .featured-info .poke-name {
  font-family: var(--font-pixel);
  font-size: 0.95rem;
  color: var(--gold);
}

.pokemon-featured .featured-info .poke-desc {
  font-size: 0.84rem;
  color: var(--moon-silver);
  font-style: italic;
}

.pokemon-featured .featured-info .poke-types {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.type-badge {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.type-dark    { background: #3d2e4a; color: #c8a8e0; border: 1px solid #6e4a8a; }
.type-normal  { background: #3a3a3a; color: #c8c8c8; border: 1px solid #666; }
.type-psychic { background: #4a1a2e; color: #f080a0; border: 1px solid #8a3060; }
.type-fairy   { background: #3a1a3a; color: #f0a0f0; border: 1px solid #804080; }
.type-grass   { background: #1a3a1a; color: #80c080; border: 1px solid #406040; }
.type-poison  { background: #3a0a3a; color: #c060c0; border: 1px solid #702070; }
.type-water   { background: #0a1e3f; color: #6ab0f0; border: 1px solid #2a60b0; }
.type-fire    { background: #3f1a0a; color: #f08040; border: 1px solid #a03010; }
.type-electric{ background: #3a3000; color: #f0d020; border: 1px solid #907000; }

/* Small pokemon cards in grid */
.poke-mini {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(16, 24, 37, 0.98), rgba(9, 15, 24, 0.98));
  border: 1px solid rgba(68, 92, 122, 0.88);
  border-radius: var(--radius-sm);
  padding: var(--spacing-xs);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.poke-mini:hover {
  border-color: rgba(167, 196, 226, 0.78);
  box-shadow: 0 0 12px rgba(117, 148, 201, 0.16);
}

.poke-mini img {
  width: 36px;
  height: 36px;
  image-rendering: pixelated;
  display: block;
  margin: 0 auto;
}

.poke-mini .mini-name {
  font-family: var(--font-pixel);
  font-size: 0.66rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
  line-height: 1.2;
}

/* ── /log feed ──────────────────────────────────────────── */
.status-entry {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.status-entry__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--fs-body-sm);
  color: var(--moon-silver);
}

.status-entry__text {
  font-size: var(--fs-body);
  color: var(--text-soft);
}

.status-entry__id {
  font-size: var(--fs-small-ui);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Social Links Widget ───────────────────────────────── */
.widget-social {
  --panel-rim: rgba(153, 182, 214, 0.76);
  --panel-glow: rgba(102, 132, 184, 0.14);
}

/* ── Buttons / Blinkies Widget ─────────────────────────── */
.widget-buttons {
  --panel-rim: rgba(149, 178, 210, 0.72);
  --panel-glow: rgba(100, 130, 182, 0.12);
}

/* ── Status Box ──────────────────────────────────────────── */
.status-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(16, 24, 37, 0.98), rgba(9, 15, 24, 0.98));
  border: var(--border-inset);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm);
  font-size: var(--fs-body-sm);
  color: var(--text-soft);
  font-style: italic;
  text-align: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.status-box::before {
  content: '💬';
  display: block;
  font-size: 1em;
  margin-bottom: 4px;
}

/* ── Recent Blog Panel ───────────────────────────────────── */
.widget-blog {
  --panel-rim: rgba(165, 195, 227, 0.82);
  --panel-glow: rgba(126, 160, 220, 0.18);
}

/* ── Collection Spotlight ────────────────────────────────── */
.widget-collecting {
  --panel-rim: rgba(160, 190, 220, 0.8);
  --panel-glow: rgba(122, 156, 214, 0.16);
}

.collection-spotlight {
  padding: var(--spacing-sm);
  text-align: center;
}

.collection-spotlight .card-img-wrap {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(16, 24, 37, 0.98), rgba(9, 15, 24, 0.98));
  border: 1px solid rgba(146, 176, 207, 0.66);
  border-radius: 4px;
  padding: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 16px rgba(2, 7, 15, 0.22);
}

.collection-spotlight img {
  display: block;
  max-width: 80px;
  height: auto;
  image-rendering: auto;
  margin: 0 auto;
}

.collection-spotlight .card-name {
  font-family: var(--font-pixel);
  font-size: 0.78rem;
  color: var(--gold);
  display: block;
}

.collection-spotlight .card-set {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── IndieWeb webring ─────────────────────────────────── */
.webring-bar {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(29, 42, 61, 0.98), rgba(14, 22, 34, 0.98));
  border: var(--border-inset);
  border-radius: var(--radius-sm);
  padding: var(--spacing-xs) var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.84rem;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.webring-bar a {
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  color: var(--gold-dim);
  padding: 2px 6px;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
}

.webring-bar a:hover { color: var(--gold); border-color: var(--gold); }

/* ── Bookmarks Page ──────────────────────────────────── */
.bookmarks-category {
  margin-bottom: var(--spacing-xl);
}

.bookmarks-category h2 {
  border-bottom: var(--border-gold);
  padding-bottom: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.bookmark-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.bookmark-item {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(29, 42, 61, 0.98), rgba(14, 22, 34, 0.98));
  border: var(--border-inset);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  border-left: 3px solid var(--gold-dim);
  transition: border-left-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.bookmark-item:hover {
  border-left-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(40, 58, 85, 0.98), rgba(17, 27, 41, 0.98));
  box-shadow: 0 0 16px rgba(100, 132, 184, 0.12);
  transform: translateX(1px);
}

.bookmark-item .bm-title {
  font-weight: 600;
  color: var(--text-link);
  font-size: 0.96rem;
}

.bookmark-item .bm-title:hover { color: var(--gold); }

.bookmark-item .bm-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Blog Index Page ─────────────────────────────────── */
.blog-index-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.blog-featured-post {
  padding: var(--spacing-lg);
  background:
    radial-gradient(circle at 82% 18%, rgba(126, 154, 222, 0.16), transparent 24%),
    radial-gradient(circle at 14% 90%, rgba(235, 221, 184, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(29, 43, 67, 0.98), rgba(12, 18, 30, 0.98));
}

.blog-featured-post__header {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-sm);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-sm);
}

.blog-featured-post__eyebrow {
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: lowercase;
}

.blog-featured-post__meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.blog-featured-post__title {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-pixel);
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--gold);
}

.blog-featured-post__title:hover {
  color: var(--gold-bright);
}

.blog-featured-post__summary {
  color: var(--text-soft);
  font-size: 0.96rem;
  margin-bottom: var(--spacing-md);
}

.blog-featured-post__footer {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-sm);
  align-items: center;
  flex-wrap: wrap;
}

.blog-featured-post__tags,
.blog-index-card__tags,
.blog-post-hero__tags,
.blog-post-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-archive-panel {
  padding: var(--spacing-sm);
}

.blog-archive-panel__meta {
  padding: 0 var(--spacing-sm) var(--spacing-sm);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.blog-index-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0)),
    radial-gradient(circle at 84% 16%, rgba(171, 192, 255, 0.095), transparent 24%),
    radial-gradient(circle at 14% 100%, rgba(233, 221, 189, 0.05), transparent 20%),
    linear-gradient(180deg, rgba(25, 37, 56, 0.98), rgba(13, 20, 33, 0.98));
  border: 1px solid rgba(160, 191, 223, 0.8);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow:
    var(--shadow-panel-soft),
    inset 0 -14px 20px rgba(3, 7, 15, 0.12),
    0 0 20px rgba(114, 146, 198, 0.12);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.blog-index-card:hover {
  border-color: rgba(186, 212, 239, 0.86);
  box-shadow:
    var(--shadow-panel),
    0 0 28px rgba(128, 160, 220, 0.18);
  transform: translateY(-1px);
}

.blog-index-card .post-date {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-pixel);
  font-size: var(--fs-blog-index-date);
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
}

.blog-index-card .post-title-link {
  font-family: var(--font-pixel);
  font-size: var(--fs-blog-index-title);
  color: var(--gold);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.blog-index-card .post-title-link:hover { color: var(--gold-bright); }

.blog-index-card .post-summary {
  font-size: var(--fs-blog-index-copy);
  color: var(--text-soft);
  margin-bottom: var(--spacing-sm);
}

.blog-subscribe-copy {
  margin-bottom: var(--spacing-sm);
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: var(--spacing-sm);
}

.blog-tag-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-tag-link__count {
  color: var(--gold);
  font-size: 0.72em;
}

.blog-topics-panel .panel-body {
  padding-top: 0;
}

.blog-subscribe-copy--quiet {
  margin-bottom: 0;
  color: var(--text-soft);
}

.blog-post-hero {
  margin-bottom: var(--spacing-md);
  padding: 18px 22px;
}

.blog-post-hero__eyebrow {
  font-family: var(--font-pixel);
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: var(--spacing-xs);
}

.blog-post-hero__title {
  font-size: 1.42rem;
  margin-bottom: 10px;
}

.blog-post-hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.blog-post-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-md);
  padding: 14px;
  font-size: 0.78rem;
}

.blog-post-info__item:last-child {
  grid-column: 1 / -1;
}

.blog-post-info__item--wide {
  grid-column: 1 / -1;
}

.blog-post-outline {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-post-outline__link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(129, 159, 194, 0.52);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(28, 40, 61, 0.94), rgba(12, 18, 30, 0.94));
  color: var(--text-soft);
  font-size: 0.74rem;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.blog-post-outline__link:hover {
  border-color: rgba(188, 213, 239, 0.76);
  color: var(--gold);
  transform: translateY(-1px);
}

.blog-post-outline__link--nested {
  opacity: 0.82;
}

.blog-post-nav {
  margin-top: var(--spacing-md);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: var(--spacing-md);
  align-items: start;
  font-size: 0.78rem;
}

.blog-post-nav__slot {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-post-nav__slot--right {
  text-align: right;
}

.blog-post-nav__center {
  align-self: center;
  text-align: center;
}

.blog-post-nav__link {
  color: var(--gold);
  font-family: var(--font-pixel);
  line-height: 1.5;
}

.blog-post-nav__link:hover {
  color: var(--gold-bright);
}

.blog-post-nav__empty {
  color: var(--text-muted);
}

.blog-related-posts {
  margin-top: var(--spacing-md);
}

.blog-related-posts__list {
  padding: var(--spacing-sm);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-sm);
}

.blog-related-posts__card {
  padding: var(--spacing-md);
  border: 1px solid rgba(111, 138, 173, 0.58);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(24, 34, 52, 0.9), rgba(11, 17, 28, 0.92));
}

.blog-related-posts__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-pixel);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.blog-related-posts__title {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--font-pixel);
  line-height: 1.45;
}

.blog-related-posts__title:hover {
  color: var(--gold-bright);
}

.blog-related-posts__summary {
  color: var(--text-soft);
  font-size: 0.84rem;
  margin-bottom: 0;
}

.tag--active {
  border-color: rgba(214, 188, 109, 0.92);
  color: var(--gold-bright);
  box-shadow: 0 0 14px rgba(214, 188, 109, 0.15);
}

.blog-callout,
.blog-field-note,
.blog-pullquote,
.blog-moon-divider {
  margin: var(--spacing-lg) 0;
}

.blog-callout {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 1px solid rgba(139, 167, 200, 0.72);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 86% 18%, rgba(171, 192, 255, 0.11), transparent 24%),
    radial-gradient(circle at 14% 100%, rgba(233, 221, 189, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(28, 41, 61, 0.96), rgba(12, 18, 30, 0.96));
}

.blog-callout::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 4px);
  opacity: 0.32;
}

.blog-callout--signal {
  border-color: rgba(136, 186, 213, 0.76);
  box-shadow: 0 0 24px rgba(90, 143, 181, 0.12);
}

.blog-callout--gold {
  border-color: rgba(208, 183, 114, 0.76);
  box-shadow: 0 0 24px rgba(208, 183, 114, 0.1);
}

.blog-callout__eyebrow,
.blog-field-note__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-pixel);
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--moon-dim);
}

.blog-callout__title,
.blog-field-note__title {
  margin: 0 0 8px;
  font-family: var(--font-pixel);
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--gold);
}

.blog-callout__body :last-child,
.blog-field-note__body :last-child {
  margin-bottom: 0;
}

.blog-field-note {
  position: relative;
  padding: var(--spacing-md);
  border: 1px dashed rgba(161, 191, 223, 0.56);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(21, 31, 48, 0.9), rgba(10, 16, 27, 0.94));
}

.blog-field-note__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.blog-field-note__meta {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.blog-field-note__footer {
  margin-top: var(--spacing-sm);
}

.blog-field-note__link {
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--gold);
}

.blog-field-note__link:hover {
  color: var(--gold-bright);
}

.blog-pullquote {
  padding: var(--spacing-md) var(--spacing-lg);
  border-left: 3px solid rgba(204, 180, 114, 0.72);
  background:
    linear-gradient(90deg, rgba(214, 188, 109, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(25, 36, 55, 0.92), rgba(12, 18, 30, 0.92));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blog-pullquote p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--moon-silver);
}

.blog-moon-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: var(--font-pixel);
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-moon-divider::before,
.blog-moon-divider::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(153, 183, 215, 0.58), transparent);
}

.blog-moon-divider__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.center-note {
  text-align: center;
  padding: var(--spacing-md);
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
}

.center-note__followup {
  margin-top: 4px;
}

/* ── Collection Page ─────────────────────────────────── */
.collection-page {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.collection-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-md);
}

.collection-panel-body {
  padding: var(--spacing-sm);
}

.collection-panel-body--tight {
  padding: 0 var(--spacing-sm);
}

.collection-panel-body--spacious {
  padding: 16px;
}

.collector-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-item {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(16, 24, 37, 0.98), rgba(9, 15, 24, 0.98));
  border: 1px solid rgba(68, 92, 122, 0.88);
  border-radius: 3px;
  padding: 8px 14px;
  text-align: center;
  flex: 1;
  min-width: 100px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 18px rgba(2, 7, 15, 0.14);
}

.stat-num {
  font-family: var(--font-pixel);
  font-size: 1.2rem;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shelf-label {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shelf-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
  opacity: 0.4;
}

.binder-shelf {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 8px 0;
}

.binder-item-wrap {
  display: flex;
}

.binder-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

.binder-cover {
  width: 130px;
  position: relative;
  border-radius: 3px 8px 8px 3px;
  overflow: hidden;
  box-shadow: -6px 0 0 #1a1a2e, -10px 0 0 #0d0d1a, 4px 4px 12px rgba(0,0,0,0.7), inset -2px 0 6px rgba(0,0,0,0.4);
  transition: transform 0.25s cubic-bezier(.34,1.4,.64,1), box-shadow 0.25s ease;
}

.binder-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.binder-cover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  background: linear-gradient(to right, #0d0d1a 0%, #1a1a2e 40%, #2a2a4a 100%);
  z-index: 2;
  border-right: 1px solid rgba(240,192,64,0.2);
}

.binder-cover::after {
  content: '• • • •';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-size: 10px;
  color: rgba(240,192,64,0.35);
  letter-spacing: 6px;
  z-index: 3;
  width: 14px;
  text-align: center;
}

.binder-item:hover .binder-cover,
.binder-item:focus-visible .binder-cover,
.binder-item.active .binder-cover {
  transform: translateX(4px) rotate(-2deg);
  box-shadow: -8px 0 0 #1a1a2e, -14px 0 0 #0d0d1a, 8px 8px 20px rgba(0,0,0,0.8), 0 0 16px rgba(240,192,64,0.15), inset -2px 0 6px rgba(0,0,0,0.4);
}

.binder-item.active .binder-cover {
  transform: translateX(8px) rotate(-3deg);
  box-shadow: -8px 0 0 #1a1a2e, -14px 0 0 #0d0d1a, 0 0 20px rgba(240,192,64,0.3), 8px 8px 20px rgba(0,0,0,0.8), inset -2px 0 6px rgba(0,0,0,0.4);
}

.binder-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.binder-item:hover .binder-label,
.binder-item:focus-visible .binder-label,
.binder-item.active .binder-label {
  color: var(--gold);
}

.binder-label {
  font-family: var(--font-pixel);
  font-size: 0.62rem;
  color: var(--moon-silver);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  max-width: 130px;
  line-height: 1.4;
}

.binder-count {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.binder-page {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.binder-page.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.binder-page.open .pocket-page {
  animation: binderFlip 0.7s cubic-bezier(.65,.02,.35,1);
}

.binder-page.open .pocket-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  animation: pageShimmer 0.9s ease forwards;
  pointer-events: none;
}

.open-binder-wrap {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(25, 37, 56, 0.98), rgba(13, 20, 33, 0.98));
  border: 1px solid rgba(160, 191, 223, 0.8);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow:
    var(--shadow-panel-soft),
    0 0 22px rgba(114, 146, 198, 0.12);
}

.open-binder-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(16, 24, 37, 0.98), rgba(9, 15, 24, 0.98));
  border-bottom: 1px solid rgba(172, 200, 230, 0.7);
}

.open-binder-header img {
  width: 40px;
  height: 54px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--gold-dim);
  box-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.open-binder-title {
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  color: var(--gold);
}

.open-binder-title__icon {
  font-size: 1.05em;
  margin-right: 0.2em;
}

.open-binder-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.close-binder-btn {
  margin-left: auto;
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--text-muted);
  background: var(--bg-highlight);
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.15s;
}

.close-binder-btn:hover,
.close-binder-btn:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(125, 201, 255, 0.18);
}

.pocket-page {
  position: relative;
  padding: 16px;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 114px, rgba(38,48,96,0.3) 114px, rgba(38,48,96,0.3) 115px), var(--bg-panel-alt);
}

.page-rings {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(240,192,64,0.1);
}

.ring-hole {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  background: var(--bg-space);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.8), 0 0 4px rgba(240,192,64,0.1);
}

.binder-hunting-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.pocket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.pocket {
  aspect-ratio: 2.5 / 3.5;
  background: rgba(10,20,50,0.6);
  border: 1px solid rgba(100,130,200,0.25);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%, rgba(255,255,255,0.02) 100%);
}

.pocket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(122,163,212,0.3), transparent);
}

.pocket.filled {
  border-color: rgba(122,163,212,0.4);
}

.pocket.filled:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 12px rgba(240,192,64,0.15), inset 0 0 6px rgba(0,0,0,0.2);
}

.pocket.filled:hover .pocket-card-img {
  transform: scale(1.04) translateY(-2px);
}

.pocket.empty {
  border-style: dashed;
  border-color: rgba(38,48,96,0.6);
}

.pocket.wishlist {
  border-style: dashed;
  border-color: rgba(240,192,64,0.3);
  background-image: linear-gradient(135deg, rgba(240,192,64,0.03) 0%, transparent 50%), repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(240,192,64,0.03) 4px, rgba(240,192,64,0.03) 5px);
}

.pocket.wishlist::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: rgba(240,192,64,0.2);
}

.pocket-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.pocket-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  text-align: center;
  background: linear-gradient(145deg, rgba(10,20,40,0.9), rgba(20,30,60,0.7));
  border: 1px dashed rgba(240,192,64,0.2);
  border-radius: 2px;
}

.pocket-fallback-name {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--moon-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pocket-fallback-set {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.pocket[data-card]::after {
  content: attr(data-card);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7,9,20,0.92);
  color: var(--moon-silver);
  font-size: 0.55rem;
  font-family: var(--font-pixel);
  padding: 3px 4px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.15s ease;
  line-height: 1.3;
  z-index: 10;
}

.pocket[data-card]:hover::after {
  transform: translateY(0);
}

.pocket-note {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(240,192,64,0.9);
  color: var(--bg-space);
  font-size: 0.45rem;
  font-family: var(--font-pixel);
  padding: 2px 4px;
  border-radius: 2px;
  line-height: 1.2;
  transform: rotate(2deg);
  max-width: 40px;
  text-align: center;
  z-index: 5;
}

.page-break {
  border: none;
  border-top: 1px solid rgba(38,48,96,0.4);
  margin: 12px 0;
}

.binder-tip {
  padding: 10px 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(38,48,96,0.5);
}

@keyframes binderFlip {
  0% { transform: rotateY(-6deg) scale(0.98); }
  50% { transform: rotateY(6deg) scale(1.01); }
  100% { transform: rotateY(0deg) scale(1); }
}

@keyframes pageShimmer {
  0% { opacity: 0; transform: translateX(-40%); }
  20% { opacity: 0.4; }
  100% { opacity: 0; transform: translateX(120%); }
}

/* ── About page h-card ───────────────────────────────── */
.panel.h-card::before {
  opacity: 0;
}

.panel.h-card::after {
  opacity: 0.18;
}

.about-hcard {
  display: flex;
  gap: var(--spacing-xl);
  align-items: flex-start;
}

.about-avatar-frame {
  flex-shrink: 0;
  width: 116px;
  height: 116px;
  padding: 6px;
  border: 1px solid rgba(255, 238, 195, 0.74);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 14%, rgba(255, 249, 218, 0.82), transparent 42%),
    linear-gradient(135deg, rgba(255, 252, 240, 0.94), rgba(235, 248, 255, 0.78) 62%, rgba(214, 238, 252, 0.62));
  box-shadow:
    0 18px 36px rgba(129, 176, 211, 0.2),
    0 0 0 5px rgba(255, 255, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.about-hcard .hcard-avatar {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  object-fit: cover;
  border: 1px solid rgba(172, 200, 230, 0.76);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(95, 140, 178, 0.14);
}

.about-hero-copy {
  min-width: 0;
}

.about-hero-name {
  margin-bottom: var(--spacing-xs);
}

.about-hero-subtitle {
  color: var(--moon-silver);
  font-style: italic;
  margin-bottom: 0.2rem;
}

.about-hero-tagline {
  margin: 0 0 var(--spacing-sm);
  color: #586db3;
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 0 12px rgba(129, 150, 218, 0.14);
}

.about-hero-meta {
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
}

.about-hero-actions {
  margin-top: var(--spacing-sm);
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.about-profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.8rem 0 0;
}

.about-profile-stat {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(127, 178, 216, 0.38);
  border-radius: calc(var(--radius-md) - 4px);
  background:
    linear-gradient(180deg, rgba(235, 247, 253, 0.86), rgba(213, 235, 248, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 10px 20px rgba(99, 145, 181, 0.1);
}

.about-profile-stat dt {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #587189;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  line-height: 1;
}

.about-profile-stat dd {
  margin: 0;
  color: var(--text-primary);
  font-weight: 850;
  line-height: 1.25;
}

.about-profile-stat .site-icon {
  color: #5f78be;
  font-size: 0.92rem;
}

.about-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.about-body {
  position: relative;
  z-index: 1;
  padding: var(--spacing-sm);
  font-size: var(--fs-body);
  line-height: 1.8;
}

.about-body--editorial {
  padding: 0.45rem 0.35rem 0.15rem;
  color: var(--text-primary);
}

.about-body--editorial strong {
  color: #223d57;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.about-body--editorial .rich-accent {
  display: inline;
  color: #4f63ad;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(95, 120, 190, 0) 0%, rgba(95, 120, 190, 0) 56%, rgba(95, 120, 190, 0.2) 56%, rgba(95, 120, 190, 0.2) 100%);
}

.about-editorial-stack {
  display: grid;
  gap: 0.95rem;
}

.about-story-lead {
  position: relative;
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem 1.25rem;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(127, 178, 216, 0.52);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 249, 218, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(220, 240, 252, 0.92), rgba(205, 229, 244, 0.86) 58%, rgba(187, 215, 235, 0.72));
  box-shadow:
    0 18px 38px rgba(99, 145, 181, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.about-story-lead::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem -1.65rem auto;
  width: 8rem;
  height: 8rem;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 247, 218, 0.62), rgba(255, 247, 218, 0) 68%);
}

.about-kicker {
  width: max-content;
  padding: 0.24rem 0.62rem;
  border: 1px solid rgba(127, 178, 216, 0.58);
  border-radius: 999px;
  background: rgba(232, 245, 253, 0.86);
  color: #4d6479;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: lowercase;
}

.about-lead-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.72rem;
  max-width: 62ch;
}

.about-lead-copy p {
  margin: 0;
}

.about-lead-copy p:first-child {
  max-width: 48ch;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.15;
  font-variation-settings: "opsz" 32, "SOFT" 100;
}

.about-lead-copy p + p {
  color: var(--text-secondary);
}

.about-story-note {
  display: grid;
  gap: 0.52rem;
  width: 100%;
  padding: 0.95rem 1.05rem;
  border-left: 3px solid rgba(104, 159, 202, 0.58);
  border-top: 1px solid rgba(127, 178, 216, 0.28);
  border-right: 1px solid rgba(127, 178, 216, 0.22);
  border-bottom: 1px solid rgba(127, 178, 216, 0.24);
  border-radius: calc(var(--radius-lg) - 8px);
  background:
    linear-gradient(90deg, rgba(198, 225, 242, 0.9), rgba(220, 239, 250, 0.76)),
    linear-gradient(180deg, rgba(232, 246, 253, 0.68), rgba(207, 232, 247, 0.54));
  box-shadow:
    0 14px 26px rgba(99, 145, 181, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.about-story-note__body,
.about-story-feature__body,
.about-story-more__body {
  display: grid;
  gap: 0.62rem;
}

.about-section-heading {
  margin: 0;
  color: #243f59;
  line-height: 1.15;
}

.about-story-note p,
.about-story-feature p,
.about-beliefs p,
.about-story-more p {
  margin: 0;
  color: #334f68;
}

.about-artifact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(127, 178, 216, 0.48);
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 249, 230, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(217, 237, 249, 0.92), rgba(229, 243, 251, 0.76));
  box-shadow:
    0 16px 30px rgba(99, 145, 181, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.about-artifact__copy {
  display: grid;
  gap: 0.52rem;
  min-width: 0;
}

.about-artifact__copy p {
  margin: 0;
  color: #334f68;
}

.about-artifact__media {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  min-width: 7rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 240, 194, 0.82);
  border-radius: calc(var(--radius-lg) - 8px);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 249, 230, 0.88), transparent 44%),
    linear-gradient(180deg, rgba(244, 251, 255, 0.92), rgba(202, 228, 244, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(99, 145, 181, 0.16);
}

.about-artifact__media img {
  width: 5.4rem;
  height: 5.4rem;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 10px 14px rgba(95, 120, 190, 0.2));
  transform: scale(1.35);
  transform-origin: center;
}

.about-artifact__seconds {
  display: grid;
  gap: 0.38rem;
  margin-top: 0.1rem;
}

.about-artifact__secondary-label {
  color: #5f758a;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1;
  text-transform: lowercase;
}

.about-artifact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.about-artifact__chips span {
  padding: 0.2rem 0.58rem;
  border: 1px solid rgba(127, 178, 216, 0.34);
  border-radius: var(--radius-pill);
  background: rgba(241, 249, 254, 0.76);
  color: #4f667b;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

.about-story-feature {
  display: grid;
  gap: 0.6rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(127, 178, 216, 0.5);
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 247, 216, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(227, 243, 252, 0.82), rgba(209, 232, 246, 0.64)),
    linear-gradient(135deg, rgba(207, 231, 246, 0.88), rgba(224, 239, 248, 0.72));
  box-shadow:
    0 16px 30px rgba(99, 145, 181, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.about-story-feature__body {
  max-width: 72ch;
}

.about-story-feature__body p {
  line-height: 1.72;
}

.about-beliefs {
  display: grid;
  gap: 0.95rem;
  padding: 1.1rem;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(127, 178, 216, 0.54);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 248, 220, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(225, 241, 251, 0.88), rgba(207, 232, 247, 0.68)),
    linear-gradient(135deg, rgba(205, 229, 245, 0.96), rgba(224, 239, 248, 0.78));
  box-shadow:
    0 18px 34px rgba(99, 145, 181, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.about-beliefs__intro {
  display: grid;
  gap: 0.5rem;
  max-width: 68ch;
}

.about-belief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.about-belief-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: center;
  min-height: 4rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(127, 178, 216, 0.34);
  border-radius: calc(var(--radius-md) + 2px);
  background:
    linear-gradient(180deg, rgba(235, 247, 253, 0.88), rgba(214, 236, 249, 0.72));
  box-shadow:
    0 12px 22px rgba(99, 145, 181, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.about-belief-card:nth-child(5) {
  grid-column: 1 / -1;
}

.about-belief-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 240, 194, 0.82);
  border-radius: 999px;
  background: rgba(255, 249, 230, 0.62);
  color: #5f78be;
  font-size: 1rem;
}

.about-belief-card__text {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.42;
}

.about-beliefs__closing {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(193, 218, 238, 0.58);
  color: var(--text-primary);
  font-weight: 800;
}

.about-story-more {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-story-more__item {
  display: grid;
  gap: 0.46rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(127, 178, 216, 0.42);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    linear-gradient(180deg, rgba(231, 244, 252, 0.78), rgba(211, 234, 248, 0.56));
  box-shadow:
    0 12px 24px rgba(99, 145, 181, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about-process {
  gap: 0.82rem;
}

.about-process__timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.about-process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.54rem;
  align-items: start;
  padding: 0.78rem;
  border: 1px solid rgba(127, 178, 216, 0.36);
  border-radius: calc(var(--radius-md) - 2px);
  background:
    linear-gradient(180deg, rgba(241, 249, 254, 0.88), rgba(217, 237, 249, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 10px 20px rgba(99, 145, 181, 0.1);
}

.about-process-step__icon {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  line-height: 1;
}

.about-process-step__icon {
  border: 1px solid rgba(255, 240, 194, 0.84);
  background: rgba(255, 249, 230, 0.64);
  color: #5f78be;
  font-size: 0.92rem;
}

.about-process-step h3 {
  margin: 0 0 0.18rem;
  color: #243f59;
  font-size: 0.96rem;
  line-height: 1.18;
}

.about-process-step p {
  margin: 0;
  color: #405b73;
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-process__closing {
  padding-top: 0.72rem;
  border-top: 1px solid rgba(127, 178, 216, 0.26);
}

.about-invitation {
  display: grid;
  gap: 0.62rem;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 194, 0.78);
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 249, 230, 0.5), transparent 28%),
    linear-gradient(135deg, rgba(219, 238, 250, 0.92), rgba(255, 249, 230, 0.62));
  box-shadow:
    0 18px 34px rgba(99, 145, 181, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.about-invitation p {
  max-width: 68ch;
  margin: 0;
  color: #334f68;
}

.about-support {
  gap: 0.82rem;
}

.about-support__feature-wrap,
.about-support__grid {
  display: grid;
  gap: 0.58rem;
}

.about-support__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-support-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: center;
  min-width: 0;
  padding: 0.76rem 0.84rem;
  border: 1px solid rgba(127, 178, 216, 0.38);
  border-radius: calc(var(--radius-md) + 2px);
  background:
    linear-gradient(180deg, rgba(241, 249, 254, 0.9), rgba(217, 237, 249, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 20px rgba(99, 145, 181, 0.11);
  color: var(--text-primary);
  text-decoration: none;
}

.about-support-card--feature {
  grid-template-columns: auto 1fr auto;
  border-color: rgba(255, 240, 194, 0.8);
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 249, 230, 0.46), transparent 32%),
    linear-gradient(135deg, rgba(255, 249, 230, 0.72), rgba(222, 240, 250, 0.84));
}

.about-support-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 240, 194, 0.82);
  border-radius: 999px;
  background: rgba(255, 249, 230, 0.62);
  color: #5f78be;
  font-size: 1rem;
}

.about-support-card:not(.about-support-card--feature) .about-support-card__icon {
  grid-row: span 2;
  align-self: center;
}

.about-support-card__body {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

.about-support-card__title {
  color: #243f59;
  font-weight: 850;
  line-height: 1.15;
}

.about-support-card__description {
  color: #405b73;
  font-size: 0.9rem;
  line-height: 1.45;
}

.about-support-card__cta {
  justify-self: start;
  padding: 0.18rem 0.52rem;
  border: 1px solid rgba(127, 178, 216, 0.38);
  border-radius: var(--radius-pill);
  background: rgba(241, 249, 254, 0.8);
  color: #4f667b;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.about-support-card--feature .about-support-card__cta {
  border-color: rgba(255, 240, 194, 0.86);
  background: rgba(255, 249, 230, 0.78);
}

.about-support__note {
  padding-top: 0.38rem;
  border-top: 1px solid rgba(127, 178, 216, 0.24);
  font-size: 0.92rem;
  font-weight: 750;
}

.about-invitation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.about-invitation__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.about-invitation__actions .btn-ghost {
  background: rgba(241, 249, 254, 0.78);
  border-color: rgba(127, 178, 216, 0.36);
}

/* ── /now Page ───────────────────────────────────────── */
.now-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.now-hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  align-items: start;
  padding: 14px;
  background:
    radial-gradient(circle at 80% 14%, rgba(190, 211, 255, 0.16), transparent 24%),
    radial-gradient(circle at 14% 100%, rgba(233, 221, 189, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(34, 50, 74, 0.985), rgba(16, 25, 39, 0.985));
}

.now-hero-panel__copy {
  min-width: 0;
}

.now-hero-panel__kicker {
  margin-bottom: 8px;
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--moon-dim);
}

.now-achievement-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.now-achievement-card {
  padding: 12px 14px;
  min-height: 108px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    radial-gradient(circle at 84% 16%, rgba(171, 192, 255, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(31, 46, 68, 0.98), rgba(16, 24, 39, 0.98));
}

.now-achievement-card__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-family: var(--font-pixel);
  font-size: 0.58rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--moon-dim);
}

.now-achievement-card__value {
  margin-bottom: 6px;
  font-family: var(--font-pixel);
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--gold-bright);
}

.now-achievement-card__sub {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.now-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.now-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-sm);
}

.now-page-title {
  margin-bottom: var(--spacing-sm);
}

.now-page-intro {
  margin-bottom: var(--spacing-xs);
  color: var(--text-soft);
}

.now-page-meta {
  margin-bottom: 0;
}

.now-section {
  position: relative;
}

.now-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent 28%, transparent 72%, rgba(169, 198, 228, 0.035));
  opacity: 0.8;
}

.now-section > * {
  position: relative;
  z-index: 1;
}

.now-section__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
}

.now-section__count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(129, 159, 194, 0.52);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(28, 40, 61, 0.94), rgba(12, 18, 30, 0.94));
  color: var(--text-soft);
  font-size: 0.72rem;
}

.media-log-section__intro {
  font-size: var(--fs-body-sm);
  color: var(--text-soft);
  margin: 0;
}

.now-lane-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 8px;
}

.now-lane-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(136, 164, 196, 0.34);
  background: rgba(18, 29, 44, 0.68);
  font-family: var(--font-pixel);
  font-size: 0.54rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--moon-dim);
}

.media-log-section__footer,
.media-log-page__footer {
  display: flex;
  justify-content: center;
  padding-top: var(--spacing-xs);
}

.now-card--stretch {
  align-items: stretch;
}

.now-card--flush {
  padding-top: 0;
}

.now-card--feature {
  margin-bottom: var(--spacing-xs);
  padding: 12px;
  border: 1px solid rgba(162, 192, 225, 0.48);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(31, 46, 68, 0.92), rgba(15, 23, 37, 0.94));
}

.now-listening-console {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  min-height: 66px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(160, 191, 223, 0.4);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    radial-gradient(circle at 82% 18%, rgba(171, 192, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(26, 39, 59, 0.92), rgba(12, 19, 31, 0.96));
}

.now-listening-console__label {
  align-self: start;
  font-family: var(--font-pixel);
  font-size: 0.56rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--moon-dim);
}

.now-listening-console__bars {
  display: flex;
  align-items: end;
  gap: 5px;
  flex: 1;
  justify-content: flex-end;
  min-height: 40px;
}

.now-listening-console__bar {
  width: 8px;
  min-height: 12px;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, rgba(233, 221, 189, 0.9), rgba(171, 192, 255, 0.92));
  box-shadow: 0 0 10px rgba(171, 192, 255, 0.14);
  transform-origin: bottom center;
  animation: equalizer-bounce 1.8s ease-in-out infinite;
}

.now-card--quest {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    radial-gradient(circle at 84% 18%, rgba(233, 221, 189, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(29, 43, 63, 0.92), rgba(14, 22, 35, 0.94));
  border: 1px solid rgba(169, 191, 220, 0.42);
  border-radius: var(--radius-md);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 16px rgba(111, 144, 173, 0.08);
}

.now-card__quest-icon {
  filter: drop-shadow(0 0 10px rgba(233, 221, 189, 0.2));
}

.now-card__body {
  min-width: 0;
  flex: 1;
}

.now-card__thumb {
  width: 104px;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(150, 182, 214, 0.72);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    linear-gradient(to bottom, rgba(125, 201, 255, 0.12), transparent 30%),
    repeating-linear-gradient(
      to bottom,
      rgba(125, 201, 255, 0.06) 0px,
      rgba(125, 201, 255, 0.06) 2px,
      transparent 2px,
      transparent 6px
    ),
    linear-gradient(180deg, rgba(16, 24, 37, 0.98), rgba(7, 11, 18, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 2px rgba(4, 8, 20, 0.82),
    2px 2px 0 rgba(4, 8, 20, 0.9),
    0 0 18px rgba(111, 144, 173, 0.12);
  position: relative;
}

.now-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
}

.now-card__thumb-placeholder {
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  color: var(--gold);
  text-shadow: var(--glow-gold);
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.now-card__sub {
  display: block;
  margin-top: 4px;
}

.media-log-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.media-log-card__meta .now-label {
  margin-bottom: 0;
}

.media-log-card__date {
  font-size: var(--fs-small-ui);
  color: var(--text-muted);
}

.media-log-card__rating {
  margin-left: auto;
}

.media-log-card__review {
  line-height: 1.55;
  color: var(--text-soft);
}

.media-log-card__meter {
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(9, 15, 24, 0.62);
  border: 1px solid rgba(117, 145, 179, 0.26);
}

.media-log-card__meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(233, 221, 189, 0.82), rgba(171, 192, 255, 0.88));
  animation: meter-pulse 2.8s ease-in-out infinite;
}

.now-listening-intro {
  font-size: var(--fs-body-sm);
  color: var(--text-soft);
  margin: 0 0 var(--spacing-sm);
}

.now-track-list {
  display: grid;
  gap: 2px;
}

@media (max-width: 600px) {
  .page-header-copy,
  .page-header-copy--compact {
    line-height: 1.5;
  }

  .panel-body,
  .panel-body--spacious,
  .collection-panel-body {
    padding: 8px;
  }

  .now-achievement-strip,
  .now-hero-panel,
  .now-overview-grid,
  .now-media-grid {
    grid-template-columns: 1fr;
  }

  .now-section__meta {
    flex-direction: column;
  }

  .now-listening-console {
    flex-direction: column;
    align-items: stretch;
  }

  .now-listening-console__bars {
    justify-content: space-between;
  }

  .panel-body--tight,
  .collection-panel-body--tight {
    padding: 0 8px;
  }

  .now-card__thumb {
    width: 84px;
  }

  .media-log-card__meta {
    gap: 4px 6px;
  }

  .media-log-card__date {
    font-size: var(--fs-status-link);
  }

  .media-log-card__rating {
    margin-left: 0;
  }

  .lastfm-widget__inner {
    aspect-ratio: 1.35 / 1;
    min-height: 150px;
  }

  .lastfm-widget__meta {
    padding: 10px;
  }

  .lastfm-widget__eyebrow {
    margin-bottom: 6px;
  }

  #content-view > .lastfm-widget .lastfm-widget__inner {
    min-height: 140px;
  }

  .widget-clock .panel-title {
    margin-bottom: 0;
  }

  .clock-face {
    padding: 4px 8px 8px;
  }

  #clock-time {
    letter-spacing: 1px;
  }

  .moon-row {
    padding: 6px 8px 8px;
  }

  #moon-emoji {
    font-size: 1.6rem;
  }

  #moon-name {
    font-size: var(--fs-status-link);
  }

  .pokemon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
  }

  .pokemon-featured {
    gap: 8px;
    padding: 8px 10px;
    margin-bottom: 4px;
  }

  .pokemon-featured img {
    width: 44px;
    height: 44px;
  }

  .pokemon-featured .featured-info .poke-name {
    font-size: var(--fs-tag);
  }

  .pokemon-featured .featured-info .poke-desc {
    font-size: var(--fs-body-xs);
  }

  .poke-mini img {
    width: 30px;
    height: 30px;
  }

  .poke-mini .mini-name {
    font-size: var(--fs-status-link);
  }

  .blog-index-card {
    padding: 10px 12px;
  }

  .blog-featured-post,
  .blog-post-hero {
    padding: var(--spacing-md);
  }

  .blog-post-info {
    grid-template-columns: 1fr;
  }

  .blog-post-info__item:last-child {
    grid-column: auto;
  }

  .blog-post-nav {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .blog-post-nav__slot--right {
    text-align: left;
  }

  .blog-related-posts__list {
    grid-template-columns: 1fr;
  }

  .about-hcard {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .about-body {
    padding: 8px;
    line-height: 1.7;
  }

  .about-body--editorial {
    padding: 2px 0 0;
  }

  .about-artifact,
  .about-process__timeline {
    grid-template-columns: 1fr;
  }

  .about-story-lead,
  .about-story-feature,
  .about-beliefs,
  .about-artifact,
  .about-invitation,
  .about-story-more__item {
    padding: 0.9rem;
  }

  .about-artifact__media {
    justify-self: start;
    min-width: 7rem;
  }

  .about-artifact__media img {
    width: 4.4rem;
    height: 4.4rem;
  }

  .about-belief-grid,
  .about-support__grid,
  .about-story-more {
    grid-template-columns: 1fr;
  }

  .about-support-card,
  .about-support-card--feature {
    grid-template-columns: auto 1fr;
  }

  .about-support-card__cta {
    grid-column: 2;
  }

  .about-belief-card:nth-child(5) {
    grid-column: auto;
  }

  .collection-summary-grid {
    grid-template-columns: 1fr;
  }

  .binder-shelf {
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 6px 2px 10px;
    scroll-snap-type: x proximity;
  }

  .binder-item-wrap {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .binder-cover {
    width: 88px;
  }

  .binder-label {
    max-width: 88px;
    font-size: 0.56rem;
  }

  .binder-count {
    font-size: 0.58rem;
  }

  .open-binder-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 10px;
  }

  .open-binder-header img {
    width: 32px;
    height: 44px;
  }

  .open-binder-title {
    font-size: 0.76rem;
  }

  .open-binder-subtitle {
    font-size: 0.66rem;
  }

  .close-binder-btn {
    margin-left: 0;
    padding: 4px 8px;
    font-size: 0.58rem;
  }

  .pocket-page {
    padding: 10px;
  }

  .page-rings {
    gap: 22px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  .ring-hole {
    width: 14px;
    height: 14px;
  }

  .binder-hunting-note,
  .binder-tip {
    font-size: 0.68rem;
  }

  .pocket-grid {
    gap: 5px;
    margin-bottom: 8px;
  }

  .pocket-fallback-name,
  .pocket-fallback-set,
  .pocket[data-card]::after {
    font-size: 0.48rem;
  }
}

@media (max-width: 440px) {
  .lastfm-widget__inner {
    aspect-ratio: auto;
  }

  #content-view > .lastfm-widget .lastfm-widget__inner {
    min-height: 126px;
  }

  .pokemon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pokemon-featured {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   Theme Refresh Overrides
   Component system, blog, collection, /now
   ============================================================ */

#content-view .panel:not(.lastfm-widget):not(.widget-clock) {
  background:
    linear-gradient(180deg, rgba(222, 240, 250, 0.78) 0%, rgba(255, 255, 255, 0.18) 100%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.2) 0%, transparent 22%),
    radial-gradient(circle at 12% 100%, rgba(255, 249, 230, 0.22) 0%, transparent 18%),
    linear-gradient(180deg, rgba(229, 244, 252, 0.76) 0%, rgba(203, 229, 245, 0.58) 100%);
  border-color: rgba(153, 195, 228, 0.26);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 0 28px rgba(153, 195, 228, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-header-panel {
  padding: clamp(1.4rem, 2vw, 1.9rem);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.12)),
    linear-gradient(145deg, rgba(255, 249, 230, 0.34) 0%, rgba(244, 251, 255, 0.56) 48%, rgba(193, 228, 243, 0.42) 100%);
  border-color: rgba(153, 195, 228, 0.26);
  box-shadow:
    0 12px 32px rgba(99, 145, 181, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-header-panel::after {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.68), transparent 20%),
    radial-gradient(circle at 12% 100%, rgba(255, 249, 230, 0.44), transparent 16%);
}

.page-header-title {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.page-header-copy,
.page-header-copy--compact,
.now-page-intro {
  max-width: 54rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.home-post-list,
.home-now-list {
  padding-inline: 0.1rem;
}

.home-panel-footer {
  display: flex;
  justify-content: center;
  padding-top: var(--spacing-sm);
}

.home-panel-link,
.home-now-link {
  font-size: 0.82rem;
}

.home-now-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 230, 0.95));
  border: 1px solid rgba(255, 240, 194, 0.9);
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 10px 20px rgba(153, 195, 228, 0.14);
  line-height: 1.2;
}

.home-now-link:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.lastfm-widget {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2)),
    linear-gradient(160deg, rgba(244, 251, 255, 0.98) 0%, rgba(193, 228, 243, 0.96) 100%);
  border: 1px solid rgba(127, 178, 216, 0.22);
  box-shadow: var(--shadow-soft);
}

.lastfm-widget__inner {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
}

.lastfm-widget__bg {
  filter: blur(2px) saturate(0.78) brightness(1.02);
}

.lastfm-widget.has-art .lastfm-widget__bg {
  opacity: 0.5;
}

.lastfm-widget__meta {
  padding: 1rem;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(244, 251, 255, 0.12) 0%, rgba(244, 251, 255, 0.28) 42%, rgba(227, 241, 251, 0.9) 100%);
}

.lastfm-widget__eyebrow,
.lastfm-widget__track,
.lastfm-widget__artist {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.38);
}

.lastfm-widget__eyebrow {
  color: var(--text-soft);
  letter-spacing: 0.12em;
}

.lastfm-widget__track {
  color: var(--text-primary);
}

.lastfm-widget__track:hover {
  color: var(--text-link-hover);
}

.lastfm-widget__artist {
  color: var(--text-muted);
}

.widget-clock,
#clock-widget[data-weather="clear-night"],
#clock-widget[data-weather="clear-day"],
#clock-widget[data-weather="cloud1"],
#clock-widget[data-weather="cloud2"],
#clock-widget[data-weather="cloudy"],
#clock-widget[data-weather="foggy"],
#clock-widget[data-weather="rain"],
#clock-widget[data-weather="drizzle"],
#clock-widget[data-weather="snow"],
#clock-widget[data-weather="storm"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, rgba(244, 251, 255, 0.98) 0%, rgba(193, 228, 243, 0.96) 100%);
  border: 1px solid rgba(127, 178, 216, 0.22);
  box-shadow: var(--shadow-soft);
  --weather-cloud-top: rgba(255, 255, 255, 0.94);
  --weather-cloud-bottom: rgba(193, 228, 243, 0.78);
  --weather-cloud-shadow: rgba(132, 178, 212, 0.14);
  --weather-precip: rgba(127, 178, 216, 0.54);
  --weather-precip-strong: rgba(255, 255, 255, 0.95);
  --weather-fog: rgba(255, 255, 255, 0.42);
  --weather-star: rgba(255, 255, 255, 0.92);
  --weather-sky-top: #F7FCFF;
  --weather-sky-bottom: #CDE7F7;
}

#clock-widget[data-weather="clear-night"] {
  --weather-sky-top: #F6FBFF;
  --weather-sky-bottom: #BCDDF2;
}

#clock-widget[data-weather="storm"] {
  --weather-cloud-bottom: rgba(168, 208, 239, 0.7);
  --weather-precip: rgba(109, 164, 205, 0.7);
}

.widget-clock::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    inset 0 -18px 28px rgba(153, 195, 228, 0.12);
}

.weather-scene__gradient {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, var(--weather-sky-top) 0%, var(--weather-sky-bottom) 100%);
}

.weather-scene__orb {
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 1) 0%, rgba(255, 249, 230, 0.95) 30%, rgba(153, 195, 228, 0.34) 70%, rgba(153, 195, 228, 0) 100%);
}

.weather-scene__sunburst {
  background:
    radial-gradient(circle, rgba(255, 249, 230, 0.34) 0%, rgba(255, 249, 230, 0.14) 24%, rgba(255, 249, 230, 0) 58%),
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.22) 0deg 10deg, rgba(255, 255, 255, 0) 10deg 24deg);
}

.weather-scene__flash {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 58%);
}

.wx-cloud {
  box-shadow: 0 10px 24px rgba(153, 195, 228, 0.16), inset 0 2px 8px rgba(255, 255, 255, 0.48);
}

.wx-cloud--dense {
  box-shadow: 0 12px 26px rgba(153, 195, 228, 0.22), inset 0 2px 8px rgba(255, 255, 255, 0.42);
}

.weather-info {
  gap: 0.5rem;
}

#weather-temp,
#clock-time {
  color: var(--text-primary);
  text-shadow: var(--text-shadow-soft);
}

#weather-desc,
#clock-date,
#clock-tz {
  color: var(--text-soft);
}

.clock-face {
  padding: 0.4rem 1rem 1rem;
}

.pokemon-featured,
.poke-mini,
.status-box,
.blog-index-card,
.blog-featured-post,
.blog-post-hero,
.blog-related-posts__card,
.blog-callout,
.blog-field-note,
.stat-item,
.now-achievement-card,
.now-listening-console,
.now-card--feature,
.now-card--quest,
.open-binder-wrap {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(244, 251, 255, 0.98), rgba(216, 237, 249, 0.98));
  border: 1px solid rgba(127, 178, 216, 0.18);
  box-shadow:
    0 16px 30px rgba(134, 182, 216, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.pokemon-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.45rem;
}

.pokemon-featured {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.2rem;
  min-height: 7.4rem;
}

.pokemon-featured img {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 12px 18px rgba(153, 195, 228, 0.22));
}

.pokemon-featured .featured-info {
  display: grid;
  gap: 0.35rem;
}

.pokemon-featured .featured-info .poke-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.pokemon-featured .featured-info .poke-name,
.collection-spotlight .card-name,
.about-favorite-name {
  color: var(--text-primary);
}

.pokemon-featured .featured-info .poke-desc,
.collection-spotlight .card-set,
.about-favorite-copy,
.status-entry__text {
  color: var(--text-muted);
}

.pokemon-featured .featured-info .poke-desc {
  line-height: 1.45;
  max-width: 28rem;
}

.pokemon-featured .featured-info .poke-types {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.1rem;
}

.pokemon-supporting {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.type-badge {
  padding: 0.24rem 0.52rem;
  border-radius: 999px;
  border-width: 1px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.type-dark { background: #E9E0F2; color: #6E5C84; border-color: #CDBADD; }
.type-normal { background: #F3F1EA; color: #7C7365; border-color: #DDD5C6; }
.type-psychic { background: #F7E3EC; color: #A46583; border-color: #E2BED0; }
.type-fairy { background: #F9EAF5; color: #A57497; border-color: #E5C7DA; }
.type-grass { background: #E5F2E7; color: #688868; border-color: #C5DFC9; }
.type-poison { background: #EFE4F6; color: #7D6193; border-color: #D8C1EA; }
.type-water { background: #E1EFF8; color: #5A7F9C; border-color: #BFD8EA; }
.type-fire { background: #FBE8DD; color: #A77658; border-color: #F0CCB5; }
.type-electric { background: #FFF2D9; color: #9C8450; border-color: #F2DCAD; }

.poke-mini {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 5.3rem;
  border-radius: calc(var(--radius-md) - 4px);
  padding: 0.9rem 1rem;
  text-align: left;
}

.poke-mini img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 14px rgba(153, 195, 228, 0.16));
}

.poke-mini .mini-name {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0;
}
.status-entry {
  gap: 0.7rem;
}

.status-entry__header {
  color: var(--text-primary);
}

.status-entry__id {
  color: var(--text-soft);
}

.blog-featured-post,
.blog-post-hero {
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: calc(var(--radius-lg) + 2px);
}

.blog-featured-post__eyebrow,
.blog-post-hero__eyebrow,
.blog-post-outline__link,
.blog-post-nav__link,
.blog-callout__eyebrow,
.blog-field-note__eyebrow,
.blog-field-note__link,
.blog-moon-divider {
  font-family: var(--font-body);
  letter-spacing: 0.08em;
}

.blog-featured-post__eyebrow,
.blog-post-hero__eyebrow {
  color: var(--text-soft);
}

.blog-featured-post__meta,
.blog-post-hero__meta,
.blog-index-card .post-date,
.blog-related-posts__meta,
.blog-post-nav__empty {
  color: var(--text-soft);
}

.blog-featured-post__title,
.blog-index-card .post-title-link,
.blog-related-posts__title {
  color: var(--text-primary);
  font-family: var(--font-display);
}

.blog-featured-post__title:hover,
.blog-index-card .post-title-link:hover,
.blog-related-posts__title:hover,
.blog-post-nav__link:hover,
.blog-field-note__link:hover {
  color: var(--text-link-hover);
}

.blog-featured-post__summary,
.blog-index-card .post-summary,
.blog-related-posts__summary,
.blog-subscribe-copy,
.blog-subscribe-copy--quiet,
.center-note,
.center-note__followup {
  color: var(--text-muted);
}

.blog-tag-list {
  padding: 0.2rem;
  gap: 0.45rem;
}

.blog-tag-link__count {
  color: var(--text-soft);
}

.tag--active {
  border-color: rgba(255, 240, 194, 0.9);
  color: var(--text-primary);
  box-shadow: 0 10px 18px rgba(255, 240, 194, 0.16);
}

.blog-post-info-panel {
  margin-top: var(--spacing-md);
  padding: 1rem;
}

.blog-post-info {
  padding: 0.4rem;
  border-radius: calc(var(--radius-md) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(244, 251, 255, 0.94), rgba(216, 237, 249, 0.96));
  border: 1px solid rgba(127, 178, 216, 0.14);
}

.blog-post-info__value,
.blog-post-info__author-link {
  color: var(--text-primary);
}

.blog-post-info__author-link {
  font-weight: 700;
}

.blog-post-outline__link {
  min-height: 30px;
  padding: 0.22rem 0.68rem;
  border-radius: 999px;
  border-color: rgba(127, 178, 216, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 251, 255, 0.96));
  color: var(--text-muted);
  line-height: 1.15;
}

.blog-post-outline__link:hover {
  border-color: rgba(255, 240, 194, 0.84);
  color: var(--text-primary);
}

.blog-post-nav {
  padding: 1rem 1.15rem;
  border-radius: calc(var(--radius-lg) - 2px);
}

.blog-callout,
.blog-field-note,
.blog-pullquote {
  border-radius: calc(var(--radius-md) + 2px);
}

.blog-callout {
  padding: 1rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18)),
    linear-gradient(160deg, rgba(255, 249, 230, 0.94) 0%, rgba(244, 251, 255, 0.96) 100%);
}

.blog-callout::after {
  display: none;
}

.blog-callout--signal,
.blog-callout--gold {
  box-shadow:
    0 18px 28px rgba(153, 195, 228, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.blog-callout__title,
.blog-field-note__title {
  color: var(--text-primary);
  font-family: var(--font-display);
}

.blog-field-note {
  border-style: solid;
}

.blog-pullquote {
  border-left: none;
  padding: 1.1rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, rgba(255, 249, 230, 0.86), rgba(244, 251, 255, 0.96));
}

.blog-pullquote p {
  color: var(--text-primary);
}

.blog-moon-divider::before,
.blog-moon-divider::after {
  background: linear-gradient(90deg, transparent, rgba(127, 178, 216, 0.44), transparent);
}

.about-hcard {
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
}

@media (min-width: 601px) {
  .about-profile-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-avatar-frame {
  width: 124px;
  height: 124px;
  border-color: rgba(255, 240, 194, 0.86);
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 249, 218, 0.88), transparent 42%),
    linear-gradient(135deg, rgba(255, 252, 240, 0.96), rgba(235, 248, 255, 0.82) 60%, rgba(214, 238, 252, 0.66));
  box-shadow:
    0 22px 34px rgba(153, 195, 228, 0.2),
    0 0 0 5px rgba(255, 255, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.about-hero-subtitle,
.about-hero-meta {
  color: var(--text-muted);
}

.collection-page {
  gap: var(--spacing-lg);
}

.collection-summary-grid {
  gap: var(--spacing-lg);
}

.collection-panel-body,
.collection-panel-body--spacious {
  padding: 0.35rem;
}

.collector-stats {
  gap: 1rem;
}

.stat-item {
  min-width: 140px;
  border-radius: calc(var(--radius-md) - 2px);
  padding: 1rem 1.1rem;
}

.stat-num {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.stat-label {
  color: var(--text-soft);
  font-size: 0.72rem;
}

.shelf-label {
  color: var(--text-soft);
  font-family: var(--font-body);
}

.shelf-label::after {
  background: linear-gradient(to right, rgba(127, 178, 216, 0.46), transparent);
}

.binder-shelf {
  gap: 1rem;
  padding: 0.3rem 0 0;
}

.binder-item {
  gap: 0.65rem;
}

.binder-cover {
  width: 136px;
  border-radius: 28px;
  box-shadow:
    0 20px 34px rgba(153, 195, 228, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.binder-cover::before {
  width: 16px;
  background: linear-gradient(to right, rgba(255, 249, 230, 0.95) 0%, rgba(244, 251, 255, 0.82) 100%);
  border-right: 1px solid rgba(255, 240, 194, 0.84);
}

.binder-cover::after {
  content: '';
  left: 5px;
  top: 18px;
  width: 6px;
  height: calc(100% - 36px);
  border-radius: 999px;
  transform: none;
  background:
    radial-gradient(circle at center, rgba(153, 195, 228, 0.45) 0 2px, transparent 2px 100%);
  background-size: 6px 20px;
  background-repeat: repeat-y;
}

.binder-item:hover .binder-cover,
.binder-item:focus-visible .binder-cover,
.binder-item.active .binder-cover {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow:
    0 24px 40px rgba(153, 195, 228, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.binder-item.active .binder-cover {
  transform: translateY(-6px) rotate(-3deg);
}

.binder-item:focus-visible {
  outline-color: rgba(127, 178, 216, 0.74);
}

.binder-label {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.binder-count {
  color: var(--text-soft);
}

.open-binder-wrap {
  border-radius: calc(var(--radius-lg) + 2px);
}

.open-binder-header {
  gap: 1rem;
  padding: 1rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, rgba(255, 249, 230, 0.92), rgba(244, 251, 255, 0.96));
  border-bottom: 1px solid rgba(127, 178, 216, 0.16);
}

.open-binder-header img {
  border-radius: 16px;
  border: 1px solid rgba(255, 240, 194, 0.84);
  box-shadow: 0 14px 22px rgba(153, 195, 228, 0.16);
}

.open-binder-title {
  color: var(--text-primary);
  font-family: var(--font-display);
}

.open-binder-subtitle,
.binder-hunting-note,
.binder-tip {
  color: var(--text-muted);
}

.close-binder-btn {
  min-height: 34px;
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 240, 194, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 230, 0.96));
  color: var(--text-primary);
  line-height: 1.15;
}

.close-binder-btn:hover,
.close-binder-btn:focus-visible {
  color: var(--text-primary);
  box-shadow: 0 10px 20px rgba(153, 195, 228, 0.16);
}

.pocket-page {
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 249, 230, 0.74), rgba(244, 251, 255, 0.92));
}

.page-rings {
  border-bottom: 1px solid rgba(127, 178, 216, 0.12);
}

.ring-hole {
  border-color: rgba(127, 178, 216, 0.4);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 3px rgba(153, 195, 228, 0.18);
}

.pocket-grid {
  gap: 0.8rem;
}

.pocket {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, rgba(244, 251, 255, 0.9), rgba(216, 237, 249, 0.92));
  border: 1px solid rgba(127, 178, 216, 0.18);
}

.pocket::before {
  height: 5px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.78), transparent);
}

.pocket.empty {
  border-style: dashed;
  border-color: rgba(127, 178, 216, 0.22);
}

.pocket.wishlist {
  border-color: rgba(255, 240, 194, 0.68);
  background-image:
    linear-gradient(135deg, rgba(255, 249, 230, 0.54) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255, 240, 194, 0.16) 4px, rgba(255, 240, 194, 0.16) 5px),
    linear-gradient(180deg, rgba(244, 251, 255, 0.92), rgba(216, 237, 249, 0.94));
}

.pocket.wishlist::after {
  color: rgba(255, 240, 194, 0.78);
}

.pocket.filled:hover {
  border-color: rgba(255, 240, 194, 0.76);
  box-shadow:
    0 14px 24px rgba(153, 195, 228, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.pocket-photo-fallback {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.14)),
    linear-gradient(180deg, rgba(244, 251, 255, 0.9), rgba(216, 237, 249, 0.92));
  border: 1px dashed rgba(127, 178, 216, 0.28);
  border-radius: 18px;
}

.pocket-fallback-name {
  color: var(--text-primary);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0.02em;
}

.pocket-fallback-set,
.pocket[data-card]::after {
  color: var(--text-muted);
}

.pocket[data-card]::after {
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
}

.pocket-note {
  background: rgba(255, 249, 230, 0.96);
  color: var(--text-primary);
  border-radius: 999px;
  transform: rotate(-3deg);
}

.page-break {
  border-top-color: rgba(127, 178, 216, 0.14);
}

.now-hero-panel {
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.18)),
    linear-gradient(160deg, rgba(255, 249, 230, 0.95) 0%, rgba(244, 251, 255, 0.98) 48%, rgba(193, 228, 243, 0.94) 100%);
}

.now-hero-panel__kicker,
.now-achievement-card__label,
.now-listening-console__label,
.now-lane-badge,
.now-section__count {
  font-family: var(--font-body);
  letter-spacing: 0.08em;
}

.now-hero-panel__kicker,
.now-page-meta,
.now-achievement-card__sub,
.media-log-section__intro,
.now-listening-intro {
  color: var(--text-muted);
}

.now-section::after {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.52), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 30%, transparent 72%, rgba(255, 249, 230, 0.14));
}

.now-achievement-card__value {
  font-family: var(--font-display);
}

.now-section__count,
.now-lane-badge,
.media-log-card__date,
.media-log-card__review {
  color: var(--text-soft);
}

.media-log-card__meter {
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(127, 178, 216, 0.18);
}

.media-log-card__meter-fill {
  background: linear-gradient(90deg, rgba(255, 249, 230, 0.96), rgba(153, 195, 228, 0.92));
  box-shadow: 0 0 12px rgba(153, 195, 228, 0.16);
}

.now-achievement-strip,
.now-overview-grid,
.now-media-grid {
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.now-achievement-card {
  min-height: 0;
  border-radius: calc(var(--radius-md) - 2px);
  padding: 0.92rem 1rem;
}

.now-section__count,
.now-lane-badge {
  border-radius: 999px;
  border: 1px solid rgba(127, 178, 216, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 251, 255, 0.94));
  line-height: 1.15;
}

.now-section__count {
  min-height: 24px;
  padding: 0.15rem 0.62rem;
  font-size: 0.68rem;
}

.now-lane-badge {
  min-height: 20px;
  padding: 0.1rem 0.5rem;
  font-size: 0.52rem;
}

.now-card--feature,
.now-card--quest,
.media-log-card {
  border-radius: calc(var(--radius-md) - 2px);
}

.now-card--feature {
  padding: 0.82rem 0.92rem;
}

.now-card--quest,
.media-log-card {
  padding: 0.82rem 0.9rem;
}

.now-listening-console {
  gap: 1rem;
  min-height: 82px;
  padding: 0.85rem 1rem;
  border-radius: calc(var(--radius-md) - 2px);
}

.now-listening-console__bar {
  width: 10px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(255, 249, 230, 0.96), rgba(153, 195, 228, 0.92));
}

.now-card__thumb {
  width: 112px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, rgba(244, 251, 255, 0.96), rgba(216, 237, 249, 0.94));
  box-shadow:
    0 14px 24px rgba(153, 195, 228, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.now-card__thumb-placeholder {
  color: var(--text-primary);
  font-family: var(--font-display);
  text-shadow: var(--text-shadow-soft);
}

.media-log-card__meta {
  gap: 0.45rem 0.6rem;
}

.media-log-section__footer,
.media-log-page__footer {
  padding-top: var(--spacing-md);
}

@media (max-width: 600px) {
  .page-header-title {
    font-size: 1.85rem;
  }

  .lastfm-widget__meta {
    padding: 0.85rem;
  }

  .now-hero-panel,
  .now-achievement-strip,
  .now-overview-grid,
  .now-media-grid,
  .collection-summary-grid {
    grid-template-columns: 1fr;
  }

  .binder-shelf {
    gap: 0.85rem;
  }

  .binder-cover {
    width: 96px;
    border-radius: 22px;
  }

  .now-card__thumb {
    width: 88px;
    border-radius: 20px;
  }

  .pokemon-featured {
    padding: 0.85rem;
  }
}

/* ============================================================
   Support Cloud Widget
   Main-column support feature
   ============================================================ */

.support-cloud {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border-radius: calc(var(--radius-xl) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.24)),
    linear-gradient(145deg, rgba(255, 249, 230, 0.96) 0%, rgba(244, 251, 255, 0.98) 50%, rgba(193, 228, 243, 0.94) 100%);
  box-shadow:
    0 22px 40px rgba(134, 182, 216, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.support-cloud::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 255, 255, 0.72) 0%, transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(255, 249, 230, 0.52) 0%, transparent 18%),
    radial-gradient(circle at 80% 78%, rgba(255, 255, 255, 0.38) 0%, transparent 20%);
}

.support-cloud > * {
  position: relative;
  z-index: 1;
}

.support-cloud__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.support-cloud__puff {
  position: absolute;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 249, 230, 0.78) 50%, rgba(255, 255, 255, 0) 100%);
  filter: blur(2px);
  opacity: 0.8;
}

.support-cloud__puff--one {
  top: 1rem;
  right: 1.6rem;
  width: 160px;
  height: 84px;
}

.support-cloud__puff--two {
  left: -1rem;
  bottom: 1.8rem;
  width: 128px;
  height: 72px;
}

.support-cloud__puff--three {
  right: 22%;
  bottom: -0.8rem;
  width: 132px;
  height: 68px;
  opacity: 0.58;
}

.support-cloud__header {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: var(--spacing-sm);
  max-width: 100%;
}

.support-cloud__feature-wrap {
  margin-bottom: var(--spacing-md);
}

.support-cloud__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-md);
  width: 100%;
}

.support-cloud__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  min-height: 100%;
  padding: 1rem;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(244, 251, 255, 0.98), rgba(216, 237, 249, 0.96));
  box-shadow:
    0 16px 28px rgba(153, 195, 228, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: inherit;
  transition:
    transform var(--dur-base) var(--ease-soft),
    box-shadow var(--dur-base) var(--ease-soft),
    border-color var(--dur-base) var(--ease-soft);
}

.support-cloud__card--feature {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.15rem;
  min-height: 100%;
  padding: 1.15rem 1.2rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border-color: rgba(255, 240, 194, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, rgba(255, 249, 230, 0.98), rgba(242, 250, 255, 0.98));
  box-shadow:
    0 20px 34px rgba(153, 195, 228, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 1px rgba(255, 255, 255, 0.28);
}

.support-cloud__card--secondary {
  width: 100%;
  justify-self: stretch;
}

.support-cloud__card:hover {
  color: inherit;
  transform: translateY(-4px);
  border-color: rgba(255, 240, 194, 0.86);
  box-shadow:
    0 22px 34px rgba(153, 195, 228, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.support-cloud__card--feature:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 38px rgba(153, 195, 228, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 1px rgba(255, 255, 255, 0.28);
}

.support-cloud__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 230, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 10px 18px rgba(153, 195, 228, 0.14);
  font-size: 1.35rem;
}

.support-cloud__icon--feature {
  width: 3.45rem;
  height: 3.45rem;
  font-size: 1.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 12px 20px rgba(153, 195, 228, 0.16);
}

.support-cloud__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.support-cloud__body--feature {
  gap: 0.45rem;
}

.support-cloud__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 700;
}

.support-cloud__title--feature {
  font-size: 1.18rem;
}

.support-cloud__description {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.support-cloud__description--feature {
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 38rem;
}

.support-cloud__cta {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 34px;
  margin-top: 0.2rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 230, 0.96));
  border: 1px solid rgba(255, 240, 194, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  width: fit-content;
}

.support-cloud__cta--feature {
  grid-column: auto;
  align-self: center;
  margin-top: 0;
  padding: 0.5rem 0.9rem;
  border-color: rgba(255, 240, 194, 0.94);
}

.support-cloud__note {
  margin: var(--spacing-sm) 0 0;
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .support-cloud__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .support-cloud {
    padding: var(--spacing-md);
  }

  .support-cloud__header {
    margin-bottom: var(--spacing-md);
  }

  .support-cloud__feature-wrap {
    margin-bottom: var(--spacing-sm);
  }

  .support-cloud__card--feature {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
  }

  .support-cloud__cta--feature {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .support-cloud__card {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .support-cloud__icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .support-cloud__icon--feature {
    width: 2.75rem;
    height: 2.75rem;
  }

  .support-cloud__title {
    font-size: 0.98rem;
  }

  .support-cloud__title--feature {
    font-size: 1.05rem;
  }

  .support-cloud__description {
    font-size: 0.86rem;
  }

  .support-cloud__description--feature {
    font-size: 0.9rem;
  }

  .support-cloud__cta {
    min-height: 30px;
    padding: 0.32rem 0.62rem;
    font-size: 0.66rem;
  }
}

/* ── Typography Finish: Japanese kawaii glass UI ───────── */
#site-title .name,
.page-header-title,
.welcome-heading h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  text-shadow: var(--text-shadow-lift);
}

#site-title .name {
  font-size: var(--fs-site-title);
}

#site-title .tagline {
  font-family: var(--font-body);
  font-size: var(--fs-site-tagline);
  font-weight: 800;
  letter-spacing: 0;
  font-style: normal;
}

.page-header-title {
  font-size: var(--fs-h1);
}

.welcome-heading h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h2,
h3,
h4,
.blog-featured-post__title,
.blog-index-card .post-title-link,
.blog-related-posts__title,
.blog-callout__title,
.blog-field-note__title,
.blog-post-hero__title,
.post-card .post-title,
.open-binder-title,
.support-cloud__title,
.now-achievement-card__value,
.now-card__thumb-placeholder,
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
  text-shadow: var(--text-shadow-soft);
}

.blog-featured-post__title,
.blog-index-card .post-title-link,
.blog-related-posts__title,
.blog-post-hero__title {
  font-size: var(--fs-blog-index-title);
}

.support-cloud__title,
.open-binder-title,
.post-card .post-title {
  font-size: var(--fs-card-title);
}

.panel-title,
.welcome-panel-title {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: var(--fs-panel-title);
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
}

.chip,
.tag,
.btn,
.footer-badge,
.now-card .now-label,
.blog-featured-post__eyebrow,
.blog-post-hero__eyebrow,
.blog-index-card .post-date,
.blog-related-posts__meta,
.now-lane-badge,
.now-section__count,
.support-cloud__cta,
.home-panel-link,
.home-now-link {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
}

.btn,
.tag,
.chip {
  text-transform: none;
}

p,
li,
.page-header-copy,
.page-header-copy--compact,
.now-page-intro,
.post-card .post-excerpt,
.blog-featured-post__summary,
.blog-index-card .post-summary,
.blog-post-body,
.blog-related-posts__summary,
.now-card .now-value,
.now-card .now-sub,
.support-cloud__description,
.support-cloud__note,
.welcome-lede {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
}

.page-header-copy,
.page-header-copy--compact,
.now-page-intro,
.blog-post-body {
  line-height: 1.78;
}

.welcome-lede {
  font-size: var(--fs-hero-copy);
  line-height: 1.7;
}

#nav-panel ul li a,
.nav-folder summary,
.nav-folder-list li a,
.support-link,
#mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
}

#nav-panel ul li a,
.nav-folder summary {
  font-size: var(--fs-nav);
  line-height: 1;
}

.nav-folder-list li a {
  font-size: var(--fs-nav-child);
}

.btn {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
}

.site-header-quote__text,
.about-hero-subtitle,
.welcome-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

.site-header-quote__spark,
.about-kicker,
.blog-post-hero__eyebrow,
.blog-featured-post__eyebrow,
.now-hero-panel__kicker,
.support-cloud__eyebrow {
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: 0;
}

.page-header-copy,
.page-header-copy--compact,
.now-page-intro,
.blog-post-body {
  font-size: var(--fs-page-copy);
}

.panel-body,
.panel-body--spacious,
.collection-panel-body,
.collection-panel-body--spacious {
  font-weight: 600;
}

@media (max-width: 600px) {
  .page-header-title {
    font-size: var(--fs-h1);
  }

  .welcome-heading h1 {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
  }

  #site-title .name {
    font-size: var(--fs-site-title);
  }
}

@media (max-width: 720px) {
  .pokemon-featured {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pokemon-featured .featured-info {
    justify-items: center;
  }

  .pokemon-featured .featured-info .poke-desc {
    max-width: none;
  }

  .pokemon-supporting {
    grid-template-columns: 1fr;
  }
}
