/* ========== Kaleina — Landing Styles ========== */
*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg-0: #0A0612;
  --bg-1: #150A24;
  --bg-2: #1B0E2E;
  --panel: rgba(255, 255, 255, 0.025);
  --panel-2: rgba(255, 255, 255, 0.04);
  --border: rgba(178, 150, 230, 0.10);
  --border-strong: rgba(178, 150, 230, 0.22);
  --text-hi: #ECE3F8;
  --text-mid: #B8A8D8;
  --text-lo: #6E5F8C;
  --cyan: #38E8FF;
  --cyan-soft: #00B8D4;
  --cyan-glow: rgba(56, 232, 255, 0.45);
  --magenta: #FF55D8;
  --magenta-glow: rgba(255, 85, 216, 0.35);
  --violet: #B084FF;
  --green: #6EE7A8;
  --radius: 14px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--text-hi);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(56,232,255,0.06), transparent 60%),
    radial-gradient(1000px 600px at 10% 30%, rgba(255,85,216,0.05), transparent 60%),
    linear-gradient(180deg, #0A0612 0%, #0C0716 40%, #0A0612 100%);
  min-height: 100vh;
  padding-bottom: 96px; /* leave room for persistent player */
}

/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.7;
  mix-blend-mode: overlay;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--text-hi);
}

p { margin: 0; color: var(--text-mid); }
a { color: inherit; text-decoration: none; }

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; letter-spacing: -0.01em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

/* ========== Navbar ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(10, 6, 18, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 35% 30%, #1f1235 0%, #0c0618 70%);
  border: 1px solid var(--border-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(56,232,255,0.18), inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}
/* outer ring */
.logo-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(178,150,230,0.28);
  border-top-color: rgba(56,232,255,0.6);
  border-right-color: rgba(56,232,255,0.6);
}
/* inner cyan dot */
.logo-mark::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 8px var(--cyan-glow),
    0 0 0 2px #0c0618,
    0 0 0 3px rgba(56,232,255,0.25);
  position: relative;
  z-index: 1;
}
.nav-links {
  display: none;
  gap: 28px;
  font-size: 14px;
  color: var(--text-mid);
}
.nav-links a { transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--text-hi); }
.nav-links a.active {
  color: var(--text-hi);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}
