:root {
  --bg: #0a0a0a;
  --fg: #f4f4f0;
  --muted: #6b6b66;
  --accent: #ff2d2d;
  --lime: #d4ff3a;
  --pink: #ff5ebc;
  --cyan: #5ee5ff;
  --line: rgba(244, 244, 240, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: default;
}

/* dot grid texture (subtle) */
.dotgrid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(244,244,240,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}

/* grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  z-index: 50;
  mix-blend-mode: difference;
}
.nav__logo {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
}
.nav__links a {
  color: var(--fg);
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 0.5; }

/* hero */
.hero {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  perspective: 1200px;
  overflow: hidden;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
/* VERTICAL TICKER — text columns on the left side of the hero */
.hero__title {
  position: absolute;
  left: clamp(1.25rem, 4vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 2rem);
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  /* size caps by viewport HEIGHT first — 7 letters of REBECCA at 9.5vh ≈ 67vh,
     plus MUZE offset, leaves a safe ~25vh of breathing room */
  font-size: clamp(2.2rem, min(6vw, 9.5vh), 5.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}
.hero__title span {
  display: inline-block;
  transform-style: preserve-3d;
  position: relative;
  /* glass effect: hollow body, crisp light edge */
  color: rgba(255, 255, 255, 0.04);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  /* iridescent gradient catches the "light" — subtle */
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(180, 240, 255, 0.08) 35%,
    rgba(255, 255, 255, 0) 50%,
    rgba(230, 200, 255, 0.10) 70%,
    rgba(255, 255, 255, 0.20) 100%
  );
  background-size: 100% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  /* glow as if light is passing through glass */
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35))
          drop-shadow(0 0 28px rgba(120, 220, 255, 0.22))
          drop-shadow(0 0 50px rgba(255, 80, 180, 0.12));
  animation: holoShift 8s ease-in-out infinite;
}
.hero__title span:nth-child(2) {
  animation-delay: -2s;
  /* second line slightly different so they read as 2 distinct objects */
  -webkit-text-stroke: 1.5px rgba(212, 255, 58, 0.85); /* lime edge — ties to skull */
  text-stroke: 1.5px rgba(212, 255, 58, 0.85);
  filter: drop-shadow(0 0 14px rgba(212, 255, 58, 0.45))
          drop-shadow(0 0 30px rgba(212, 255, 58, 0.25));
}

/* glass refraction blur ghost behind each line */
.hero__title span::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  color: rgba(255, 255, 255, 0.06);
  filter: blur(18px);
  z-index: -1;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  pointer-events: none;
  animation: none;
}

/* per-letter glass tiles with 3D extrude depth */
.hero__title .letter {
  display: inline-block;
  position: relative;
  transform-origin: center center;
  will-change: transform, opacity;
  /* digital snap — no smooth transition, jumps stay crisp */
  transition: text-shadow 0.4s ease;
  /* 3D extrude effect via stacked offsets — depth into the page */
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.18),
    2px 2px 0 rgba(212, 255, 58, 0.18),
    3px 3px 0 rgba(212, 255, 58, 0.14),
    4px 4px 0 rgba(212, 255, 58, 0.10),
    5px 5px 0 rgba(255, 94, 188, 0.08),
    6px 6px 0 rgba(255, 94, 188, 0.06);
  transition: text-shadow 0.4s ease;
}
/* second line (MUZE / accent) — lime to pink extrude */
.hero__title span:nth-child(2) .letter {
  text-shadow:
    1px 1px 0 rgba(212, 255, 58, 0.35),
    2px 2px 0 rgba(212, 255, 58, 0.28),
    3px 3px 0 rgba(255, 255, 255, 0.18),
    4px 4px 0 rgba(255, 94, 188, 0.18),
    5px 5px 0 rgba(255, 94, 188, 0.12);
}
/* hover — letter pops forward */
.hero__title .letter:hover {
  text-shadow:
    2px 2px 0 rgba(212, 255, 58, 0.4),
    4px 4px 0 rgba(212, 255, 58, 0.3),
    6px 6px 0 rgba(255, 94, 188, 0.2),
    8px 8px 0 rgba(255, 94, 188, 0.15),
    10px 10px 0 rgba(94, 229, 255, 0.1);
}

/* hologram scan lines on text */
.hero__title span::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.25) 3px,
    rgba(0, 0, 0, 0.25) 4px
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: scan 4s linear infinite;
}

