/* =============================================
   DAZINGDAWN — DAWN KULT EDITION
   Cyberpunk · Neon Purple · Nocturnal City
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel+Decorative:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ── ROOT VARIABLES ── */
:root {
  /* Core palette from artwork */
  --dw-void:        #050205;
  --dw-deep:        #0B0710;
  --dw-shadow:      #120A18;
  --dw-dark-purple: #1A0B24;
  --dw-mid-purple:  #230F33;

  /* Neon accents */
  --dw-neon:        #D84DFF;
  --dw-neon-hot:    #F06CFF;
  --dw-neon-white:  #FF7AE8;
  --dw-violet:      #8A3DFF;
  --dw-violet-deep: #6F2BFF;
  --dw-magenta:     #C72CFF;
  --dw-pink-soft:   #E8A8FF;

  /* Text */
  --dw-bright:      #F9EEFF;
  --dw-smoke:       rgba(232,168,255,.55);
  --dw-dim:         rgba(180,120,220,.35);

  /* Fonts */
  --font-display:   'Bebas Neue', 'Orbitron', sans-serif;
  --font-sub:       'Orbitron', sans-serif;
  --font-body:      'Rajdhani', sans-serif;
  --font-mono:      'Space Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ════════════════════════════════════════
   VAULT INTRO — DAWN KULT
   Dark panels slide apart on enter
   ════════════════════════════════════════ */
.sv-vault {
  position: fixed; inset: 0; z-index: 50000;
  pointer-events: all;
  overflow: hidden;
}
body.sv-vault-open { overflow: hidden; }

.sv-vault-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 60%,
      rgba(110,43,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 40%,
      rgba(200,60,255,.12) 0%, transparent 55%),
    linear-gradient(180deg, #0b0710 0%, #050205 50%, #0d0618 100%);
}

/* City grid scan line on bg */
.sv-vault-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg,
      transparent 0px, transparent 38px,
      rgba(216,77,255,.03) 38px, rgba(216,77,255,.03) 39px);
  pointer-events: none;
}

