:root {
  --ink:           #0A0A0F;
  --ink-soft:      rgba(10, 10, 15, 0.85);
  --ink-mute:      rgba(10, 10, 15, 0.6);

  --bubblegum:     #FF7AB6;
  --cherry:        #E91E63;
  --cherry-deep:   #B71849;
  --cherry-soft:   #FFC2DC;

  --cream:         #FFF5F8;
  --paper:         #FFFDFE;

  --line:          rgba(10, 10, 15, 0.1);
  --line-strong:   rgba(10, 10, 15, 0.18);

  --shadow:        0 1px 2px rgba(10, 10, 15, 0.04), 0 8px 24px rgba(10, 10, 15, 0.06);
  --shadow-strong: 0 4px 12px rgba(10, 10, 15, 0.1), 0 16px 40px rgba(10, 10, 15, 0.12);

  --serif: 'Iosevka', ui-monospace, 'SF Mono', Menlo, monospace;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: #020204;
  background-image:
    radial-gradient(ellipse at 20% 15%, rgba(25, 10, 50, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 85%, rgba(5, 15, 35, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 40%, rgba(10, 30, 15, 0.20) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}



article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px 120px;
  background: linear-gradient(170deg, #fff8f5 0%, #fffaf7 50%, #fff6f2 100%);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(233, 30, 99, 0.06);
  position: relative;
  z-index: 1;
}

/* Article Meta */
.article-meta { display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cherry-deep); margin-bottom: 28px; flex-wrap: wrap; }
.meta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cherry); }

.series-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--ink); border: 1px solid var(--ink); border-radius: 100px; color: var(--bubblegum); font-family: var(--mono); }
.series-tag .blink { width: 6px; height: 6px; background: var(--cherry); border-radius: 50%; animation: blink 1.6s infinite; box-shadow: 0 0 8px var(--cherry); }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.2; } }

h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 6vw, 64px); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 20px; }
h1 em { font-style: italic; color: var(--cherry); font-weight: 400; }

.subtitle { font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 400; color: var(--cherry-deep); line-height: 1.45; margin-bottom: 36px; max-width: 600px; }

.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.tag { padding: 5px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; color: var(--cherry-deep); font-weight: 500; }

/* Vinyl jacket — SD2 style */
.vinyl-jacket {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  margin: 0 0 56px;
  padding: 28px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--cherry);
  position: relative;
}

.cover {
  width: 100%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 122, 182, 0.08), transparent 60%),
    repeating-linear-gradient(45deg, #1a1419 0px, #1a1419 2px, #0a0a0f 2px, #0a0a0f 4px),
    linear-gradient(135deg, #2a1f25, #0a0a0f);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.6), 0 4px 16px rgba(233, 30, 99, 0.15);
}

.cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 122, 182, 0.18), transparent 60%);
}

.cover-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.cover-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 6px;
  text-shadow: 0 0 24px rgba(255, 122, 182, 0.45);
}

.jacket-meta { display: flex; flex-direction: column; gap: 14px; }
.jacket-row { display: flex; flex-direction: column; gap: 2px; }
.jacket-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.jacket-value { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); line-height: 1.3; }

@media (max-width: 600px) {
  .vinyl-jacket { grid-template-columns: 1fr; padding: 22px; }
  .cover { max-width: 240px; margin: 0 auto; }
}

/* Waveform divider — SD2 style */
.waveform-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 56px 0 48px;
  gap: 4px;
  height: 40px;
}

.waveform-divider .bar {
  width: 3px;
  background: var(--cherry);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
}

.waveform-divider .bar:nth-child(1)  { height: 40%; animation-delay: 0s; }
.waveform-divider .bar:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.waveform-divider .bar:nth-child(3)  { height: 50%; animation-delay: 0.2s; }
.waveform-divider .bar:nth-child(4)  { height: 90%; animation-delay: 0.3s; }
.waveform-divider .bar:nth-child(5)  { height: 60%; animation-delay: 0.4s; }
.waveform-divider .bar:nth-child(6)  { height: 80%; animation-delay: 0.5s; }
.waveform-divider .bar:nth-child(7)  { height: 45%; animation-delay: 0.6s; }
.waveform-divider .bar:nth-child(8)  { height: 75%; animation-delay: 0.7s; }
.waveform-divider .bar:nth-child(9)  { height: 55%; animation-delay: 0.8s; }
.waveform-divider .bar:nth-child(10) { height: 85%; animation-delay: 0.9s; }
.waveform-divider .bar:nth-child(11) { height: 50%; animation-delay: 1.0s; }
.waveform-divider .bar:nth-child(12) { height: 65%; animation-delay: 1.1s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.4); opacity: 1; }
}