/* RGB chromatic split ghost on each line — pulses harder during glitches */
.hero__title span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(255, 60, 180, 0.4);
  -webkit-text-fill-color: rgba(255, 60, 180, 0.4);
  -webkit-text-stroke: 0;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: rgbSplit 3s steps(8) infinite;
}
@keyframes rgbSplit {
  0%   { transform: translate(0,0); opacity: 0.4; }
  10%  { transform: translate(-3px, 1px); opacity: 0.7; }
  20%  { transform: translate(2px, -1px); opacity: 0.5; }
  30%  { transform: translate(-1px, 2px); opacity: 0.6; }
  40%  { transform: translate(4px, 0); opacity: 0.8; }
  50%  { transform: translate(-2px, -2px); opacity: 0.5; }
  60%  { transform: translate(1px, 1px); opacity: 0.4; }
  70%  { transform: translate(0, 0); opacity: 0.3; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50%      { transform: translateY(-14px) rotateX(2deg) rotateY(-1deg); }
}
@keyframes holoShift {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 0% 100%; }
}
@keyframes scan {
  0%   { transform: translateY(-10%); }
  100% { transform: translateY(10%); }
}
@keyframes glitch {
  0%, 92%, 100% { transform: translate(0,0); opacity: 0.0; }
  93% { transform: translate(-3px, 1px); opacity: 0.7; }
  94% { transform: translate(3px, -1px); opacity: 0.5; }
  95% { transform: translate(-2px, 2px); opacity: 0.6; }
  96% { transform: translate(0,0); opacity: 0.0; }
}

/* (ambient blurred orbs removed — too soft/neutral, distracted from skull) */

.hero__meta, .hero__tag { position: relative; z-index: 2; }

/* particle canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* editorial vertical type on the right edge — chic magazine vibe */
.hero__edge {
  position: absolute;
  top: 50%;
  right: clamp(0.6rem, 1.4vw, 1.4rem);
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.6rem, 0.75vw, 0.78rem);
  letter-spacing: 0.32em;
  color: rgba(212, 255, 58, 0.55);
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 0 8px rgba(212, 255, 58, 0.25);
}

