:root {
  --bg: #050508;
  --bg2: #0a0a12;
  --panel: rgba(12, 12, 20, 0.72);
  --text: #f0f0f5;
  --muted: #8b8ba0;
  --line: rgba(168, 85, 247, 0.28);
  --purple: #a855f7;
  --violet: #7c3aed;
  --blue: #38bdf8;
  --cyan: #22d3ee;
  --fire: #f97316;
  --white: #ffffff;
  --radius: 18px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --audio-level: 0;
  --sticky-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

#fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.scan {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(168, 85, 247, 0.03) 50%,
    transparent 100%
  );
  background-size: 100% 220%;
  animation: scan 9s linear infinite;
}

@keyframes scan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 220%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scan {
    animation: none;
  }
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.25rem 1.15rem 3.5rem;
}

body.is-playing .shell {
  padding-bottom: calc(3.5rem + var(--sticky-h));
}

body.is-playing .art-wrap img {
  animation: spin-slow 18s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-playing .art-wrap img {
    animation: none;
  }
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 14, 0.65);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.7);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.35);
}

.brand strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-x {
  color: var(--text) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.nav-x:hover {
  border-color: var(--purple);
  background: rgba(168, 85, 247, 0.12) !important;
}

.sub a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
}

.sub a:hover {
  color: #d8b4fe;
}

.btn.sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}

/* MEDIA SECTIONS */
.media-section {
  margin-bottom: 2.75rem;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}

.sec-head h2 {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
  margin: 0;
}

/* COMMAND DECK */
.deck {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(168, 85, 247, calc(0.18 + var(--audio-level) * 0.25)), transparent 55%),
    linear-gradient(160deg, rgba(124, 58, 237, 0.16), rgba(8, 8, 16, 0.94));
  backdrop-filter: blur(18px);
  padding: 1.15rem;
  margin-bottom: 1.1rem;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 calc(40px + var(--audio-level) * 50px) rgba(124, 58, 237, 0.2);
}

@media (max-width: 820px) {
  .deck {
    grid-template-columns: 1fr;
  }
}

.deck-left {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}

.art-wrap {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
}

.art-wrap img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.55);
  background: #111;
  position: relative;
  z-index: 1;
}

.art-glow {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, calc(0.35 + var(--audio-level) * 0.45)),
    transparent 70%
  );
  filter: blur(8px);
  z-index: 0;
}

.now-copy {
  min-width: 0;
}

.now-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

.now-copy h3 {
  margin: 0.2rem 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  letter-spacing: -0.02em;
}

.status {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.suno-link {
  color: var(--purple);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

.suno-link:hover {
  color: #d8b4fe;
}

.deck-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  min-width: 0;
}

.transport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.ctrl {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.15s;
}

.ctrl:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(168, 85, 247, 0.12);
}

.ctrl:active {
  transform: scale(0.96);
}

.ctrl.play {
  width: auto;
  min-width: 112px;
  padding: 0 1.1rem;
  gap: 0.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d8b4fe, var(--purple) 55%, #6366f1);
  color: #0a0610;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.4);
}

.ctrl.play .lbl {
  font-size: 0.9rem;
}

.ctrl.sm {
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
}

.ctrl.play.sm {
  min-width: 88px;
  width: auto;
}

.ctrl.on {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.25);
}

.timeline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.t {
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 2.4rem;
}

.seek,
.volume {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
}

.seek::-webkit-slider-thumb,
.volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: 2px solid #0a0610;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.55);
  cursor: grab;
}

.seek::-moz-range-thumb,
.volume::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: 2px solid #0a0610;
  cursor: grab;
}

.extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.vol-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 140px;
  max-width: 260px;
}

.rate-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.rate-wrap select {
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  font: inherit;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.65rem;
}

.track {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(10, 10, 18, 0.72);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.track:hover,
.track.active {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.18);
}

.track-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  width: 1.4rem;
  flex-shrink: 0;
}

.track.active .track-num,
.track.active .track-play-hint {
  color: var(--cyan);
}

.track-play-hint {
  color: var(--muted);
  font-size: 0.85rem;
}

.track-actions {
  display: flex;
  gap: 0.75rem;
  padding: 0 0.75rem 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.track-actions a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}

.track-main {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.track-main img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #111;
}