@media (min-width: 860px) { .nav-links { display: inline-flex; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  background: var(--panel-2);
  color: var(--text-hi);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { border-color: rgba(178,150,230,0.4); background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(180deg, #1a0e2c, #0d0618);
  border-color: rgba(56,232,255,0.5);
  color: var(--text-hi);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(56,232,255,0.15),
    0 8px 30px rgba(56,232,255,0.15);
  position: relative;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: radial-gradient(80% 80% at 50% 50%, rgba(56,232,255,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  border-color: rgba(56,232,255,0.8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(56,232,255,0.3),
    0 12px 40px rgba(56,232,255,0.25);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-mid);
}
.btn-ghost:hover { color: var(--text-hi); border-color: var(--border-strong); }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: relative;
  width: min(1100px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 60px 120px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(56,232,255,0.08),
    0 0 80px rgba(56,232,255,0.08);
  background: #0a0612;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(10,6,18,0.55) 100%),
    linear-gradient(180deg, rgba(10,6,18,0.0) 50%, rgba(10,6,18,0.85) 100%);
}
.hero-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10,6,18,0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(110,231,168,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}
.hero-title {
  position: absolute;
  left: 32px;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-title-text h1 {
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.04em;
  font-weight: 600;
}
.hero-title-text h1 .accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--cyan) 0%, var(--violet) 70%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-text p {
  margin-top: 8px;
  font-size: 15px;
  max-width: 460px;
  color: rgba(232,223,245,0.78);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-lg { padding: 14px 22px; font-size: 15px; }

/* ========== Section base ========== */
section.block {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
  max-width: 720px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
}
.section-head p { font-size: 17px; }

/* ========== Now Playing Widget ========== */
.np-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.np-card {
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border-radius: 20px;
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(56,232,255,0.06), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  position: relative;
}
.np-cover {
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    conic-gradient(from 220deg at 50% 50%, #2a1248, #4d1d6a, #7e2da5, #38E8FF, #2a1248);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.np-cover::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 50%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 4px, rgba(0,0,0,0.18) 4px 5px);
  mix-blend-mode: overlay;
}
.np-cover .vinyl-dot {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: #0a0612;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06), inset 0 0 0 2px rgba(56,232,255,0.4);
}
.np-info { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.np-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.np-titles { min-width: 0; }
.np-titles .track {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-hi);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-titles .artist {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 2px;
}
.np-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.np-eq span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-soft));
  box-shadow: 0 0 6px var(--cyan-glow);
  animation: eq 1.2s ease-in-out infinite;
}
.np-eq span:nth-child(1) { height: 12px; animation-delay: 0s; }
.np-eq span:nth-child(2) { height: 20px; animation-delay: 0.15s; }
.np-eq span:nth-child(3) { height: 8px;  animation-delay: 0.3s; }
.np-eq span:nth-child(4) { height: 22px; animation-delay: 0.45s; }
.np-eq span:nth-child(5) { height: 14px; animation-delay: 0.2s; }
.np-eq span:nth-child(6) { height: 18px; animation-delay: 0.55s; }
.np-eq span:nth-child(7) { height: 10px; animation-delay: 0.4s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}

.np-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--text-lo);
}
.np-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.np-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  background: linear-gradient(90deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 0 12px var(--cyan-glow);
  border-radius: 2px;
  animation: progress 18s linear infinite;
}
@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}
.np-bar-fill::after {
  content: "";
  position: absolute;
  right: -4px; top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.np-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.np-controls-l {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.np-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
  font-size: 13px;
}
.np-btn:hover { color: var(--text-hi); background: rgba(255,255,255,0.05); }
.np-btn.play {
  width: 42px; height: 42px;
  background: var(--text-hi);
  color: var(--bg-0);
  font-weight: 700;
}
.np-btn.play:hover { background: var(--cyan); color: var(--bg-0); }
.np-requester {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-lo);
  letter-spacing: 0.04em;
}
.np-requester .req-avatar {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b084ff, #38e8ff);
  vertical-align: -3px;
  margin-right: 6px;
}

/* ========== Commands grid ========== */
.cmd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.cmd-card {
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cmd-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--cyan), transparent 60%, var(--magenta));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.cmd-card:hover {
  transform: translateY(-2px);
  border-color: transparent;
}
.cmd-card:hover::before { opacity: 1; }
.cmd-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(56,232,255,0.07);
  border: 1px solid rgba(56,232,255,0.18);
  color: var(--cyan);
  margin-bottom: 16px;
}
.cmd-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--cyan);
  margin-bottom: 6px;
}
.cmd-aliases {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-lo);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.cmd-aliases span {
  color: var(--text-mid);
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  margin-left: 4px;
}
.cmd-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.cmd-desc { font-size: 14px; color: var(--text-mid); }

/* Kaleina message card */
.cmd-card.kaleina-msg {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(56,232,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(56,232,255,0.04), rgba(176,132,255,0.02));
  border-color: rgba(56,232,255,0.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.cmd-card.kaleina-msg .kal-head {
  display: flex; align-items: center; gap: 12px;
}
.cmd-card.kaleina-msg .kal-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #0d0719 url("assets/icon.png") center/cover no-repeat;
  border: 1px solid rgba(56,232,255,0.3);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(56,232,255,0.15);
}
.cmd-card.kaleina-msg .kal-name {
  display: flex; align-items: center; gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
}
.cmd-card.kaleina-msg .kal-tag {
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(56,232,255,0.14);
  color: var(--cyan);
  letter-spacing: 0.08em;
}
.cmd-card.kaleina-msg .kal-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text-hi);
  line-height: 1.25;
}