/* 3D hero object canvas — sits between particles and text */
.hero__3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* scan refresh sweep — softened */
.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(150, 230, 255, 0.0) 45%,
    rgba(150, 230, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.16) 50.2%,
    rgba(150, 230, 255, 0.08) 50.4%,
    transparent 55%,
    transparent 100%
  );
  mix-blend-mode: screen;
  opacity: 0.6;
  animation: sweep 10s linear infinite;
}
@keyframes sweep {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* reflection beneath text */
.hero__reflection {
  position: relative;
  z-index: 1;
  margin-top: -1rem;
  font-size: clamp(2.4rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  transform: scaleY(-1);
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}
.hero__reflection span {
  background: linear-gradient(180deg, rgba(180,240,255,0.9), rgba(255,180,220,0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__reflection span:nth-child(2) {
  align-self: center;
  font-style: italic;
  font-weight: 300;
}
/* old rule disabled — was polluting inner letter spans
.hero__title span:nth-child(2) {
  align-self: center;
  font-style: italic;
  font-weight: 300;
  position: relative;
} */
.hero__title--accent::after { display: none; } /* underline removed in halo mode */

/* ============================================================
   VERTICAL COLUMNS — REBECCA stacked, MUZE stacked, side by side
   IMPORTANT: > targets only the two outer word spans, not letters.
   ============================================================ */
.hero__title > span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* nuke prior glass styling */
  inset: auto;
  color: var(--fg);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  filter: none;
  animation: none;
  font-style: normal;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}
.hero__title > span::before,
.hero__title > span::after { display: none; }

/* REBECCA = first vertical column, white-ish */
.hero__title > span:nth-child(1) {
  color: var(--fg);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}
/* MUZE = second column, lime accent + slight editorial offset down */
.hero__title > span:nth-child(2) {
  color: var(--lime);
  margin-top: clamp(0.75rem, 2.2vh, 2rem);
  text-shadow: 0 0 14px rgba(212, 255, 58, 0.5),
               0 0 28px rgba(212, 255, 58, 0.25);
}

/* each letter sits in its own row of the column */
.hero__title .letter {
  position: relative;
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 700;
  font-size: inherit;
  line-height: 1;
  /* glitch state vars — small overlay only */
  --tx: 0px;
  --ty: 0px;
  --rot: 0deg;
  --skew: 0deg;
  --scale: 1;
  transform:
    translate(var(--tx), var(--ty))
    rotate(var(--rot))
    skewX(var(--skew))
    scale(var(--scale));
  transform-origin: center center;
  transition: text-shadow 0.4s ease;
  text-shadow: inherit;
}
.hero__title .letter:hover {
  text-shadow: 0 0 14px rgba(212, 255, 58, 0.85),
               0 0 30px rgba(212, 255, 58, 0.5);
}
.hero__tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__photo {
  position: absolute;
  right: 2rem;
  top: 30%;
  width: 200px;
  height: 280px;
  border: 1px solid var(--line);
  display: none; /* show when you add a real image */
}
.hero__photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
}

/* marquee — glass slice with lime edges */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 0;
  background: rgba(212, 255, 58, 0.04);
  border-top: 1px solid rgba(212, 255, 58, 0.4);
  border-bottom: 1px solid rgba(212, 255, 58, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  /* soft lime glow on edges */
  box-shadow:
    inset 0 1px 20px rgba(212, 255, 58, 0.08),
    0 0 30px rgba(212, 255, 58, 0.06);
}
.marquee__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  font-weight: 700;
  /* glass text — hollow with lime stroke */
  color: rgba(212, 255, 58, 0.15);
  -webkit-text-stroke: 1px rgba(212, 255, 58, 0.85);
  text-stroke: 1px rgba(212, 255, 58, 0.85);
  text-shadow: 0 0 12px rgba(212, 255, 58, 0.3);
  animation: scroll 35s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* sections */
.section {
  position: relative;
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

/* reusable lime vertical editorial edge text — matches .hero__edge */
.section__edge {
  position: absolute;
  top: 50%;
  right: clamp(0.4rem, 1vw, 1rem);
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.58rem, 0.72vw, 0.74rem);
  letter-spacing: 0.32em;
  color: rgba(212, 255, 58, 0.5);
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 0 8px rgba(212, 255, 58, 0.22);
  max-height: 80%;
  white-space: nowrap;
  overflow: hidden;
}
.section__num {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  text-transform: lowercase;
}

/* about */
.about__body {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 720px;
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 3rem;
}
.about__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  position: relative;
  z-index: 2;
}
.tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  text-transform: lowercase;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.tag--lime  { color: var(--lime);  box-shadow: 0 0 12px rgba(212,255,58,0.15); }
.tag--pink  { color: var(--pink);  box-shadow: 0 0 12px rgba(255,94,188,0.15); }
.tag--cyan  { color: var(--cyan);  box-shadow: 0 0 12px rgba(94,229,255,0.15); }
.tag--ghost { color: rgba(244,244,240,0.55); border-color: rgba(244,244,240,0.25); }
.tag:hover {
  background: currentColor;
  color: #000;
}
.tag--ghost:hover { background: rgba(244,244,240,0.85); color: #000; }

/* spotify + equalizer wrap */
.listen-wrap {
  position: relative;
  max-width: 720px;
}
.spotify {
  max-width: 720px;
  position: relative;
  z-index: 1;
  border-radius: 14px;
  padding: 1.5px; /* thin gap that lets the orbiting UV light show */
  background: #0a0a0a;
  overflow: hidden;
  isolation: isolate;
}
/* slow orbiting lime UV scanner around the spotify card */
.spotify::before {
  content: '';
  position: absolute;
  inset: -75%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 70%,
    rgba(212, 255, 58, 0.0) 78%,
    rgba(212, 255, 58, 0.85) 88%,
    #d4ff3a 92%,
    rgba(212, 255, 58, 0.85) 96%,
    transparent 100%
  );
  animation: spotify-uv 9s linear infinite;
  filter: blur(0.5px) drop-shadow(0 0 6px rgba(212,255,58,0.6));
  pointer-events: none;
}
.spotify iframe {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 12.5px;
}
@keyframes spotify-uv {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .spotify::before { animation: none; opacity: 0.4; }
}
.equalizer {
  display: block;
  width: 100%;
  height: 64px;
  opacity: 0.85;
}
.equalizer--top    { margin-bottom: 0.5rem; }
.equalizer--bottom { margin-top: 0.5rem; }
@media (max-width: 600px) {
  .equalizer { height: 44px; }
}

/* listen CTAs — the "feed the algorithm" funnel */
.listen__nudge {
  max-width: 720px;
  margin: 1.5rem 0 0.9rem;
  color: rgba(244, 244, 240, 0.62);
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.listen__nudge em {
  font-style: normal;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 10px rgba(212, 255, 58, 0.55);
}
.listen__actions {
  max-width: 720px;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.listen__actions .btn {
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.listen__actions .btn--ghost.is-copied {
  color: var(--lime);
  border-color: var(--lime);
}

/* socials */
.socials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.socials a {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--fg);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: -0.02em;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.socials a:hover {
  color: var(--accent);
  padding-left: 1rem;
}

/* the one and only — chic glass IG button */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.6rem 1.1rem 1.2rem;
  margin-top: 0.5rem;
  border: 1.5px solid rgba(212, 255, 58, 0.35);
  border-radius: 18px;
  background: rgba(212, 255, 58, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  color: var(--lime);
  position: relative;
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1.2),
              border-color 0.3s, background 0.3s, box-shadow 0.4s;
  box-shadow: 0 0 0 rgba(212, 255, 58, 0);
  overflow: hidden;
}
.ig-link::before {
  /* slow inner shine that drifts across the button */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 35%,
    rgba(212, 255, 58, 0.18) 50%,
    transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.9s ease;
  pointer-events: none;
}
.ig-link:hover {
  border-color: var(--lime);
  background: rgba(212, 255, 58, 0.08);
  transform: translateY(-3px);
  box-shadow:
    0 0 24px rgba(212, 255, 58, 0.45),
    0 0 60px rgba(212, 255, 58, 0.18);
}
.ig-link:hover::before {
  transform: translateX(100%);
}
.ig-link__icon {
  display: flex;
  width: 44px;
  height: 44px;
  color: var(--lime);
  filter: drop-shadow(0 0 8px rgba(212, 255, 58, 0.55));
  animation: ig-pulse 3.2s ease-in-out infinite;
  flex-shrink: 0;
}
.ig-link__icon svg {
  width: 100%;
  height: 100%;
}
.ig-link__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.1;
}
.ig-link__handle {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: var(--fg);
  letter-spacing: -0.01em;
}
.ig-link__sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.8;
}
@keyframes ig-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(212, 255, 58, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(212, 255, 58, 0.85));
    transform: scale(1.04);
  }
}
@media (max-width: 480px) {
  .ig-link { padding: 0.95rem 1.25rem 0.95rem 1rem; gap: 0.85rem; }
  .ig-link__icon { width: 38px; height: 38px; }
}