/* ── VAULT DOORS ── */
.sv-vault-door {
  position: absolute; top: 0; bottom: 0;
  width: 50.5%;
  background:
    repeating-linear-gradient(90deg,
      rgba(216,77,255,.025) 0px, rgba(216,77,255,.025) 1px,
      transparent 1px, transparent 55px),
    repeating-linear-gradient(0deg,
      rgba(216,77,255,.025) 0px, rgba(216,77,255,.025) 1px,
      transparent 1px, transparent 55px),
    linear-gradient(180deg,
      #130920 0%, #0d0618 30%, #090514 60%, #130920 100%);
  border: 1px solid rgba(216,77,255,.15);
  transition: transform 1.05s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.sv-vault-left  { left: 0; border-right: none; }
.sv-vault-right { right: 0; border-left: none; }

.sv-vault-door::before {
  content: '';
  position: absolute; inset: 18px;
  border: 1px solid rgba(216,77,255,.08);
  box-shadow: inset 0 0 50px rgba(0,0,0,.6);
}
.sv-vault-door::after {
  content: '';
  position: absolute; inset: 36px;
  border: 1px solid rgba(216,77,255,.04);
}

/* Bolts */
.sv-vault-bolts {
  position: absolute; left: 16px; top: 0; bottom: 0;
  display: flex; flex-direction: column;
  justify-content: space-evenly; align-items: center;
  width: 20px;
}
.sv-bolts-right { left: auto; right: 16px; }
.sv-bolt {
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    #e070ff 0%, #a030d0 35%, #5a0a80 70%, #2a0540 100%);
  box-shadow:
    0 0 8px rgba(216,77,255,.5),
    inset 0 1px 2px rgba(255,255,255,.25),
    inset 0 -1px 2px rgba(0,0,0,.5);
  transition: box-shadow .3s;
}

/* Gear wheel */
.sv-vault-gear {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
}
.sv-gear-inner {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 40% 38%,
    #2a1040 0%, #180a28 50%, #0d0618 100%);
  border: 3px solid rgba(216,77,255,.35);
  box-shadow:
    0 0 0 8px rgba(216,77,255,.06),
    0 0 35px rgba(216,77,255,.18),
    inset 0 0 25px rgba(0,0,0,.7);
  animation: svGearSpin 8s linear infinite;
}
@keyframes svGearSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sv-gear-spoke {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 2.5px;
  background: linear-gradient(90deg,
    transparent 8%, rgba(216,77,255,.2) 20%,
    rgba(216,77,255,.4) 50%,
    rgba(216,77,255,.2) 80%, transparent 92%);
  transform-origin: 0 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 22.5deg));
  border-radius: 2px;
}
.sv-gear-spoke:nth-child(1) { --i: 0; }
.sv-gear-spoke:nth-child(2) { --i: 1; }
.sv-gear-spoke:nth-child(3) { --i: 2; }
.sv-gear-spoke:nth-child(4) { --i: 3; }
.sv-gear-spoke:nth-child(5) { --i: 4; }
.sv-gear-spoke:nth-child(6) { --i: 5; }
.sv-gear-spoke:nth-child(7) { --i: 6; }
.sv-gear-spoke:nth-child(8) { --i: 7; }
.sv-gear-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 38% 36%,
    #3a1050 0%, #200838 60%, #0d0618 100%);
  border: 2px solid rgba(216,77,255,.5);
  box-shadow: 0 0 20px rgba(216,77,255,.35), inset 0 0 10px rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  color: rgba(216,77,255,.85); font-size: 1.1rem;
  z-index: 2;
  transition: color .5s, box-shadow .5s;
}
.sv-vault.sv-unlocking .sv-gear-center {
  color: #f06cff;
  box-shadow: 0 0 35px rgba(216,77,255,.85), inset 0 0 12px rgba(138,61,255,.25);
}
.sv-vault.sv-unlocking .sv-gear-inner {
  animation: svGearSpinFast .35s linear infinite;
}
@keyframes svGearSpinFast {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Locking bars */
.sv-vault-bar {
  position: absolute; right: -8px;
  height: 9px; width: 26px;
  background: linear-gradient(90deg,
    #120a1e, #5a1a8a, #d84dff, #5a1a8a, #120a1e);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(216,77,255,.3);
  transition: transform .6s cubic-bezier(0.76, 0, 0.24, 1);
}
.sv-vault-right .sv-vault-bar { right: auto; left: -8px; }
.sv-bar-1 { top: 25%; }
.sv-bar-2 { top: 50%; transform: translateY(-50%); }
.sv-bar-3 { bottom: 25%; }
.sv-vault.sv-unlocking .sv-vault-left .sv-vault-bar  { transform: translateX(-30px); }
.sv-vault.sv-unlocking .sv-vault-right .sv-vault-bar { transform: translateX(30px); }
.sv-vault.sv-unlocking .sv-vault-right .sv-bar-2     { transform: translateY(-50%) translateX(30px); }
.sv-vault.sv-unlocking .sv-vault-left  .sv-bar-2     { transform: translateY(-50%) translateX(-30px); }

/* Seam edge light */
.sv-vault-seam {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(216,77,255,.2) 20%,
    rgba(216,77,255,.1) 50%,
    rgba(216,77,255,.2) 80%,
    transparent 100%);
}
.sv-seam-right { right: auto; left: 0; }

/* Scanning beam */
.sv-vault-scan {
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(216,77,255,.05) 20%,
    rgba(240,108,255,.6) 50%,
    rgba(216,77,255,.05) 80%, transparent 100%);
  filter: blur(.5px);
  animation: svScanDown 3.5s cubic-bezier(0.45,0,0.55,1) infinite;
  pointer-events: none; z-index: 3;
}
@keyframes svScanDown {
  0%   { top: 2%;  opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: .6; }
  100% { top: 98%; opacity: 0; }
}

/* Center crack of neon light */
.sv-vault-crack {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(216,77,255,.0) 5%,
    rgba(240,108,255,.45) 30%,
    rgba(255,122,232,.7) 50%,
    rgba(240,108,255,.45) 70%,
    rgba(216,77,255,.0) 95%,
    transparent 100%);
  filter: blur(1px);
  pointer-events: none;
  animation: svCrackPulse 2s ease-in-out infinite alternate;
}
@keyframes svCrackPulse {
  from { opacity: .25; }
  to   { opacity: 1; filter: blur(.5px); }
}