/* Kaleina message footer actions */
.kal-arrow {
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan-glow);
  line-height: 1;
  margin-top: -2px;
  animation: kal-arrow-pulse 2.4s ease-in-out infinite;
}
@keyframes kal-arrow-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.85; }
  50%      { transform: translateX(4px); opacity: 1; }
}
.kal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  margin-top: auto;
}
.kal-reply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.kal-reply:hover {
  color: var(--cyan);
  background: rgba(56,232,255,0.06);
  border-color: rgba(56,232,255,0.2);
}
.kal-heart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid transparent;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--text-mid);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.kal-heart:hover {
  color: var(--cyan);
  background: rgba(56,232,255,0.06);
  border-color: rgba(56,232,255,0.2);
}
.kal-heart .heart-path {
  transition: fill 0.3s ease;
}
.kal-heart.liked {
  color: var(--cyan);
}
.kal-heart.liked .heart-path {
  fill: var(--cyan);
  stroke: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan-glow));
}
.kal-heart.bump svg {
  animation: heart-bump 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}
@keyframes heart-bump {
  0%   { transform: scale(1); }
  20%  { transform: scale(0.85); }
  45%  { transform: scale(1.35); }
  70%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}
.kal-heart.liked .kal-heart-count { color: var(--cyan); }

/* See all commands card */
.cmd-card.see-all {
  background:
    radial-gradient(120% 100% at 100% 100%, rgba(255,85,216,0.10), transparent 60%),
    linear-gradient(180deg, rgba(176,132,255,0.04), rgba(255,255,255,0.01));
  border-color: rgba(176,132,255,0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  gap: 16px;
}
.cmd-card.see-all::before {
  background: linear-gradient(135deg, var(--violet), var(--magenta), var(--cyan));
}
.cmd-card.see-all .cmd-icon.see-icon {
  background: rgba(176,132,255,0.08);
  border-color: rgba(176,132,255,0.25);
  color: var(--violet);
}
.cmd-card.see-all .cmd-name { color: var(--violet); }
.see-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.see-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-hi);
  transition: transform 0.3s cubic-bezier(0.2,0.7,0.2,1), background 0.3s, color 0.3s, border-color 0.3s;
}
.cmd-card.see-all:hover .see-arrow {
  transform: translate(4px, -4px);
  background: var(--cyan);
  color: var(--bg-0);
  border-color: var(--cyan);
}
.cmd-card.see-all:hover .see-cta { color: var(--text-hi); }

/* ========== Features ========== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feat-mockup { order: 2; }
@media (max-width: 840px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feat-mockup { order: initial; }
}
.feat-copy { display: flex; flex-direction: column; gap: 12px; }
.feat-copy h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; }
.feat-copy p { font-size: 16px; max-width: 480px; }
.feat-pill {
  align-self: flex-start;
  display: inline-flex;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(56,232,255,0.08);
  border: 1px solid rgba(56,232,255,0.2);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}

/* generic chat mockup */
.chat-mock {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  position: relative;
}
.chat-mock-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  background: rgba(10,6,18,0.4);
}
.chat-mock-header .chan-hash {
  color: var(--text-lo);
  font-weight: 500;
}
.chat-mock-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.msg { display: flex; gap: 12px; align-items: flex-start; }
.msg-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #b084ff, #38e8ff);
}
.msg-avatar.bot { background: radial-gradient(circle at 30% 30%, #2a1846, #0a0612); border: 1px solid rgba(56,232,255,0.4); position: relative; }
.msg-avatar.bot::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--cyan) 0 30%, transparent 32%);
}
.msg-body { flex: 1; min-width: 0; }
.msg-author {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  margin-bottom: 4px;
}
.msg-author .name { color: var(--text-hi); font-weight: 500; }
.msg-author .name.bot { color: var(--cyan); }
.msg-author .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(56,232,255,0.12);
  color: var(--cyan);
  letter-spacing: 0.05em;
}
.msg-author .time { font-size: 11px; color: var(--text-lo); }
.msg-text { color: var(--text-mid); font-size: 14px; }
.msg-text .cmd-token { font-family: "JetBrains Mono", monospace; color: var(--cyan); }
.embed {
  margin-top: 8px;
  border-left: 3px solid var(--cyan);
  background: rgba(10,6,18,0.5);
  border-radius: 6px;
  padding: 12px 14px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.embed-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: var(--text-hi);
  font-weight: 500;
}
.embed-sub { font-size: 12px; color: var(--text-mid); }