/* footer */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* sticker badges floating in hero */
.sticker {
  position: absolute;
  z-index: 4;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid #000;
  box-shadow: 3px 3px 0 #000;
  user-select: none;
  white-space: nowrap;
  animation: wobble 5s ease-in-out infinite;
}
.sticker--1 {
  background: var(--lime);
  color: #000;
  top: 18%;
  right: 6%;
  transform: rotate(8deg);
  animation-delay: 0s;
}
.sticker--2 {
  background: var(--pink);
  color: #000;
  bottom: 28%;
  left: 4%;
  transform: rotate(-6deg);
  animation-delay: -1.5s;
}
.sticker--3 {
  background: var(--cyan);
  color: #000;
  top: 45%;
  right: 12%;
  transform: rotate(-12deg);
  animation-delay: -3s;
}
@keyframes wobble {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-6px) rotate(var(--r, 0deg)); }
}
.sticker--1 { --r: 8deg; }
.sticker--2 { --r: -6deg; }
.sticker--3 { --r: -12deg; }

/* fancy section title with accent dot */
.section__title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__title .dot {
  color: var(--lime);
  display: inline-block;
  font-size: 1.2em;
  line-height: 0;
  vertical-align: baseline;
}

/* 3D ambient rings drifting in the about background */
.section--about {
  position: relative;
  overflow: hidden;
}
.about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  perspective: 1200px;
}
/* tilted orbital rings */
.about__ring {
  position: absolute;
  border-radius: 50%;
  border-style: dashed;
  transform-style: preserve-3d;
  will-change: transform;
}
.about__ring--1 {
  right: -8%;
  top: 10%;
  width: 540px;
  height: 540px;
  border: 1px dashed rgba(212, 255, 58, 0.28);
  animation: ringSpinA 45s linear infinite;
}
.about__ring--2 {
  right: 8%;
  top: 25%;
  width: 340px;
  height: 340px;
  border: 1px dashed rgba(255, 94, 188, 0.22);
  animation: ringSpinB 32s linear infinite reverse;
}
.about__ring--3 {
  left: -10%;
  bottom: 5%;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(94, 229, 255, 0.18);
  animation: ringSpinC 60s linear infinite;
}
@keyframes ringSpinA {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to   { transform: rotateX(72deg) rotateZ(360deg); }
}
@keyframes ringSpinB {
  from { transform: rotateX(58deg) rotateY(30deg) rotateZ(0deg); }
  to   { transform: rotateX(58deg) rotateY(30deg) rotateZ(360deg); }
}
@keyframes ringSpinC {
  from { transform: rotateX(80deg) rotateY(-15deg) rotateZ(0deg); }
  to   { transform: rotateX(80deg) rotateY(-15deg) rotateZ(360deg); }
}
/* floating rotating diamonds */
.about__diamond {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
  animation: diamondFloat 9s ease-in-out infinite;
}
.about__diamond--1 {
  right: 20%;
  top: 50%;
  border: 1.5px solid var(--lime);
  box-shadow: 0 0 14px rgba(212,255,58,0.4);
}
.about__diamond--2 {
  right: 35%;
  top: 30%;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--pink);
  box-shadow: 0 0 10px rgba(255,94,188,0.4);
  animation-delay: -4s;
}
@keyframes diamondFloat {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.8; }
  50%      { transform: rotate(225deg) translateY(-18px); opacity: 0.4; }
}
/* keep bio text & tags above the 3D bg */
.section--about .section__num,
.section--about .section__title,
.section--about .about__body { position: relative; z-index: 2; }