/* Neon arc sweep behind vault (the comet trail feel) */
.sv-vault-arc {
  position: absolute;
  bottom: -20%; left: -15%;
  width: 130%; height: 130%;
  border-radius: 50%;
  border: 2px solid transparent;
  background: conic-gradient(
    from 200deg,
    transparent 0deg,
    rgba(216,77,255,.0) 40deg,
    rgba(216,77,255,.35) 70deg,
    rgba(255,122,232,.55) 85deg,
    rgba(216,77,255,.35) 100deg,
    rgba(216,77,255,.0) 130deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(transparent 60%, black 61%);
  mask: radial-gradient(transparent 60%, black 61%);
  pointer-events: none;
  animation: svArcSpin 12s linear infinite;
  filter: blur(1.5px);
}
@keyframes svArcSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Vault text */
.sv-vault-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 2; pointer-events: none;
  text-align: center;
}
.sv-vault-label {
  font-family: var(--font-mono); font-size: .52rem;
  letter-spacing: .48em; text-transform: uppercase;
  color: rgba(216,77,255,.45); margin-bottom: 18px;
}
.sv-vault-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  font-weight: 900; letter-spacing: .14em;
  background: linear-gradient(145deg,
    #6f2bff 0%, #a030d0 18%, #d84dff 38%,
    #f06cff 55%, #ff7ae8 68%, #f06cff 80%, #a030d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 35px rgba(216,77,255,.75));
  animation: svNameGlow 2.8s ease-in-out infinite alternate;
  margin-bottom: 8px;
  line-height: 1;
  font-style: italic;
}
@keyframes svNameGlow {
  from { filter: drop-shadow(0 0 22px rgba(216,77,255,.5)); }
  to   { filter: drop-shadow(0 0 60px rgba(240,108,255,.95)) drop-shadow(0 0 120px rgba(216,77,255,.3)); }
}
/* Japanese subtitle style */
.sv-vault-jp {
  font-family: var(--font-mono); font-size: .6rem;
  color: rgba(216,77,255,.55);
  letter-spacing: .3em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.sv-vault-jp::before, .sv-vault-jp::after {
  content: '';
  display: block; width: 40px; height: 1px;
  background: rgba(216,77,255,.35);
}
.sv-vault-sub {
  font-family: var(--font-mono); font-size: .52rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(180,120,220,.45); margin-bottom: 44px;
}

/* Enter button */
.sv-vault-enter {
  position: relative; pointer-events: all;
  font-family: var(--font-sub); font-size: .62rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(240,108,255,.9); cursor: pointer;
  padding: 13px 38px;
  border: 1px solid rgba(216,77,255,.4);
  background: rgba(5,2,5,.65);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 12px;
  animation: svEnterPulse 2.5s ease-in-out infinite alternate;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.sv-vault-enter:hover {
  color: #ff7ae8;
  border-color: rgba(240,108,255,.75);
  box-shadow: 0 0 35px rgba(216,77,255,.4), 0 0 80px rgba(216,77,255,.12);
}
@keyframes svEnterPulse {
  from { box-shadow: 0 0 12px rgba(216,77,255,.18); }
  to   { box-shadow: 0 0 32px rgba(216,77,255,.55), 0 0 70px rgba(216,77,255,.12); }
}
.sv-vault-enter-ring {
  position: absolute; inset: -8px;
  border: 1px solid rgba(216,77,255,.22);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  animation: svRingExpand 2.5s ease-out infinite;
}
.sv-ring-2 { animation-delay: 1.25s; }
@keyframes svRingExpand {
  0%   { inset: -4px;  opacity: .6; }
  100% { inset: -20px; opacity: 0; }
}

/* Neon burst on open */
.sv-vault-burst {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,200,255,1)   0%,
    rgba(240,108,255,.92) 15%,
    rgba(216,77,255,.7)   32%,
    rgba(110,43,255,.3)   55%,
    transparent           72%);
  opacity: 0; pointer-events: none;
  transition: none;
}
.sv-vault-burst.sv-burst-fire {
  transition: width .5s ease-out, height .5s ease-out, opacity .45s ease-out;
  width: 230vmax; height: 230vmax; opacity: 1;
}

/* Door open */
.sv-vault.sv-open .sv-vault-left  { transform: translateX(-101%); }
.sv-vault.sv-open .sv-vault-right { transform: translateX(101%); }

/* Exit fade */
.sv-vault.sv-done {
  opacity: 0;
  transition: opacity .45s ease .15s;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 480px) {
  .sv-vault-gear { width: 90px; height: 90px; }
  .sv-vault-name { font-size: clamp(2rem, 12vw, 4rem); }
  .sv-vault-enter { padding: 11px 24px; font-size: .56rem; }
  .sv-bolt { width: 10px; height: 10px; }
  .sv-vault-bolts { left: 10px; }
  .sv-bolts-right { left: auto; right: 10px; }
}