/* Sections */
.section { margin-bottom: 56px; scroll-margin-top: 40px; }
.section-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; color: var(--cherry); font-weight: 500; margin-bottom: 8px; display: block; }

h2 { font-family: var(--serif); font-weight: 500; font-size: 42px; line-height: 1.1; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 24px; position: relative; }
h2::before { content: ''; position: absolute; left: -20px; top: 18px; width: 8px; height: 8px; background: var(--cherry); border-radius: 50%; box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.2); }
@media (max-width: 600px) { h2::before { display: none; } }

p { margin-bottom: 22px; font-size: 17px; color: var(--ink-soft); line-height: 1.78; }
p strong { color: var(--ink); font-weight: 600; }
p em { color: var(--cherry); font-style: italic; }

.intro p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  color: var(--cherry);
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  padding-top: 4px;
}

/* Tracklist */
.tracklist { margin: 24px 0 36px; border-top: 1px solid var(--line); }
.track {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s;
}
.track:hover { background: rgba(233, 30, 99, 0.05); transform: translateX(4px); }
.track-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.track-icon svg { width: 100%; height: 100%; transition: transform 0.6s ease; }
.track:hover .track-icon svg { transform: rotate(360deg); }
.track-icon .vinyl-record { fill: var(--ink); }
.track-icon .vinyl-label { fill: var(--cherry); }
.track-icon .vinyl-hole { fill: var(--cream); }
.track-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.track-title { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.track-feat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; color: var(--ink-mute); }
.track-link { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cherry); font-weight: 500; white-space: nowrap; }

/* Loves block */
.loves { margin: 24px 0; padding: 28px 32px; background: linear-gradient(135deg, rgba(255, 194, 220, 0.2), rgba(233, 30, 99, 0.06)); border-left: 3px solid var(--cherry); border-radius: 0 12px 12px 0; }
.loves-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.loves-list li { font-size: 17px; color: var(--ink-soft); line-height: 1.65; position: relative; padding-left: 22px; }
.loves-list li::before { content: '♥'; position: absolute; left: 0; top: 0; color: var(--cherry); font-size: 13px; }
.loves-list li strong { color: var(--ink); font-weight: 600; }

/* No complaints */
.no-complaints { margin: 24px 0; padding: 32px; background: var(--paper); border: 1px dashed rgba(233, 30, 99, 0.3); border-radius: 12px; text-align: center; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--cherry-deep); line-height: 1.5; }

/* Heart & Mind */
.heart-mind { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.hm-col { padding: 30px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hm-col::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; }
.hm-heart::before { background: linear-gradient(to right, var(--cherry-deep), var(--cherry)); }
.hm-mind::before { background: linear-gradient(to right, var(--bubblegum), var(--cherry-soft)); }
.hm-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.hm-heart .hm-label { color: var(--cherry); }
.hm-mind .hm-label { color: var(--ink); }
.hm-col p { font-size: 16px; line-height: 1.72; margin-bottom: 14px; }
.hm-col p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .heart-mind { grid-template-columns: 1fr; } }

/* Growth grid */
.growth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 24px 0; }
.growth-card { padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); transition: transform 0.2s; }
.growth-card:hover { transform: translateY(-2px); }
.growth-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cherry); font-weight: 500; margin-bottom: 10px; }
.growth-value { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.growth-value em { color: var(--cherry-deep); }
.lw-tag { display: inline-block; padding: 2px 10px; background: rgba(233, 30, 99, 0.1); border: 1px solid rgba(233, 30, 99, 0.3); border-radius: 4px; font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--cherry-deep); margin: 0 2px; letter-spacing: 0.04em; }

/* Recommendations */
.recommendations { margin: 48px 0 32px; padding: 36px 32px; background: linear-gradient(135deg, var(--paper) 0%, rgba(255, 194, 220, 0.18) 100%); border: 1px solid rgba(233, 30, 99, 0.18); border-radius: 14px; box-shadow: 0 4px 20px rgba(233, 30, 99, 0.06); }
.recommendations-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cherry); font-weight: 500; margin-bottom: 8px; }
.recommendations-title { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--ink); margin-bottom: 22px; letter-spacing: -0.01em; }
.rec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.rec-card { padding: 22px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; position: relative; overflow: hidden; }
.rec-card:hover { transform: translateY(-3px); border-color: rgba(233, 30, 99, 0.35); box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1), 0 12px 28px rgba(233, 30, 99, 0.08); }
.rec-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(to right, var(--cherry-deep), var(--cherry)); }
.rec-card-name { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); letter-spacing: -0.005em; margin-bottom: 4px; line-height: 1.2; }
.rec-card-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cherry); font-weight: 500; margin-bottom: 12px; }
.rec-card-note { font-size: 14px; line-height: 1.6; color: var(--ink-mute); }
.rec-card-note em { color: var(--cherry-deep); font-style: italic; }