/* release card — glass card with lime edge glow */
.section--next { padding-top: 4rem; }
.release-card {
  position: relative;
  max-width: 640px;
  padding: 3rem 2rem 2.5rem;
  border-radius: 18px;
  background: rgba(212, 255, 58, 0.03);
  border: 1px solid rgba(212, 255, 58, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 40px rgba(212, 255, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    8px 8px 0 rgba(212, 255, 58, 0.12);
  transform: rotate(-0.8deg);
  overflow: hidden;
}
/* subtle shimmer gradient overlay */
.release-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(212, 255, 58, 0.06) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 94, 188, 0.05) 100%
  );
  pointer-events: none;
}
.release-card > * { position: relative; }

.release-card__tape {
  position: absolute;
  top: -14px;
  left: 24px;
  background: transparent;
  color: var(--pink);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  padding: 0.45rem 1rem;
  transform: rotate(-3deg);
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.85);
  box-shadow: 0 0 14px rgba(255, 94, 188, 0.3);
  text-transform: uppercase;
}
.release-card__label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.release-card__title {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--fg);
  /* glass-outlined effect on the title */
  text-shadow:
    0 0 20px rgba(212, 255, 58, 0.25),
    0 0 40px rgba(212, 255, 58, 0.1);
}
.release-card__title .dot { color: var(--lime); }
.release-card__note {
  font-size: 1rem;
  color: rgba(244, 244, 240, 0.75);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.6;
}
.release-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* glass buttons */
.btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--primary {
  background: rgba(212, 255, 58, 0.15);
  color: var(--lime);
  border: 1px solid var(--lime);
  box-shadow: 0 0 16px rgba(212, 255, 58, 0.2);
}
.btn--primary:hover {
  background: var(--lime);
  color: #000;
  box-shadow: 0 0 28px rgba(212, 255, 58, 0.4);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: rgba(244, 244, 240, 0.85);
  border: 1px solid rgba(244, 244, 240, 0.35);
}
.btn--ghost:hover {
  border-color: var(--fg);
  color: var(--fg);
  transform: translateY(-2px);
}

/* connect section hint */
.connect__hint {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.socials a em {
  font-style: italic;
  font-weight: 400;
  font-size: 0.4em;
  color: var(--lime);
  vertical-align: middle;
  margin-left: 0.25em;
}

/* update section title for mixed-content version */
.section__title {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
}

/* mobile */
@media (max-width: 640px) {
  .nav__links { gap: 1rem; }
  .hero { padding: 6rem 1.25rem 3rem; }
  .section { padding: 5rem 1.25rem; }
  .footer { flex-direction: column; gap: 0.5rem; padding: 1.5rem 1.25rem; }
  .sticker--3 { display: none; }
  .sticker--1 { top: 12%; right: 4%; font-size: 0.65rem; }
  .sticker--2 { bottom: 22%; left: 4%; font-size: 0.65rem; }
  .release-card { padding: 2rem 1.25rem; transform: rotate(-1deg); }
  .about__ring--3 { display: none; }
  .about__ring--1 { width: 360px; height: 360px; right: -30%; }
  .about__ring--2 { width: 220px; height: 220px; }
  .about__diamond { display: none; }
  /* keep mobile fast — kill heaviest hero layers */
  .hero__scan { display: none; }
}

/* respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