/* ════════════════════════════════════════
   END VAULT CSS
   ════════════════════════════════════════ */

body.silas-body {
  background: var(--dw-void);
  color: var(--dw-bright);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ════════════════════════════════════════
   FIXED CANVASES
   ════════════════════════════════════════ */
#silasStars {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ════════════════════════════════════════
   NOISE GRAIN OVERLAY
   ════════════════════════════════════════ */
.sv-noise {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: svNoiseAnim 0.08s steps(1) infinite;
}
@keyframes svNoiseAnim {
  0%   { background-position: 0 0; }
  25%  { background-position: -50px -25px; }
  50%  { background-position: 25px 50px; }
  75%  { background-position: -25px 75px; }
  100% { background-position: 50px -50px; }
}

/* ════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════ */
.sv-cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: #d84dff;
  border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 12px rgba(216,77,255,.9), 0 0 30px rgba(216,77,255,.4);
  transition: transform .08s ease, opacity .2s;
}
.sv-cursor-trail {
  position: fixed;
  width: 28px; height: 28px;
  border: 1px solid rgba(216,77,255,.45);
  border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: left .12s ease, top .12s ease;
}

/* ════════════════════════════════════════
   BACK NAV
   ════════════════════════════════════════ */
.sv-back {
  position: fixed; top: 24px; left: 28px;
  z-index: 1000;
  font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(216,77,255,.6);
  display: flex; align-items: center; gap: 8px;
  transition: color .25s;
}
.sv-back:hover { color: #f06cff; }

/* ════════════════════════════════════════
   HERO — DAWN KULT
   ════════════════════════════════════════ */
.sv-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  z-index: 2;
}

/* Full-bleed artwork */
.sv-hero-img {
  position: absolute; inset: 0;
  background-image: url('../images/dazingdawn-cover.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.06);
  transition: transform .1s ease-out;
  will-change: transform;
}

/* Multi-layer overlay */
.sv-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(5,2,5,.85) 0%,
      rgba(18,10,24,.6) 40%,
      rgba(10,4,16,.2) 70%,
      transparent 100%),
    linear-gradient(to top,
      rgba(5,2,5,.98) 0%,
      rgba(5,2,5,.7)  20%,
      rgba(5,2,5,.2)  55%,
      transparent     80%);
}

/* The neon arc (comet trail from artwork) */
.sv-neon-arc {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 85%;
  height: 90%;
  border-radius: 50%;
  border: 2.5px solid transparent;
  background: conic-gradient(
    from 195deg,
    transparent 0deg,
    rgba(216,77,255,.0) 30deg,
    rgba(216,77,255,.5) 58deg,
    rgba(255,122,232,.85) 72deg,
    rgba(216,77,255,.5) 86deg,
    rgba(216,77,255,.0) 120deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(transparent 62%, black 63%);
  mask: radial-gradient(transparent 62%, black 63%);
  filter: blur(1.5px);
  pointer-events: none;
  animation: svArcDrift 18s ease-in-out infinite alternate;
  z-index: 1;
}
/* Secondary softer arc */
.sv-neon-arc-2 {
  position: absolute;
  bottom: -25%;
  left: -5%;
  width: 75%;
  height: 80%;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: conic-gradient(
    from 200deg,
    transparent 0deg,
    rgba(138,61,255,.0) 40deg,
    rgba(138,61,255,.35) 68deg,
    rgba(200,100,255,.5) 80deg,
    rgba(138,61,255,.35) 92deg,
    rgba(138,61,255,.0) 125deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(transparent 60%, black 61%);
  mask: radial-gradient(transparent 60%, black 61%);
  filter: blur(3px);
  pointer-events: none;
  animation: svArcDrift 22s ease-in-out infinite alternate-reverse;
  z-index: 1;
}
@keyframes svArcDrift {
  from { transform: rotate(-4deg) scaleX(.97); }
  to   { transform: rotate(4deg)  scaleX(1.03); }
}

/* Neon glow orb (matches the small purple orb in artwork) */
.sv-neon-orb {
  position: absolute;
  top: 38%; right: 32%;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(216,77,255,.9) 0%,
    rgba(138,61,255,.5) 40%,
    transparent 70%);
  filter: blur(12px);
  animation: svOrbPulse 3s ease-in-out infinite alternate;
  pointer-events: none; z-index: 1;
}
@keyframes svOrbPulse {
  from { transform: scale(1); opacity: .6; }
  to   { transform: scale(1.4); opacity: 1; }
}

/* Hero content */
.sv-hero-content {
  position: relative; z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px 100px;
  width: 100%;
}

.sv-hero-label {
  font-family: var(--font-mono); font-size: .52rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: rgba(216,77,255,.5); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.sv-hero-label::before {
  content: ''; display: block; width: 22px; height: 1px;
  background: rgba(216,77,255,.4);
}

.sv-hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .06em;
  font-style: italic;
  background: linear-gradient(145deg,
    #6f2bff 0%, #a030d0 15%, #d84dff 32%,
    #f06cff 50%, #ff7ae8 64%, #f06cff 78%, #8a3dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(216,77,255,.75));
  animation: svHeroNameGlow 3s ease-in-out infinite alternate;
  margin-bottom: 6px;
}
@keyframes svHeroNameGlow {
  from { filter: drop-shadow(0 0 28px rgba(216,77,255,.55)); }
  to   { filter: drop-shadow(0 0 65px rgba(240,108,255,.95)) drop-shadow(0 0 130px rgba(216,77,255,.35)); }
}

/* Japanese text line under name */
.sv-hero-jp {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: rgba(216,77,255,.5);
  letter-spacing: .35em;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 16px;
}
.sv-hero-jp::before, .sv-hero-jp::after {
  content: ''; display: block; flex: 0 0 50px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,77,255,.4), transparent);
}