/* lyric mockup specific */
.lyric-line {
  font-family: "Space Grotesk", sans-serif;
  padding: 4px 0;
  transition: color 0.3s;
  font-size: 15px;
}
.lyric-line.past { color: var(--text-lo); }
.lyric-line.now {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(56,232,255,0.4);
  font-weight: 500;
}
.lyric-line.future { color: var(--text-mid); }

/* filter chips */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.filter-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-family: "JetBrains Mono", monospace;
  color: var(--text-mid);
  background: rgba(255,255,255,0.02);
}
.filter-chip.active {
  border-color: var(--cyan);
  background: rgba(56,232,255,0.1);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(56,232,255,0.2);
}

/* queue mockup */
.queue-item {
  display: grid;
  grid-template-columns: 24px 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 6px;
  border-radius: 6px;
  font-size: 13px;
}
.queue-item:hover { background: rgba(255,255,255,0.025); }
.queue-item.playing { background: rgba(56,232,255,0.06); }
.queue-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-lo);
  text-align: center;
}
.queue-item.playing .queue-num { color: var(--cyan); }
.queue-cover {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2a1248, #38e8ff);
}
.queue-cover.b { background: linear-gradient(135deg, #4d1d6a, #ff55d8); }
.queue-cover.c { background: linear-gradient(135deg, #1a0e2c, #b084ff); }
.queue-cover.d { background: linear-gradient(135deg, #38e8ff, #2a1248); }
.queue-cover.e { background: linear-gradient(135deg, #ff55d8, #4d1d6a); }
.queue-title { font-size: 13px; color: var(--text-hi); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.queue-artist { font-size: 11px; color: var(--text-lo); }
.queue-dur { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--text-lo); }
.queue-tip {
  font-size: 11px;
  color: var(--text-lo);
  font-family: "JetBrains Mono", monospace;
  padding: 8px 6px 0;
  border-top: 1px dashed var(--border);
  margin-top: 8px;
}
.queue-tip span { color: var(--magenta); }

/* ========== Personality ========== */
.personality {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 840px) { .personality { grid-template-columns: 1fr; } }
.pers-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  position: relative;
  background: #0a0612;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.7);
}
.pers-portrait video, .pers-portrait .pers-fallback {
  width: 100%; height: 100%; object-fit: cover; object-position: 60.5% 50%; display: block;
}
.pers-portrait .pers-frame {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,6,18,0) 60%, rgba(10,6,18,0.7) 100%);
}
.pers-portrait .pers-stamp {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,6,18,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pers-copy { display: flex; flex-direction: column; gap: 24px; }
.pers-copy h2 { font-size: clamp(32px, 4vw, 50px); }
.pers-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pers-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.pers-list li .num {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(56,232,255,0.08);
  border: 1px solid rgba(56,232,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--cyan);
}
.pers-list strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: var(--text-hi);
  margin-bottom: 2px;
  font-size: 16px;
}
.pers-list span { font-size: 14px; color: var(--text-mid); }

/* ========== Pricing ========== */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card.premium {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(56,232,255,0.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
/* Static gradient border ring */
.price-card.premium::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 55%, var(--magenta) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Outer halo — generic breathing when no music, audio-driven when track is playing */
.price-card.premium {
  --beat: 0;
  animation: premium-breathe 5s ease-in-out infinite;
}
@keyframes premium-breathe {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(56, 232, 255, 0.10),
      0 0 14px -4px rgba(56, 232, 255, 0.20),
      0 0 26px -8px rgba(255, 85, 216, 0.14);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(56, 232, 255, 0.22),
      0 0 22px -2px rgba(56, 232, 255, 0.32),
      0 0 40px -2px rgba(255, 85, 216, 0.22);
  }
}
.price-card.premium.audio-driven {
  animation: none;
  box-shadow:
    0 0 0 calc(1px + var(--beat) * 1px) rgba(56, 232, 255, calc(0.10 + var(--beat) * 0.22)),
    0 0 calc(14px + var(--beat) * 18px) calc(-4px + var(--beat) * 3px) rgba(56, 232, 255, calc(0.20 + var(--beat) * 0.40)),
    0 0 calc(26px + var(--beat) * 22px) calc(-6px + var(--beat) * 4px) rgba(255, 85, 216, calc(0.14 + var(--beat) * 0.28));
}
.price-card.premium.audio-driven::before {
  filter: brightness(calc(1 + var(--beat) * 0.6)) drop-shadow(0 0 calc(var(--beat) * 8px) var(--cyan-glow));
}
.price-tag {
  position: absolute;
  top: -10px; right: 20px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  color: var(--bg-0);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
}
.price-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-amount .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-amount .per { color: var(--text-lo); font-size: 14px; }
.price-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.price-card li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--text-mid);
}
.price-card li::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(56,232,255,0.1);
  border: 1px solid rgba(56,232,255,0.3);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.price-card.premium li::before {
  background: rgba(56,232,255,0.18);
  box-shadow: 0 0 8px var(--cyan-glow);
}
.price-card li strong { color: var(--text-hi); font-weight: 500; margin-right: 4px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ========== FAQ ========== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
}
details.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: var(--text-hi);
  font-weight: 500;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
details.faq-item[open] summary .chev {
  transform: rotate(45deg);
  background: rgba(56,232,255,0.1);
  color: var(--cyan);
  border-color: rgba(56,232,255,0.3);
}
.faq-answer {
  padding-top: 14px;
  color: var(--text-mid);
  font-size: 15px;
  max-width: 640px;
}

/* ========== CTA ========== */
.cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(60% 100% at 30% 50%, rgba(56,232,255,0.10), transparent 60%),
    radial-gradient(60% 100% at 70% 50%, rgba(255,85,216,0.10), transparent 60%),
    var(--bg-0);
}
.cta h2 {
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: -0.05em;
  font-weight: 500;
}
.cta h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta p { font-size: 17px; margin-top: 16px; }
.cta .btn { margin-top: 36px; }

/* ========== Footer ========== */
footer {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-lo);
  flex-wrap: wrap;
}
.footer-links a:hover { color: var(--text-hi); }
.footer-copy {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-lo);
  letter-spacing: 0.08em;
}

/* ========== Persistent Bottom Player ========== */
.dock {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: min(720px, calc(100vw - 32px));
  border-radius: 16px;
  background: rgba(15, 8, 26, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(56,232,255,0.08);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
}
.dock-cover {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: #0d0719 url("assets/icon.png") center / cover no-repeat;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 0 16px rgba(56,232,255,0.15);
}
.dock-info { min-width: 0; }
.dock-track {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: var(--text-hi);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dock-artist { font-size: 11px; color: var(--text-mid); }
.dock-bar {
  margin-top: 4px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.dock-bar-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan-soft), var(--cyan));
  transition: width 0.1s linear;
}
.dock-bar { cursor: pointer; }
.dock-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dock-controls .np-btn { width: 32px; height: 32px; }
.dock-controls .np-btn.play { width: 36px; height: 36px; }
.dock-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  padding: 0 6px;
}
.dock-eq span {
  width: 2px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 4px var(--cyan-glow);
  animation: eq 1s ease-in-out infinite;
}
.dock-eq span:nth-child(1) { height: 6px;  }
.dock-eq span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.dock-eq span:nth-child(3) { height: 8px;  animation-delay: 0.3s; }
.dock-eq span:nth-child(4) { height: 14px; animation-delay: 0.2s; }
.dock.paused .np-eq span,
.dock.paused .dock-eq span,
.dock.paused .dock-bar-fill { animation-play-state: paused; }

@media (max-width: 560px) {
  .dock { grid-template-columns: 40px 1fr auto; padding: 8px 10px; }
  .dock-cover { width: 40px; height: 40px; }
  .dock-bar { display: none; }
  .dock-eq { display: none; }
}

/* ========== Reveal animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ========== Responsive ========== */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero-title { left: 18px; right: 18px; bottom: 18px; }
  .np-card { grid-template-columns: 1fr; }
  .np-cover { max-width: 220px; margin: 0 auto; width: 100%; }
  section.block { padding: 70px 0; }
}