/* Verdict */
.verdict { margin: 64px 0 32px; padding: 48px 40px; background: linear-gradient(135deg, var(--paper) 0%, var(--cream) 100%); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); text-align: center; position: relative; overflow: hidden; }
.verdict::before { content: ''; position: absolute; top: -40px; right: -40px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(255, 122, 182, 0.2), transparent 70%); border-radius: 50%; }
.verdict-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cherry); font-weight: 500; margin-bottom: 20px; position: relative; }
.verdict-rating { font-size: 36px; margin-bottom: 16px; letter-spacing: 4px; position: relative; }
.verdict-rating .star { color: var(--cherry); filter: drop-shadow(0 2px 6px rgba(233, 30, 99, 0.4)); }
.verdict-meta { display: flex; justify-content: center; gap: 32px; margin: 20px 0 28px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cherry-deep); position: relative; }
.verdict-meta-item { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.verdict-meta-item strong { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); text-transform: none; letter-spacing: 0; font-style: italic; }
.verdict-final { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink); max-width: 560px; margin: 0 auto 18px; position: relative; }
.verdict-kicker { font-family: var(--serif); font-style: italic; font-size: 24px; font-weight: 500; color: var(--cherry); margin-top: 12px; position: relative; }

.signoff { margin: 32px 0 0; text-align: center; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--cherry-deep); }
.signoff-name { display: block; margin-top: 6px; font-style: normal; font-weight: 500; font-size: 18px; color: var(--ink); letter-spacing: 0.04em; }