/* Role ornament */
.sv-ornament {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.sv-ornament-inner {
  font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(180,120,220,.6);
  border-left: 2px solid rgba(216,77,255,.4);
  padding-left: 12px;
}

/* Role tags */
.sv-hero-roles {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 26px;
}
.sv-role-tag {
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(216,77,255,.75);
  border: 1px solid rgba(216,77,255,.22);
  padding: 5px 14px;
  background: rgba(216,77,255,.05);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.sv-hero-quote {
  font-family: var(--font-body); font-size: 1rem;
  color: rgba(232,168,255,.55);
  border-left: 2px solid rgba(216,77,255,.35);
  padding-left: 16px;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-style: italic;
}

/* CTA buttons */
.sv-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.sv-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sub); font-size: .58rem;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 14px 32px;
  border: none; cursor: pointer;
  transition: all .3s;
  position: relative;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.sv-btn-gold {
  background: linear-gradient(135deg,
    #6f2bff 0%, #a030d0 40%, #d84dff 70%, #f06cff 100%);
  color: #fff0ff;
  box-shadow: 0 0 28px rgba(216,77,255,.45), 0 4px 20px rgba(110,43,255,.3);
}
.sv-btn-gold:hover {
  box-shadow: 0 0 45px rgba(216,77,255,.7), 0 4px 30px rgba(216,77,255,.4);
  transform: translateY(-2px);
}
.sv-btn-ghost {
  background: rgba(216,77,255,.06);
  color: rgba(240,108,255,.85);
  border: 1px solid rgba(216,77,255,.35);
  backdrop-filter: blur(8px);
}
.sv-btn-ghost:hover {
  background: rgba(216,77,255,.14);
  border-color: rgba(240,108,255,.65);
  color: #ff7ae8;
  box-shadow: 0 0 28px rgba(216,77,255,.25);
}

/* Scroll indicator */
.sv-scroll {
  position: absolute; bottom: 36px; right: 56px;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  z-index: 3;
}
.sv-scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, rgba(216,77,255,.6), transparent);
  animation: svScrollLine 2s ease-in-out infinite;
}
@keyframes svScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.sv-scroll-label {
  font-family: var(--font-mono); font-size: .42rem;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(216,77,255,.35);
  writing-mode: vertical-rl;
}

/* ════════════════════════════════════════
   SECTION BASE
   ════════════════════════════════════════ */
.sv-section {
  position: relative; z-index: 2;
  padding: 100px 0;
}
.sv-section-dark {
  background: linear-gradient(180deg,
    rgba(18,10,24,.6) 0%, rgba(12,6,18,.8) 100%);
}
.sv-section-deeper {
  background: rgba(8,4,12,.9);
}
.sv-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 768px) {
  .sv-container { padding: 0 24px; }
  .sv-hero-content { padding: 0 24px 80px; }
}