.track-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.track-text strong {
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-text small {
  color: var(--muted);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* STICKY PLAYER */
.sticky-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  transform: translateY(110%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

.sticky-player.show {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto minmax(120px, 1.2fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 1rem;
  background: rgba(8, 8, 14, 0.92);
  border-top: 1px solid rgba(168, 85, 247, 0.35);
  backdrop-filter: blur(18px);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.sticky-inner img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(168, 85, 247, 0.4);
}

.sticky-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sticky-meta strong {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-meta span {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.sticky-seek {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

@media (max-width: 720px) {
  .sticky-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
  }
  .sticky-seek {
    grid-column: 1 / -1;
  }
  .sticky-controls .ctrl.play .lbl {
    display: none;
  }
  .sticky-controls .ctrl.play.sm {
    min-width: 44px;
    width: 44px;
    padding: 0;
  }
}

/* VIDEO */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (max-width: 720px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.vid-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(10, 10, 18, 0.75);
  backdrop-filter: blur(12px);
}

.vid-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 720px) {
  .vid-card.featured {
    grid-template-columns: 1fr;
  }
}

.vid-thumb {
  position: relative;
  display: block;
  background: #000;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vid-card.featured .vid-thumb {
  aspect-ratio: 16 / 9;
}

.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.vid-card:hover .vid-thumb img {
  transform: scale(1.04);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(168, 85, 247, 0.55);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.vid-body {
  padding: 0.95rem 1rem 1.1rem;
}

.vid-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.05rem;
}

.vid-body p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.vid-body a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}

.vid-body a:hover {
  color: #d8b4fe;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: flex-end;
  max-width: 28rem;
}

.foot-legal a {
  font-size: 0.82rem;
}

.fine a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}

.fine a:hover {
  color: #d8b4fe;
}

.foot-links a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.foot-links a:hover {
  color: #d8b4fe;
}

/* POT BOARD + TRUST */
.pot-section {
  margin-bottom: 2.25rem;
}

.pot-board {
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(168, 85, 247, 0.18), transparent 50%),
    rgba(12, 12, 20, 0.88);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.2rem 1.1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pot-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pot-top h2 {
  margin: 0.2rem 0 0.25rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
}

.pot-period {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pot-status {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
}

.pot-status[data-status="pre-launch"] {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.pot-status[data-status="paid"] {
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.4);
  background: rgba(134, 239, 172, 0.08);
}

.pot-total {
  text-align: center;
  padding: 1rem 0.5rem 1.15rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pot-total-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.pot-total-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.25rem 0;
  background: linear-gradient(120deg, #e9d5ff, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pot-draw {
  color: var(--muted);
  font-size: 0.88rem;
}

.pot-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .pot-breakdown {
    grid-template-columns: 1fr;
  }
}

.pot-cell {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pot-cell span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.pot-cell strong {
  font-size: 1.15rem;
  font-family: var(--display);
}

.pot-cell small {
  color: var(--muted);
  font-size: 0.78rem;
}

.pot-tiers {
  margin-bottom: 0.85rem;
}

.pot-tier.active {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.12);
}

.trust-list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-list li {
  margin: 0.35rem 0;
}

.trust-list strong {
  color: var(--text);
}

.pot-updated {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.pot-error {
  margin: 0;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 0.85rem;
}

@media (max-width: 860px) {
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

.trust-strip article {
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 18, 0.65);
}

.trust-strip h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 0.95rem;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.trust-links {
  margin: 0.75rem 0 0;
  text-align: center;
}

.stack-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.stack-list li {
  margin: 0.4rem 0;
}

.stack-list strong {
  color: var(--text);
}

/* ENTRY FORM */
.entry-form {
  margin-top: 1.25rem;
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(12, 12, 20, 0.85);
  display: grid;
  gap: 0.75rem;
}

.entry-form h3 {
  margin: 0;
  font-family: var(--display);
}

.entry-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.entry-form input[type="text"],
.entry-form input[type="url"] {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
}

.entry-form label.check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500;
  line-height: 1.4;
}

.entry-form label.check input {
  margin-top: 0.2rem;
}

.entry-form a {
  color: var(--purple);
}

.entry-result {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.entry-result.ok {
  color: #86efac;
}

.entry-result.err {
  color: #fda4af;
}

.entry-result.muted {
  color: var(--muted);
}

.ledger-list {
  display: grid;
  gap: 0.55rem;
}

.ledger-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
  .ledger-row {
    grid-template-columns: 1fr;
  }
}

.ledger-type {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

.ledger-body p {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: 0.9rem;
}

.ledger-body time,
.ledger-body span {
  display: inline-block;
  margin-right: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* CAMPAIGN-FIRST LAYOUT */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.hero-points li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(124, 58, 237, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.enter-block {
  margin-bottom: 2.25rem;
}

.campaign-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

@media (max-width: 760px) {
  .campaign-steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: rgba(10, 10, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  backdrop-filter: blur(12px);
}

.step .num {
  display: inline-block;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.step code {
  color: var(--cyan);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.88em;
}

.campaign-tiers {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
}

.tier-label {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.tier.hot {
  border-color: rgba(255, 176, 32, 0.4);
}

.tier.max {
  border-color: rgba(0, 240, 181, 0.45);
  background: rgba(0, 240, 181, 0.08);
}

.campaign-cta {
  text-align: center;
  padding: 2rem 1.25rem;
  margin-bottom: 2.75rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.22), transparent 55%),
    rgba(12, 12, 20, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.campaign-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.campaign-cta p {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.hero-actions.center {
  justify-content: center;
}

.btn.huge {
  padding: 1rem 1.6rem;
  font-size: 1.02rem;
}

/* Secondary vibe — not the hero */
.vibe-secondary {
  opacity: 0.98;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
}

.vibe-lead {
  margin: -0.35rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
}

.vibe-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(8, 8, 14, 0.55);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.vibe-panel > summary {
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  font-family: var(--display);
  list-style: none;
  color: var(--text);
  user-select: none;
}

.vibe-panel > summary::-webkit-details-marker {
  display: none;
}

.vibe-panel > summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 500;
}

.vibe-panel[open] > summary::after {
  content: "–";
}

.vibe-panel[open] > summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vibe-panel .deck,
.vibe-panel .track-grid,
.vibe-panel .video-grid {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
}

.deck.compact {
  margin-bottom: 0.75rem;
}

.art-wrap.sm {
  width: 88px;
  height: 88px;
}

.art-wrap.sm img {
  width: 88px;
  height: 88px;
}

/* HERO */
.hero {
  margin-bottom: 3rem;
  max-width: 40rem;
  position: relative;
}

.eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  margin-bottom: 1rem;
}

.eq-bar {
  width: 5px;
  height: 20%;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.45);
  transition: height 0.05s linear;
}

.keys-hint {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.keys-hint kbd {
  display: inline-block;
  padding: 0.12rem 0.4rem;
  margin: 0 0.1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-family: inherit;
}

.tag {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.grad {
  background: linear-gradient(120deg, #e9d5ff 0%, var(--purple) 45%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.solid {
  color: #0a0610;
  background: linear-gradient(135deg, #d8b4fe, var(--purple) 50%, #6366f1);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.4), 0 12px 36px rgba(124, 58, 237, 0.35);
}

.btn.ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.btn.wide {
  width: 100%;
  margin-top: 0.5rem;
}

/* GIFT */
.gift {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.35rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(8, 8, 16, 0.85));
  backdrop-filter: blur(18px);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.12);
}

@media (max-width: 820px) {
  .gift {
    grid-template-columns: 1fr;
  }
}

.gift-copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.gift-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.gift-copy ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.gift-copy li {
  margin: 0.35rem 0;
}

.card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(124, 58, 237, 0.2);
  background: #000;
}

.card img {
  display: block;
  width: 100%;
  height: auto;
}

.card figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.card.tight img {
  aspect-ratio: 1;
  object-fit: cover;
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.panel {
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.panel h2 {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-size: 1.4rem;
}

.panel > p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.flow {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}

.flow li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 500;
}

.flow li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.flow span {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.06em;
  min-width: 1.6rem;
}

.fine {
  margin: 0 !important;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  opacity: 0.9;
}

/* VIBE */
.vibe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

@media (max-width: 720px) {
  .vibe {
    grid-template-columns: 1fr;
  }
}

.vibe-card {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(12px);
}

.vibe-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-family: var(--display);
}

.vibe-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* FOOT */
.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.foot-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.5);
  object-fit: cover;
}

.foot-brand strong {
  display: block;
  font-size: 0.9rem;
}

.foot-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.foot a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.foot a:hover {
  color: #d8b4fe;
}