/* ── Post pager (single unified prev/next nav at article bottom) ── */
.post-pager {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.post-pager-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  background: linear-gradient(150deg, rgba(233, 30, 99, 0.06) 0%, rgba(255, 255, 255, 0.5) 60%, rgba(233, 30, 99, 0.03) 100%);
  border: 1px solid rgba(233, 30, 99, 0.18);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
a.post-pager-item:hover {
  transform: translateY(-2px);
  border-color: var(--cherry);
  background: linear-gradient(150deg, rgba(233, 30, 99, 0.12) 0%, rgba(255, 255, 255, 0.55) 60%, rgba(233, 30, 99, 0.06) 100%);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.16), 0 0 28px rgba(233, 30, 99, 0.12);
}
.post-pager-item.is-pending { opacity: 0.62; cursor: default; }
.post-pager-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cherry);
  font-weight: 500;
}
.post-pager-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 500;
  color: var(--ink);
}
.post-pager-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cherry-deep);
}
.post-pager-prev { text-align: left; }
.post-pager-next { text-align: left; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
article > * { animation: fadeUp 0.6s ease-out backwards; will-change: opacity, transform; }
article > *:nth-child(1) { animation-delay: 0.05s; }
article > *:nth-child(2) { animation-delay: 0.12s; }
article > *:nth-child(3) { animation-delay: 0.19s; }
article > *:nth-child(4) { animation-delay: 0.26s; }
article > *:nth-child(5) { animation-delay: 0.33s; }

@media (prefers-reduced-motion: reduce) {
  article > * { animation: none; will-change: auto; }
  .waveform-divider .bar { animation: none; opacity: 0.6; }
}

@media (max-width: 640px) {
  article { padding: 24px 22px 80px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .subtitle { font-size: 19px; }
  .verdict { padding: 36px 24px; }
  .verdict-final { font-size: 19px; }
  body { font-size: 16px; background-attachment: scroll; }
}

#canopy-glass {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100vw - 40px), 1160px);
  height: 100%;
  background: linear-gradient(90deg, rgba(10,4,8,0) 0%, rgba(196,30,58,.045) 20%, rgba(212,175,55,.09) 50%, rgba(196,30,58,.045) 80%, rgba(10,4,8,0) 100%);
  border-left: 1px solid rgba(212,175,55,.07);
  border-right: 1px solid rgba(212,175,55,.07);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) { #canopy-glass { display: none; } }
/* ── Footer ── */
footer {
  background: #090308;
  border-top: 1px solid #1a0a10;
  padding: 2.5rem 3rem 2rem;
  text-align: center;
}
.footer-logo-img { width: 44px; height: auto; margin: 0 auto 0.6rem; display: block; opacity: 0.8; filter: drop-shadow(0 0 6px rgba(212,175,55,0.2)); }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: #dde6f4; margin-bottom: 0.4rem; }
.footer-logo span { color: #D4AF37; }
.footer-tagline { font-size: 0.78rem; color: #7a6570; font-style: italic; margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: #7a6570; text-decoration: none; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s ease; }
.footer-links a:hover { color: #D4AF37; }
.footer-coffee-link { color: #f4b400 !important; }
.footer-coffee-link:hover { color: #D4AF37 !important; }
.footer-bottom { font-size: 0.7rem; color: #7a6570; border-top: 1px solid #1a0a10; padding-top: 1.2rem; }
.copyright-disclaimer { font-size: 0.68rem; color: #7a6570; font-style: italic; margin: 1rem auto 1.5rem; max-width: 560px; line-height: 1.6; }
@media (max-width: 768px) {
  article { padding: 40px 20px 80px; }
  footer { padding: 2.5rem 1.25rem 2rem; padding-right: 70px; }
}

/* ── Back to Top ─────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff8f5;
  color: #0A0A0F;
  border: 1px solid rgba(233, 30, 99, 0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(80, 0, 0, 0.2);
  transition: opacity 0.25s, transform 0.25s, border-color 0.2s, color 0.2s;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { border-color: var(--cherry); color: var(--cherry); }
.back-to-top svg { width: 18px; height: 18px; }


/* ── SIDE DOCK ── */
.side-dock { position: fixed; right: 1.25rem; top: 50%; transform: translateY(-50%); z-index: 1000; display: flex; flex-direction: column; gap: 0.4rem; background: rgba(4,6,14,0.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(26,127,168,0.22); border-radius: 18px; padding: 0.65rem 0.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.04), 0 0 28px rgba(0,200,150,0.05); }
.dock-item { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; text-decoration: none; color: rgba(139,160,180,0.65); transform-origin: right center; transition: color 0.22s ease, background 0.22s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease; outline: none; }
.dock-item::before { content: ''; position: absolute; inset: 0; border-radius: 12px; background: radial-gradient(ellipse at center, rgba(0,200,150,0.26) 0%, transparent 72%); opacity: 0; transition: opacity 0.25s ease; }
.dock-item:hover::before, .dock-item.active::before { opacity: 1; }
.dock-item:hover { color: #00c896; background: rgba(0,200,150,0.1); transform: scale(1.18); box-shadow: 0 0 22px rgba(0,200,150,0.48), 0 0 9px rgba(0,200,150,0.3), 0 4px 14px rgba(0,0,0,0.32); }
.dock-item:focus-visible { outline: 2px solid #00c896; outline-offset: 2px; }
.dock-item.active { color: #00c896; background: rgba(0,200,150,0.08); box-shadow: 0 0 12px rgba(0,200,150,0.22); }
.dock-item.active::after { content: ''; position: absolute; left: 50%; bottom: 3px; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: #00c896; box-shadow: 0 0 7px rgba(0,200,150,0.9); }
.dock-icon { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.dock-label { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%) translateX(8px); background: rgba(4,6,14,0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #dde6f4; font-family: 'Inter', system-ui, sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.26rem 0.62rem; border-radius: 6px; border: 1px solid rgba(26,127,168,0.28); white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.18s ease, transform 0.18s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.38); }
.dock-item:hover .dock-label { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 768px) {
  .side-dock { right: 0.55rem; padding: 0.5rem 0.35rem; gap: 0.3rem; border-radius: 14px; }
  .dock-item { width: 36px; height: 36px; border-radius: 10px; }
  .dock-item:hover { transform: scale(1.1); }
  .dock-icon { width: 17px; height: 17px; }
  .dock-label { display: none; }
  .dock-item.active::after { width: 3px; height: 3px; bottom: 2px; }
}
@media (hover: none) and (pointer: coarse) {
  .dock-item:hover { transform: none; box-shadow: none; background: none; }
  .dock-item:hover::before { opacity: 0; }
}
nav, article, main, header, footer { position: relative; z-index: 1; }

/* Extracted from inline style= attributes */
.xs-8354e9b3 { text-decoration: none; }