/* ── Separator ── */
.sv-sep {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(216,77,255,.0) 5%,
    rgba(216,77,255,.35) 30%,
    rgba(240,108,255,.55) 50%,
    rgba(216,77,255,.35) 70%,
    rgba(216,77,255,.0) 95%,
    transparent 100%);
  position: relative; z-index: 2;
  animation: svSepGlide 4s ease-in-out infinite alternate;
}
@keyframes svSepGlide {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

/* ── Labels & titles ── */
.sv-label {
  font-family: var(--font-mono); font-size: .52rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: rgba(216,77,255,.5);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.sv-label::before {
  content: ''; display: block; width: 18px; height: 1px;
  background: rgba(216,77,255,.4);
}
.sv-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: .06em; font-style: italic;
  line-height: 1.05;
  color: var(--dw-bright);
  margin-bottom: 56px;
}
.sv-section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #d84dff, #ff7ae8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll reveal ── */
.sv-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.sv-reveal.visible {
  opacity: 1; transform: none;
}

/* ════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════ */
.sv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .sv-about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Artwork frame */
.sv-artwork-frame {
  position: relative;
  border: 1px solid rgba(216,77,255,.2);
}
.sv-artwork-frame img {
  width: 100%;
  filter: brightness(.88) saturate(1.2);
}
/* Neon corner accents */
.sv-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(216,77,255,.7);
  border-style: solid;
}
.sv-corner-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.sv-corner-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.sv-corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.sv-corner-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
/* Glow behind artwork */
.sv-artwork-frame::after {
  content: '';
  position: absolute; inset: -20px; z-index: -1;
  background: radial-gradient(ellipse at center,
    rgba(216,77,255,.18) 0%, transparent 65%);
  pointer-events: none;
}

.sv-artwork-badge {
  font-family: var(--font-mono); font-size: .48rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(216,77,255,.55);
  border-top: 1px solid rgba(216,77,255,.18);
  padding: 12px 16px;
  text-align: center;
  background: rgba(216,77,255,.04);
}

/* About text */
.sv-about-text p {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(232,168,255,.65);
  margin-bottom: 20px;
}
.sv-about-text strong { color: #f06cff; font-weight: 600; }
.sv-about-text em { color: rgba(240,108,255,.8); font-style: italic; }

/* Stats */
.sv-stats {
  display: flex; gap: 40px; margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(216,77,255,.14);
}
.sv-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem; font-style: italic;
  background: linear-gradient(135deg, #d84dff, #ff7ae8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.sv-stat-lbl {
  font-family: var(--font-mono); font-size: .47rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(180,120,220,.45);
}

/* ════════════════════════════════════════
   QUOTE BLOCK
   ════════════════════════════════════════ */
.sv-quote-block {
  position: relative; z-index: 2;
  padding: 90px 0;
  background: linear-gradient(135deg,
    rgba(110,43,255,.06) 0%, rgba(5,2,5,.0) 50%,
    rgba(200,44,255,.04) 100%);
  overflow: hidden;
}
.sv-quote-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(216,77,255,.35) 30%,
    rgba(240,108,255,.55) 50%,
    rgba(216,77,255,.35) 70%, transparent);
}
.sv-quote-block::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(216,77,255,.35) 30%,
    rgba(240,108,255,.55) 50%,
    rgba(216,77,255,.35) 70%, transparent);
}
.sv-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem; font-style: italic;
  color: rgba(216,77,255,.08);
  line-height: .7;
  position: absolute; top: 20px; left: 44px;
  pointer-events: none;
}
.sv-big-quote {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(232,168,255,.75);
  margin-bottom: 22px;
}
.sv-glow {
  background: linear-gradient(135deg, #d84dff, #ff7ae8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(216,77,255,.5));
}
.sv-quote-ornament {
  margin: 14px 0;
}
.sv-quote-attr {
  font-family: var(--font-mono); font-size: .52rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(216,77,255,.4);
}

/* ════════════════════════════════════════
   TRACK LIST / MUSIC
   ════════════════════════════════════════ */
.sv-player-embed {
  background: rgba(18,10,24,.7);
  border: 1px solid rgba(216,77,255,.15);
  padding: 28px;
  margin-bottom: 20px;
  position: relative;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.sv-player-label {
  font-family: var(--font-mono); font-size: .48rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(216,77,255,.45); text-align: center;
  margin-bottom: 22px;
}

/* Audio player */
.sv-audio-player {
  background: rgba(12,6,18,.8);
  border: 1px solid rgba(216,77,255,.18);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.sv-audio-player::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(216,77,255,.6) 30%, rgba(240,108,255,.8) 50%,
    rgba(216,77,255,.6) 70%, transparent);
}
.sv-ap-now-playing {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-mono); font-size: .46rem;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(216,77,255,.5);
}
.sv-ap-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #d84dff;
  box-shadow: 0 0 8px rgba(216,77,255,.8);
  animation: svDotPulse 1s ease-in-out infinite alternate;
}
@keyframes svDotPulse {
  from { opacity: .5; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1.2); box-shadow: 0 0 16px rgba(216,77,255,1); }
}
.sv-ap-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 22px;
}
.sv-ap-cover {
  position: relative; width: 70px; height: 70px; flex-shrink: 0;
}
.sv-ap-cover img {
  width: 100%; height: 100%; object-fit: cover;
  border: 1px solid rgba(216,77,255,.3);
}
.sv-ap-cover-ring {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(216,77,255,.35);
  animation: svCoverSpin 8s linear infinite;
}
@keyframes svCoverSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sv-ap-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-style: italic;
  color: var(--dw-bright); letter-spacing: .06em;
}
.sv-ap-artist {
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(216,77,255,.6);
}
.sv-ap-year {
  font-family: var(--font-mono); font-size: .44rem;
  color: rgba(180,120,220,.4); letter-spacing: .15em;
}

/* Waveform */
.sv-ap-waveform {
  display: flex; align-items: flex-end; gap: 3px;
  height: 44px; margin-bottom: 18px;
  overflow: hidden;
}
.sv-ap-bar {
  flex: 1; border-radius: 1px;
  background: rgba(216,77,255,.35);
  transition: height .1s ease, background .2s;
  min-height: 3px;
}
.sv-audio-player.playing .sv-ap-bar {
  background: linear-gradient(to top, #6f2bff, #d84dff, #f06cff);
}

/* Progress */
.sv-ap-progress-wrap { margin-bottom: 18px; }
.sv-ap-progress-bg {
  height: 3px; background: rgba(216,77,255,.12);
  border-radius: 2px; cursor: pointer;
  position: relative; overflow: visible;
}
.sv-ap-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #6f2bff, #d84dff, #f06cff);
  border-radius: 2px; position: relative;
  transition: width .25s linear;
}
.sv-ap-progress-fill::after {
  content: ''; position: absolute;
  right: -5px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: #f06cff;
  box-shadow: 0 0 10px rgba(240,108,255,.9);
}
.sv-ap-times {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-mono); font-size: .44rem;
  color: rgba(180,120,220,.5); letter-spacing: .12em;
}

/* Controls */
.sv-ap-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 18px;
}
.sv-ap-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(216,77,255,.6); font-size: .95rem;
  padding: 8px; transition: color .2s, transform .15s;
}
.sv-ap-btn:hover { color: #f06cff; transform: scale(1.15); }
.sv-ap-play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #6f2bff, #d84dff);
  border: none; cursor: pointer; color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 22px rgba(216,77,255,.5);
  transition: box-shadow .2s, transform .15s;
}
.sv-ap-play-btn:hover {
  box-shadow: 0 0 40px rgba(216,77,255,.8);
  transform: scale(1.08);
}
.sv-ap-vol-wrap {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem;
}
.sv-ap-vol-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(216,77,255,.55); font-size: .9rem;
  transition: color .2s;
}
.sv-ap-vol-btn:hover { color: #f06cff; }
.sv-ap-vol-slider {
  -webkit-appearance: none;
  width: 70px; height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #d84dff var(--vol, 80%), rgba(216,77,255,.15) var(--vol, 80%));
  outline: none; cursor: pointer;
}
.sv-ap-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: #d84dff;
  box-shadow: 0 0 8px rgba(216,77,255,.8);
}

/* Track list */
.sv-track {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(216,77,255,.1);
  margin-bottom: 10px;
  background: rgba(18,10,24,.5);
  cursor: pointer;
  transition: background .25s, border-color .25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.sv-track:hover {
  background: rgba(216,77,255,.08);
  border-color: rgba(216,77,255,.3);
}
.sv-track.active {
  background: rgba(216,77,255,.1);
  border-color: rgba(240,108,255,.45);
}
.sv-track.locked { cursor: default; opacity: .5; }
.sv-track-num {
  font-family: var(--font-mono); font-size: .5rem;
  color: rgba(216,77,255,.4); width: 20px; text-align: center;
}
.sv-track-title {
  font-family: var(--font-sub); font-size: .75rem;
  letter-spacing: .14em; color: var(--dw-bright);
  flex: 1;
}
.sv-track-feat {
  font-family: var(--font-mono); font-size: .45rem;
  color: rgba(216,77,255,.5);
}
.sv-track-tags { display: flex; gap: 6px; }
.sv-tag {
  font-family: var(--font-mono); font-size: .4rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(216,77,255,.6);
  border: 1px solid rgba(216,77,255,.2);
  padding: 3px 8px;
}
.sv-track-duration {
  font-family: var(--font-mono); font-size: .48rem;
  color: rgba(180,120,220,.4);
}

/* ════════════════════════════════════════
   CRAFT GRID
   ════════════════════════════════════════ */
.sv-craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.sv-craft-card {
  background: rgba(18,10,24,.6);
  border: 1px solid rgba(216,77,255,.12);
  padding: 32px 28px;
  transition: border-color .3s, background .3s, transform .3s;
  position: relative;
  overflow: hidden;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.sv-craft-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(216,77,255,.5) 50%, transparent);
  opacity: 0; transition: opacity .3s;
}
.sv-craft-card:hover {
  border-color: rgba(216,77,255,.35);
  background: rgba(216,77,255,.07);
  transform: translateY(-4px);
}
.sv-craft-card:hover::before { opacity: 1; }
.sv-craft-icon {
  width: 44px; height: 44px;
  background: rgba(216,77,255,.1);
  border: 1px solid rgba(216,77,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #d84dff; font-size: 1.1rem;
  margin-bottom: 18px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.sv-craft-card h4 {
  font-family: var(--font-sub); font-size: .75rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dw-bright); margin-bottom: 10px;
}
.sv-craft-card p {
  font-size: .9rem; line-height: 1.7;
  color: rgba(180,120,220,.55);
}

/* ════════════════════════════════════════
   CONNECT
   ════════════════════════════════════════ */
.sv-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
@media (max-width: 900px) {
  .sv-connect-grid { grid-template-columns: 1fr; gap: 48px; }
}
.sv-connect-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic; letter-spacing: .06em;
  color: var(--dw-bright); margin-bottom: 18px;
}
.sv-connect-copy h3 em {
  font-style: normal;
  background: linear-gradient(135deg, #d84dff, #ff7ae8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sv-connect-copy p {
  font-size: 1rem; line-height: 1.75;
  color: rgba(216,77,255,.5); margin-bottom: 28px;
}
.sv-socials {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.sv-social {
  width: 42px; height: 42px;
  border: 1px solid rgba(216,77,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(216,77,255,.7); font-size: 1rem;
  transition: all .25s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.sv-social:hover {
  background: rgba(216,77,255,.12);
  color: #f06cff;
  border-color: rgba(240,108,255,.55);
  box-shadow: 0 0 18px rgba(216,77,255,.3);
}
.sv-connect-link {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(216,77,255,.1);
  margin-bottom: 12px;
  background: rgba(18,10,24,.5);
  transition: all .25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.sv-connect-link:hover {
  background: rgba(216,77,255,.08);
  border-color: rgba(216,77,255,.3);
}
.sv-connect-link-icon {
  width: 36px; height: 36px;
  background: rgba(216,77,255,.1);
  border: 1px solid rgba(216,77,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #d84dff; font-size: .9rem; flex-shrink: 0;
}
.sv-connect-link-label {
  display: block;
  font-family: var(--font-mono); font-size: .46rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(216,77,255,.45);
}
.sv-connect-link-val {
  display: block;
  font-family: var(--font-body); font-size: .9rem;
  color: rgba(232,168,255,.75);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.sv-footer {
  position: relative; z-index: 2;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(216,77,255,.12);
  background: rgba(5,2,5,.95);
  text-align: center;
}
.sv-footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-style: italic;
  letter-spacing: .22em;
  color: rgba(216,77,255,.55);
  margin-bottom: 16px;
}
.sv-footer-logo span { color: rgba(240,108,255,.8); }
.sv-footer-copy {
  font-family: var(--font-mono); font-size: .46rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(180,120,220,.28);
  margin-bottom: 24px;
}
.sv-footer-links {
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.sv-footer-link {
  font-family: var(--font-mono); font-size: .48rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(216,77,255,.4);
  transition: color .25s;
}
.sv-footer-link:hover { color: #f06cff; }

/* ════════════════════════════════════════
   SPARK PARTICLES
   ════════════════════════════════════════ */
.sv-spark {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  animation: svSparkFade .5s ease forwards;
}
@keyframes svSparkFade {
  from { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  to   { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.2); }
}
