/* SpinLoud — Stripe×Apple inspired, #0000ff accent */

:root {
  --blue: #0000ff;
  --blue-600: #0000ff;
  --blue-50: #f0f0ff;
  --ink: #0a0a0f;
  --ink-2: #1a1a22;
  --muted: #5b5b69;
  --muted-2: #8a8a98;
  --line: #e7e7ee;
  --line-2: #f1f1f6;
  --bg: #ffffff;
  --bg-soft: #fafafc;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 15, 30, 0.04), 0 1px 1px rgba(15, 15, 30, 0.03);
  --shadow: 0 10px 30px -12px rgba(15, 15, 60, 0.12), 0 4px 12px -4px rgba(15, 15, 60, 0.06);
  --shadow-blue: 0 20px 50px -20px rgba(0, 0, 255, 0.35), 0 8px 20px -8px rgba(0, 0, 255, 0.18);
  --max-w: 1240px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Typography */
.serif { font-family: 'Instrument Serif', 'Times New Roman', serif; font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.mono { font-family: 'Sora', sans-serif; }

/* Force Latin casing rules on text-transform: uppercase elements so Turkish 'i' becomes 'I' not 'İ'.
   Set lang="en" on individual elements that need this. */

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 255, 0.6);
}

/* Layout */
.wrap { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

section { position: relative; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(0,0,255,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { background: #0000ff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
}
.btn-ghost:hover { background: var(--line-2); }
.btn-outline {
  background: #fff; color: var(--ink); border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* Section spacing */
.section-pad { padding: clamp(72px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

.section-title {
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
  max-width: 18ch;
}
.section-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.5;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
}
/* Wordmark as a block so it has no inline-baseline descender gap — keeps its
   optical center on the same line as the nav buttons. */
.nav-logo img { display: block; }
.nav-logo-mark {
  width: 26px; height: 26px;
  display: grid; place-items: center;
}
.nav-links {
  display: flex; gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 400;
  transition: background 0.15s ease;
}
.nav-link:hover { background: var(--line-2); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
/* Lock both header CTAs to the same 40px pill height so "Giriş" (ghost) and
   "Ücretsiz Başla" (primary) share one center line with the wordmark — the
   base .btn vertical padding otherwise made the ghost button ~4px taller. */
.nav-cta .btn { height: 40px; padding-top: 0; padding-bottom: 0; line-height: 1; }

/* ===== Mobile hamburger + drawer ===== */
.nav-burger {
  display: none;               /* desktop: hidden */
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px; height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
}

.nav-mobile {
  position: fixed; inset: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.nav-mobile.open { visibility: visible; opacity: 1; }
.nav-mobile-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 15, 0.45);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.nav-mobile-panel {
  position: absolute; top: 0; left: 0; right: 0;
  background: #fff;
  border-radius: 0 0 24px 24px;
  padding: 14px var(--pad) 26px;
  transform: translateY(-16px);
  transition: transform 0.25s ease;
  box-shadow: 0 24px 60px -24px rgba(10, 10, 30, 0.4);
}
.nav-mobile.open .nav-mobile-panel { transform: translateY(0); }
.nav-mobile-head {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.nav-mobile-head img { height: 26px !important; width: auto !important; }
.nav-mobile-close {
  width: 40px; height: 40px;
  font-size: 28px; line-height: 1;
  color: var(--ink); background: transparent; border: none; cursor: pointer;
}
.nav-mobile-links { display: flex; flex-direction: column; margin-top: 8px; }
.nav-mobile-link {
  padding: 15px 2px;
  font-size: 18px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-link:active { color: var(--blue); }
.nav-mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.nav-mobile-cta .btn { width: 100%; height: 48px; justify-content: center; font-size: 15px; }
@media (min-width: 821px) { .nav-mobile { display: none; } }

@media (max-width: 820px) {
  .nav-links { display: none; }
  /* Login / Start-free move into the drawer; header becomes hamburger + logo. */
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  /* Hamburger pinned left, wordmark centered for balance. */
  .nav-inner { position: relative; justify-content: center; }
  .nav-burger { position: absolute; left: var(--pad); }
}

/* HERO */
.hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  /* Will be replaced with WebGL */
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: var(--ink-2);
}
.hero-tag .badge {
  background: var(--blue); color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 500;
}
.hero-h1 {
  margin-top: 24px;
  font-size: clamp(48px, 8.5vw, 124px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 14ch;
}
.hero-h1 .accent {
  color: var(--blue);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-sub {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.5;
}
.hero-actions {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.hero-meta {
  margin-top: 48px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted-2);
  align-items: center;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.hero-meta strong { color: var(--ink-2); font-weight: 500; }

/* Hero product preview floating in */
.hero-stage {
  position: relative;
  margin-top: 72px;
  padding-bottom: 0;
}

/* Logo strip */
.logo-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 64px;
  background: #0a0a14;
  position: relative;
  overflow: hidden;
}
.logo-strip-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 100% at 18% 50%, rgba(0, 0, 255, 0.55) 0%, rgba(0,0,255,0) 60%),
    radial-gradient(50% 100% at 82% 50%, rgba(26, 139, 255, 0.45) 0%, rgba(26,139,255,0) 65%),
    linear-gradient(180deg, #0a0a18 0%, #0c0c20 100%);
  pointer-events: none;
  z-index: 0;
}
.logo-strip-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.logo-strip-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0a0a14 0%, transparent 12%, transparent 88%, #0a0a14 100%);
  pointer-events: none;
}
.logo-strip-label {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.logo-track {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 88px;
  align-items: center;
  animation: scroll-x 40s linear infinite;
  width: fit-content;
}
.logo-strip:hover .logo-track { animation-play-state: paused; }
.logo-track .chip {
  flex: 0 0 auto;
  height: 36px;
  display: flex; align-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1f1f29;
  opacity: 0.55;
  letter-spacing: -0.02em;
  white-space: nowrap;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.logo-track .chip:hover { opacity: 1; }
.brand-logo {
  flex: 0 0 auto;
  height: 120px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}
.brand-logo:hover { opacity: 1; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section header */
.s-head { display: flex; flex-direction: column; gap: 18px; max-width: 880px; }
.s-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Features */
.features-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.feat {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feat:hover { border-color: #dcdce8; box-shadow: var(--shadow); }
.feat .feat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--blue);
}
.feat h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.feat p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.feat .feat-art {
  position: absolute;
  inset: auto -10px -10px auto;
  width: 60%; height: 60%;
  pointer-events: none;
  opacity: 0.9;
}
.feat-col-6 { grid-column: span 6; }
.feat-col-4 { grid-column: span 4; }
.feat-col-8 { grid-column: span 8; }
.feat-col-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .feat-col-6, .feat-col-4, .feat-col-8 { grid-column: span 12; }
}

.feat-dark {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.feat-dark p { color: #a5a5b8; }
.feat-dark .feat-icon { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: #fff; }

.feat-blue {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
}
.feat-blue p { color: rgba(255,255,255,0.78); }
.feat-blue .feat-icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.18); color: #fff; }

/* Radio player mock */
.player-stage {
  margin-top: 72px;
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, #fafafc 0%, #ffffff 100%);
  border: 1px solid var(--line);
  padding: 40px;
  overflow: hidden;
}
.player-stage::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(closest-side, rgba(0,0,255,0.18), transparent 70%);
  pointer-events: none;
}
.player-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  align-items: start;
}
@media (max-width: 980px) {
  .player-cols { grid-template-columns: 1fr; }
}

.player-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.player-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.player-live { display: flex; align-items: center; gap: 8px; color: var(--blue); }
.player-live .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  animation: pulse 1.8s infinite;
  box-shadow: 0 0 0 0 rgba(0,0,255,0.55);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,255,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(0,0,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,255,0); }
}

.player-body { padding: 28px; }
.player-cover {
  width: 100%; aspect-ratio: 1;
  border-radius: 16px;
  background: #0a0a40;
  position: relative;
  overflow: hidden;
}
.player-cover-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.player-meta { margin-top: 18px; }
.player-channel {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.player-track { margin-top: 8px; font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
.player-artist { margin-top: 2px; color: var(--muted); font-size: 14px; }
.player-progress {
  margin-top: 18px;
  height: 4px; border-radius: 999px; background: var(--line);
  overflow: hidden;
}
.player-progress-fill { height: 100%; background: var(--blue); border-radius: 999px; transition: width 0.6s linear; }
.player-time {
  display: flex; justify-content: space-between;
  margin-top: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
}
.player-controls {
  display: flex; gap: 8px; justify-content: center; align-items: center;
  margin-top: 18px;
}
.pctrl {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--line-2);
  border: none;
  display: grid; place-items: center;
  color: var(--ink-2);
}
.pctrl.play { background: var(--blue); color: #fff; width: 52px; height: 52px; box-shadow: var(--shadow-blue); }

/* Channel list panel */
.channel-list {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  max-height: 560px;
  position: sticky;
  top: 24px;
}
.channel-list-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.channel-list-scroll::-webkit-scrollbar { width: 8px; }
.channel-list-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; border: 2px solid #fff; }
.channel-list-scroll::-webkit-scrollbar-thumb:hover { background: var(--ink-2); }
.channel-list-scroll::-webkit-scrollbar-track { background: transparent; }
.channel-list-head {
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line-2);
  background: #fff;
  z-index: 1;
}
.channel-list-head h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.channel-list-head .count {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
}
.chan-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-2);
  cursor: pointer;
  transition: background 0.15s ease;
}
.chan-row:last-child { border-bottom: none; }
.chan-row:hover { background: var(--bg-soft); }
.chan-row.active { background: rgba(0,0,255,0.04); }
.chan-row.active .chan-name { color: var(--blue); }
.chan-thumb {
  width: 40px; height: 40px;
  border-radius: 10px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--c1, #0000ff), var(--c2, #0000ff));
  position: relative; overflow: hidden;
}
.chan-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 50%);
}
.chan-thumb-img {
  width: 44px; height: 44px;
  border-radius: 8px;
  flex: 0 0 auto;
  object-fit: cover;
  background: #fafafc;
  border: 1px solid var(--line);
}

.channel-preview-cover {
  margin-top: 18px;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  padding: 8px;
}
.channel-preview-cover img {
  width: 100%; height: 100%; object-fit: contain;
}
.channel-preview-cover.preview-mode { position: relative; }
.preview-play {
  position: absolute;
  bottom: 16px; left: 16px;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,255,0.5);
  transition: transform 0.15s ease;
  z-index: 2;
}
.preview-play:hover { transform: scale(1.06); }
.preview-play.on svg { transform: translateX(0); }
.preview-play:not(.on) svg { transform: translateX(1.5px); }
.preview-live {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(10,10,20,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 2;
}
.preview-live-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,0.6);
}
.preview-live-dot.on { animation: liveBlink 1.4s ease-in-out infinite; }
@keyframes liveBlink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,77,0.55); opacity: 1; }
  50%      { box-shadow: 0 0 0 7px rgba(255,77,77,0);   opacity: 0.8; }
}
.preview-wave {
  position: absolute;
  bottom: 18px; right: 16px;
  display: flex; align-items: flex-end; gap: 2px;
  height: 34px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(10,10,20,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
}
.preview-wave-bar {
  display: block;
  width: 2px;
  background: #fff;
  border-radius: 2px;
  transition: height 0.18s ease-out;
}
.preview-now {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.preview-now-art {
  width: 36px; height: 36px; border-radius: 8px;
  background-size: cover; background-position: center;
  flex: 0 0 auto;
}
.preview-now-kbps {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  white-space: nowrap;
}
.chan-info { flex: 1; min-width: 0; }
.chan-name { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.chan-desc { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.chan-tag {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
}

/* ===== CherryPick guest phone mockup ===== */
.cp-phone-stage {
  margin-top: 28px;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
}
.cp-phone-tabs {
  display: inline-flex;
  background: var(--line-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.cp-tab {
  border: none; background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: all 0.15s ease;
}
.cp-tab:hover { color: var(--ink); }
.cp-tab.on {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.cp-tab svg { flex: 0 0 auto; }

.cp-phone {
  position: relative;
  width: 260px;
  background: #0a0a14;
  border-radius: 38px;
  padding: 9px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 60px -20px rgba(20, 20, 40, 0.35),
    0 6px 16px -6px rgba(20, 20, 40, 0.2);
}
.cp-phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 24px;
  background: #0a0a14;
  border-radius: 999px;
  z-index: 2;
}
.cp-phone-screen {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
}
.cp-phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.cp-phone-caption {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.cp-phone-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(0,0,255,0.45);
  animation: cpPulse 1.8s ease-out infinite;
}
@keyframes cpPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,255,0.45); }
  100% { box-shadow: 0 0 0 9px rgba(0,0,255,0); }
}

.cp-url-strip {
  margin-top: 22px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--line-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.cp-url-strip svg { color: var(--blue); flex: 0 0 auto; }
.cp-url-tag {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* QR / Song request */
.qr-stage {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) { .qr-stage { grid-template-columns: 1fr; } }

.qr-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.qr-card.dark {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.qr-screen {
  margin-top: 24px;
  background: #0a0a14;
  border-radius: 22px;
  padding: 24px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.phone {
  max-width: 280px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  border: 10px solid #1a1a22;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.phone-head {
  padding: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: var(--muted-2);
}
.phone-body { padding: 8px 16px 20px; }
.search-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s ease;
}
.search-input:focus { border-color: var(--blue); }
.song-list { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.song-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 6px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.song-item:hover { background: var(--bg-soft); }
.song-art {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0000ff, #0000ff);
  flex: 0 0 auto;
}
.song-art.alt-1 { background: linear-gradient(135deg, #ff5a00, #ff9c5a); }
.song-art.alt-2 { background: linear-gradient(135deg, #00b88a, #4cdfb4); }
.song-art.alt-3 { background: linear-gradient(135deg, #b300ff, #ff5ae0); }
.song-art.alt-4 { background: linear-gradient(135deg, #1a1a22, #555); }
.song-info { flex: 1; min-width: 0; }
.song-title { font-size: 12.5px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: -0.01em; }
.song-artist { font-size: 11px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.song-action {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  font-size: 14px;
  flex: 0 0 auto;
}

.queue-feed { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.queue-item {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex; gap: 12px; align-items: center;
  animation: slide-in 0.6s ease;
}
@keyframes slide-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.queue-num {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--muted-2);
  width: 18px;
}
.queue-meta { flex: 1; }
.queue-track { font-size: 13.5px; color: #fff; font-weight: 500; letter-spacing: -0.01em; }
.queue-from { font-size: 11px; color: #8a8aa0; margin-top: 2px; }
.queue-from b { color: var(--blue); font-weight: 500; }
.queue-status {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,255,0.18);
  color: #0000ff;
}
.queue-status.playing {
  background: rgba(0, 255, 130, 0.15);
  color: #5fffae;
}

/* CherryPick photo callouts */
.cp-photos {
  margin-top: 56px; margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) { .cp-photos { grid-template-columns: 1fr; } }
.cp-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}
.cp-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.cp-photo-overlay {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 16px 18px;
}
.cp-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 4px;
}
.cp-photo-overlay p { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* QR code */
.qr-block {
  margin-top: 24px;
  display: flex; align-items: center; gap: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.qr-svg { width: 92px; height: 92px; background: #fff; padding: 8px; border-radius: 10px; flex: 0 0 auto; }
.qr-stickers {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.qr-sticker-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.qr-sticker-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.qr-sticker-item:first-child img { object-position: 60% 50%; }
.qr-sticker-item:last-child img { object-position: 50% 35%; }
.qr-sticker-label {
  padding: 10px 12px 12px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 11.5px;
  color: #b8b8c8;
  line-height: 1.4;
}
.qr-sticker-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #0000ff;
  text-transform: uppercase;
}
.qr-block-text { font-size: 13px; color: #b8b8c8; line-height: 1.45; }
.qr-block-text b { color: #fff; font-weight: 500; }

/* spnSound */
.sound-stage {
  margin-top: 64px;
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  overflow: hidden;
  position: relative;
}
.sound-stage::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,0,255,0.6), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.sound-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
  align-items: center;
}
@media (max-width: 980px) { .sound-cols { grid-template-columns: 1fr; } }
.sound-stage h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: -0.04em;
  max-width: 14ch;
}
.sound-stage h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #0000ff;
  font-weight: 400;
}
.sound-stage p { color: #a5a5b8; margin-top: 22px; font-size: 16px; max-width: 42ch; }
.sound-chips { margin-top: 28px; display: flex; gap: 8px; flex-wrap: wrap; }
.sound-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px;
  color: #d0d0e0;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.03em;
}

.eq-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px;
  backdrop-filter: blur(20px);
}
.eq-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.eq-head-title { font-family: 'Sora', sans-serif; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #8a8aa0; }
.eq-head-val { font-family: 'Sora', sans-serif; font-size: 12px; color: var(--blue); }

.eq-bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  align-items: end;
  height: 160px;
}
.eq-bar {
  position: relative;
  background: linear-gradient(180deg, var(--blue), #0000ff);
  border-radius: 6px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 8px;
}
.eq-labels { display: grid; grid-template-columns: repeat(10, 1fr); gap: 12px; margin-top: 10px; }
.eq-label { font-family: 'Sora', sans-serif; font-size: 10px; color: #6a6a80; text-align: center; }

.waveform {
  margin-top: 28px;
  display: flex; gap: 3px; align-items: center;
  height: 50px;
}
.wave-bar {
  flex: 1;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: height 0.15s ease;
}
.wave-bar.active { background: var(--blue); }

/* Venue dashboard */
.venue-stage {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .venue-stage { grid-template-columns: 1fr; } }

.venue-mock {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.venue-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.venue-brand { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; letter-spacing: -0.01em; }
.venue-search {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.venue-tabs {
  display: flex; gap: 4px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.venue-tab {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}
.venue-tab.active { background: var(--line-2); color: var(--ink); }
.venue-table { padding: 8px; }
.venue-row {
  display: grid;
  grid-template-columns: 24px 1.4fr 1fr 100px 80px 70px;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  border-radius: 10px;
  font-size: 13px;
  transition: background 0.15s ease;
  cursor: pointer;
}
.venue-row:hover { background: #fff; }
.venue-row + .venue-row { border-top: 1px solid var(--line-2); }
.venue-row .v-status {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00b870;
  box-shadow: 0 0 0 4px rgba(0,184,112,0.12);
}
.venue-row .v-status.off { background: #c5c5d0; box-shadow: none; }
.venue-row .v-name { font-weight: 500; letter-spacing: -0.01em; }
.venue-row .v-channel { color: var(--muted); font-family: 'Sora', sans-serif; font-size: 12px; }
.venue-row .v-vol {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  color: var(--muted-2);
}
.venue-row .v-zone {
  background: var(--line-2);
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 6px;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.venue-row .v-action {
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
  text-align: right;
}
@media (max-width: 720px) {
  .venue-row { grid-template-columns: 16px 1fr 50px; }
  .venue-row .v-channel, .venue-row .v-zone, .venue-row .v-action { display: none; }
}

/* Stats */
.stats-stage {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
@media (max-width: 820px) {
  .stats-stage { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: none; }
}
.stat-val {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-val em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.stat-label {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

/* Pricing — 3 tier */
.price-trio {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 980px) { .price-trio { grid-template-columns: 1fr; } }

.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pcard-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}
.pcard-blue { background: var(--blue); color: #fff; border-color: transparent; }
.pcard-blue .pcard-sub, .pcard-blue .pcard-note { color: rgba(255,255,255,0.8); }
.pcard-blue .pcard-list li { color: rgba(255,255,255,0.95); }
.pcard-blue .pcard-list svg { color: #fff; }
.pcard-blue .price-toggle { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.pcard-blue .price-toggle button { color: rgba(255,255,255,0.7); }
.pcard-blue .price-toggle button.on { background: #fff; color: var(--blue); }

.pcard-dark { background: var(--ink); color: #fff; border-color: transparent; position: relative; }
.pcard-dark::before {
  content: "";
  position: absolute; inset: auto -20% -40% auto;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,0,255,0.4), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.pcard-dark > * { position: relative; z-index: 1; }
.pcard-dark .pcard-sub, .pcard-dark .pcard-note { color: #a5a5b8; }
.pcard-dark .pcard-list li { color: #d5d5e0; }
.pcard-dark .pcard-list svg { color: #0000ff; }

.pcard-head { margin-bottom: 20px; }
.pcard-label { font-size: 22px; font-weight: 500; letter-spacing: -0.025em; }
.pcard-sub { margin-top: 4px; font-size: 13.5px; color: var(--muted); }

.pcard .price-toggle {
  display: inline-flex; align-self: flex-start;
  background: var(--line-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 16px;
}
.pcard .price-toggle button {
  border: none; background: transparent;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11.5px; font-family: inherit;
  color: var(--muted);
  cursor: pointer;
}
.pcard .price-toggle button.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.pcard-amt { display: flex; align-items: baseline; gap: 6px; }
.pcard-currency { font-size: 28px; font-weight: 500; letter-spacing: -0.03em; }
.pcard-num { font-size: 56px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.pcard-per { font-size: 14px; color: var(--muted); }
.pcard-blue .pcard-per { color: rgba(255,255,255,0.7); }
.pcard-dark .pcard-num { font-size: 44px; }

.pcard-note { margin-top: 8px; font-size: 13px; color: var(--muted); }

.pcard-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.pcard-blue .pcard-list { border-top-color: rgba(255,255,255,0.15); }
.pcard-dark .pcard-list { border-top-color: rgba(255,255,255,0.1); }
.pcard-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; letter-spacing: -0.005em; color: var(--ink-2); }
.pcard-list li svg { color: var(--blue); flex: 0 0 auto; margin-top: 3px; }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--line-2); }
.pcard-blue .btn-light { background: #fff; color: var(--blue); }
.pcard-blue .btn-light:hover { background: var(--line-2); }
.pcard-dark .btn-light { background: #fff; color: var(--ink); }

/* legacy two-card pricing — keep for back-compat but unused now */
.pricing-stage { display: none; }
@media (max-width: 900px) { .pricing-stage { grid-template-columns: 1fr; } }
.price-card {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: auto auto -50% -20%;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,0,255,0.45), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.price-card > * { position: relative; z-index: 1; }
.price-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 3px;
}
.price-toggle button {
  border: none; background: transparent; color: #b8b8c8;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12.5px;
  font-family: inherit;
}
.price-toggle button.on { background: #fff; color: var(--ink); }
.price-amt {
  margin-top: 28px;
  display: flex; align-items: baseline; gap: 8px;
}
.price-num {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-per { color: #a5a5b8; font-size: 16px; }
.price-note { margin-top: 8px; color: #a5a5b8; font-size: 13px; }
.price-card .btn { margin-top: 28px; }
.price-features {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
}
.price-features h4 { font-size: 14px; font-family: 'Sora', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.price-features ul {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
}
@media (max-width: 600px) { .price-features ul { grid-template-columns: 1fr; } }
.price-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
.price-features li svg { flex: 0 0 auto; margin-top: 2px; color: var(--blue); }

/* Problem ↔ Solution narrative */
.ps {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ps-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 900px) { .ps-head { grid-template-columns: 1fr; gap: 32px; } }
.ps-col-head { display: flex; flex-direction: column; gap: 18px; }
.ps-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.ps-eyebrow-dim { color: var(--muted-2); }
.ps-eyebrow-blue { color: var(--blue); }
.ps-title {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 500;
  max-width: 22ch;
}
.ps-dim { color: var(--muted-2); }
.ps-strike { text-decoration: line-through; text-decoration-color: rgba(0,0,255,0.45); text-decoration-thickness: 2px; }

.ps-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.ps-table-head {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.ps-th {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.ps-th-problem { color: var(--muted-2); }
.ps-th-solution { color: var(--blue); }
.ps-th-divider { color: transparent; }

.ps-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  border-bottom: 1px solid var(--line-2);
  align-items: stretch;
}
.ps-row:last-child { border-bottom: none; }
.ps-cell {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 24px;
}
.ps-cell-problem { color: var(--muted); }
.ps-cell-solution { color: var(--ink); background: rgba(0,0,255,0.025); }
.ps-cell p { font-size: 15.5px; line-height: 1.5; letter-spacing: -0.005em; }
.ps-bullet {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 500;
  margin-top: 1px;
}
.ps-bullet-problem { background: var(--line); color: var(--muted-2); }
.ps-bullet-solution { background: var(--blue); color: #fff; }
.ps-arrow {
  display: grid; place-items: center;
  color: var(--blue);
  opacity: 0.5;
}
@media (max-width: 720px) {
  .ps-row, .ps-table-head { grid-template-columns: 1fr; }
  .ps-arrow { display: none; }
  .ps-cell-solution { border-top: 1px solid var(--line-2); }
  .ps-th-divider { display: none; }
}

/* CTA */
.ps + .cta-stage,
.ps + .wrap .cta-stage { margin-top: 0; }

/* Real-product-style venue dashboard */
.venue-mock-full {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 240px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) { .venue-mock-full { grid-template-columns: 1fr; } .vsidebar { display: none; } }
/* On phones the venue dashboard mockup (venues list + settings tabs preview)
   makes the page very long for little payoff — the hero text and sub already
   convey the panel story. Hide the whole mock under 700px so mobile users
   keep scrolling to the next section instead. */
@media (max-width: 700px) { .venue-mock-full { display: none; } }

.vsidebar {
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  padding: 22px 14px 16px;
  display: flex; flex-direction: column;
}
.vsidebar-logo { padding: 6px 10px 22px; }
.vsidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.vside-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
  cursor: pointer;
}
.vside-link:hover { background: #fff; }
.vside-link.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.vside-link.active svg { color: var(--blue); }

.vsidebar-cta { margin-top: auto; padding: 14px 10px 6px; display: flex; flex-direction: column; gap: 14px; }
.vside-download {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: #00b870;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: -0.005em;
  cursor: pointer;
}
.vside-acct { padding: 10px; border-top: 1px solid var(--line); }
.vside-acct-name { font-size: 12px; color: var(--muted-2); }
.vside-acct-role { font-size: 11px; color: var(--blue); margin-top: 2px; letter-spacing: 0.04em; }

.vmain { padding: 28px 32px; min-width: 0; }
.vmain-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.vmain-head h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.025em; }
.vmain-head p { margin-top: 4px; font-size: 13.5px; color: var(--muted); }
.vbtn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  font-family: inherit;
  letter-spacing: -0.005em;
  box-shadow: 0 6px 14px -8px rgba(0,0,255,0.4);
  cursor: pointer;
}

.vbanner {
  margin-top: 20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,255,0.04);
  border: 1px solid rgba(0,0,255,0.1);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.vbanner b { font-weight: 500; }
.vbanner-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  flex: 0 0 auto;
  animation: pulse 2.2s infinite;
}
.vbanner-cta { margin-left: auto; color: var(--blue); font-weight: 500; font-size: 13px; cursor: pointer; white-space: nowrap; }

.vlist { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.vitem { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.vitem-head {
  display: grid;
  grid-template-columns: 18px 2fr 1.4fr 80px 90px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
}
.vitem-head:hover { background: var(--bg-soft); }
.vitem-arrow { font-size: 10px; color: var(--muted-2); transition: transform 0.15s ease; }
.vitem.open .vitem-arrow { transform: rotate(0deg); }
.vitem:not(.open) .vitem-arrow { transform: rotate(-90deg); }
.vitem-brand { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.vitem-city { font-size: 12.5px; color: var(--muted); }
.vitem-zonecount { font-size: 11.5px; color: var(--muted-2); }
.vitem-add { font-size: 12px; color: var(--blue); font-weight: 500; text-align: right; }
@media (max-width: 720px) { .vitem-head { grid-template-columns: 18px 1fr 80px; } .vitem-city, .vitem-zonecount { display: none; } }

.vitem-body { border-top: 1px solid var(--line-2); padding: 4px 8px 8px 8px; }

/* Smooth accordion via grid-template-rows trick. The bodywrap collapses to 0fr
   when closed and animates to 1fr when open — content height resolves naturally. */
.vitem-bodywrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}
.vitem.open .vitem-bodywrap { grid-template-rows: 1fr; }
.vitem-bodyclip { overflow: hidden; min-height: 0; }
.vitem-bodywrap .vitem-body {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.32s ease 0.04s, transform 0.32s ease 0.04s;
}
.vitem.open .vitem-bodywrap .vitem-body {
  opacity: 1;
  transform: translateY(0);
}
.vzone-row {
  display: grid;
  grid-template-columns: 14px 24px 1fr 1.4fr 80px 88px 80px;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
}
.vzone-row:hover { background: var(--bg-soft); }
.vzone-status {
  width: 8px; height: 8px; border-radius: 50%; background: #00b870;
  box-shadow: 0 0 0 3px rgba(0,184,112,0.15);
}
.vzone-status.off { background: #c5c5d0; box-shadow: none; }
.vzone-icon { color: var(--muted-2); display: grid; place-items: center; }
.vzone-name { font-weight: 500; letter-spacing: -0.005em; }
.vzone-channel { color: var(--blue); font-weight: 500; font-size: 12.5px; }
.vzone-pill {
  background: rgba(0,184,112,0.12); color: #007a4a;
  font-size: 10.5px; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 999px;
  text-align: center;
}
.vzone-btn {
  background: #fff; border: 1px solid var(--line);
  padding: 6px 10px; border-radius: 6px;
  font: inherit; font-size: 11.5px; font-weight: 500;
  cursor: pointer;
}
.vzone-btn.primary { background: var(--blue); color: #fff; border-color: var(--blue); }
@media (max-width: 720px) {
  .vzone-row { grid-template-columns: 14px 1fr 80px; }
  .vzone-icon, .vzone-channel, .vzone-pill, .vzone-btn:not(.primary) { display: none; }
}

/* Settings modal preview */
.vmodal-wrap {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.vmodal-head {
  padding: 16px 24px 12px;
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: baseline; gap: 14px;
}
.vmodal-eyebrow { font-size: 11px; color: var(--muted-2); letter-spacing: 0.04em; }
.vmodal-head h4 { font-size: 17px; font-weight: 500; letter-spacing: -0.02em; }
.vmodal-x { margin-left: auto; color: var(--muted-2); font-size: 18px; cursor: pointer; }
.vmodal-tabs {
  display: flex; gap: 4px; padding: 8px 18px;
  border-bottom: 1px solid var(--line-2);
  overflow-x: auto;
}
.vmodal-tab {
  font-size: 12.5px;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
}
.vmodal-tab.active { background: rgba(0,0,255,0.06); color: var(--blue); font-weight: 500; }

.vmodal-body { padding: 22px 24px 26px; }
.vmodal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 10px;
  margin-bottom: 22px;
}
.vfield label { display: block; font-size: 11px; color: var(--muted-2); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.vfield > div { margin-top: 4px; font-size: 14px; letter-spacing: -0.005em; }
.vfield-blue { color: var(--blue); font-weight: 500; }

.vmodal-section-h { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; margin-top: 12px; }
.vmodal-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

.vhours { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; margin-bottom: 18px; }
.vinput {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.vinput label { font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.vinput span { font-size: 14px; flex: 1; }
.vinput svg { color: var(--muted-2); }

.vdays { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; margin-bottom: 18px; }
.vday {
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 6px;
  font: inherit; font-size: 12.5px; cursor: pointer;
  color: var(--ink);
}
.vday.on { background: rgba(0,0,255,0.08); border-color: var(--blue); color: var(--blue); font-weight: 500; }

.vage, .vstay {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 12px; margin-bottom: 18px;
}
@media (max-width: 720px) { .vage, .vstay { grid-template-columns: 1fr 1fr; } }
.vage-card {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
}
.vage-card:hover { border-color: #c0c0d0; }
.vage-card.on { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,0,255,0.08); }
.vage-k { font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em; }
.vage-d { font-size: 11px; color: var(--muted-2); margin-top: 4px; line-height: 1.4; }
.vstay-sub { font-size: 11px; color: var(--muted-2); margin-top: 2px; font-weight: 500; }
.vstay { grid-template-columns: 1fr 1fr; }

.vmodal-save { margin-top: 18px; display: flex; }

.vmini-player {
  position: absolute;
  right: 16px; bottom: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
  width: 240px;
}
.vmini-eyebrow { font-size: 10px; color: #8a8aa0; letter-spacing: 0.04em; }
.vmini-row { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.vmini-cover { width: 28px; height: 28px; border-radius: 6px; background: linear-gradient(135deg, #ff5a00, #ffb86b); flex: 0 0 auto; }
.vmini-meta { flex: 1; min-width: 0; }
.vmini-track { font-size: 12.5px; font-weight: 500; letter-spacing: -0.01em; }
.vmini-artist { font-size: 11px; color: #a5a5b8; }
.vmini-play {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue); color: #fff;
  border: none;
  display: grid; place-items: center;
  font-family: inherit;
  cursor: pointer;
}
@media (max-width: 600px) { .vmini-player { display: none; } }

/* ===== Platforms · spnBox ===== */
.plat-stage {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 900px) { .plat-stage { grid-template-columns: 1fr; } }

.plat-os, .plat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.plat-os-eyebrow, .plat-box-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--blue);
  font-weight: 500;
}
.plat-os h3, .plat-box h3 { margin-top: 12px; font-size: 26px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
.plat-os p, .plat-box p { margin-top: 12px; color: var(--muted); font-size: 14.5px; line-height: 1.5; max-width: 38ch; }

.plat-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 600px) { .plat-grid { grid-template-columns: repeat(3, 1fr); } }
.plat-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  padding: 16px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}
.plat-card-icon { color: var(--ink); display: grid; place-items: center; }
.plat-card-name { font-size: 12px; letter-spacing: -0.005em; }

/* spnBox device */
.plat-box {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.plat-box::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(120,140,200,0.3), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.plat-box > * { position: relative; z-index: 1; }
.plat-box .plat-os-eyebrow,
.plat-box .plat-box-eyebrow { color: #0000ff; }
.plat-box p { color: #a5a5b8; }

.spnbox-stage {
  margin-top: 36px;
  display: grid; place-items: center;
  padding: 28px 0;
}
.spnbox {
  position: relative;
  width: 240px; height: 240px;
  transform-style: preserve-3d;
  transform: rotateX(54deg) rotateZ(-32deg);
}
.spnbox-top, .spnbox-side, .spnbox-shadow {
  position: absolute;
  inset: 0;
}
.spnbox-top {
  background: linear-gradient(140deg, #d8dadd 0%, #b6b9bf 45%, #c8cbd0 100%);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -2px 0 rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  transform: translateZ(0);
}
.spnbox-led {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #5fffae 0%, #00b870 70%);
  box-shadow: 0 0 12px rgba(0,255,170,0.5);
}
.spnbox-logo { opacity: 0.45; filter: grayscale(0.8) brightness(0.6); transform: rotate(0deg); }
.spnbox-side {
  background: linear-gradient(180deg, #8a8d93 0%, #5e6166 100%);
  border-radius: 18px;
  transform: translateZ(-30px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.spnbox-shadow {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45), transparent 65%);
  filter: blur(20px);
  transform: translateZ(-40px) translateY(40px) scale(0.85);
  z-index: -1;
  pointer-events: none;
}
.spnbox-caption {
  margin-top: 16px;
  display: flex; gap: 10px;
  font-size: 12px;
  color: #8a8aa0;
  letter-spacing: 0.04em;
}

.plat-box-specs {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
}
@media (max-width: 600px) { .plat-box-specs { grid-template-columns: 1fr 1fr; } }
.plat-box-specs > div { display: flex; flex-direction: column; gap: 4px; }
.plat-box-specs span { font-size: 11px; color: #8a8aa0; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.plat-box-specs b { font-size: 13.5px; font-weight: 500; letter-spacing: -0.005em; color: #fff; }

/* ===== Bento grid — Apple-style product lineup ===== */
.bento {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bento-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 360px;
}
a.bento-card { cursor: pointer; }
a.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bento-dark { background: var(--ink); color: #fff; border-color: transparent; }
.bento-dark::before {
  content: ""; position: absolute;
  inset: -30% -10% auto auto;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 80, 255, 0.45), transparent 60%);
  filter: blur(40px); pointer-events: none;
  z-index: 0;
}
.bento-dark > * { position: relative; z-index: 1; }

.bento-head {
  padding: 36px 36px 0;
  display: flex; flex-direction: column;
}
.bento-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 500;
  text-transform: none;
}
.bento-eyebrow.on-dark { color: #0000ff; }
.bento-title {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 18ch;
  color: var(--ink);
}
.bento-title.on-dark { color: #fff; }
.bento-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 38ch;
}
.bento-sub.on-dark { color: #a5a5b8; }
.bento-cta {
  margin-top: 22px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.bento-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.bento-pill svg { color: var(--ink); }
.bento-pill-primary { background: var(--blue); border-color: transparent; color: #fff; }
.bento-pill-primary svg { color: #fff; }
.bento-pill-light { background: #fff; border-color: transparent; color: var(--ink); }
.bento-dark .bento-pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.bento-dark .bento-pill svg { color: #fff; }

.bento-art {
  margin-top: auto;
  padding: 28px 36px 36px;
  display: flex; align-items: flex-end; justify-content: center;
  flex: 1;
  min-height: 200px;
}

/* Venue (large hero) */
.bento-venue { grid-column: span 2; grid-row: span 1; min-height: 460px; }
.bento-venue .bento-head { padding-right: 0; max-width: 44%; padding-bottom: 36px; }
.bento-venue { display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch; }
.bento-venue-art { padding: 36px 36px 36px 0; align-items: center; }
.bento-venue-window {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(20, 20, 40, 0.2);
}
.bvw-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.bvw-dot { width: 9px; height: 9px; border-radius: 50%; background: #d0d0d8; }
.bvw-dot:nth-child(1) { background: #ff5f57; }
.bvw-dot:nth-child(2) { background: #ffbd2e; }
.bvw-dot:nth-child(3) { background: #28c940; }
.bvw-url {
  margin-left: 14px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
}
.bvw-body { display: grid; grid-template-columns: 130px 1fr; min-height: 240px; }
.bvw-side {
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.bvw-side-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 500;
}
.bvw-side-row.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.bvw-side-i { width: 12px; height: 12px; border-radius: 3px; background: var(--blue); opacity: 0.25; }
.bvw-side-row.active .bvw-side-i { opacity: 1; }
.bvw-main { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.bvw-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
}
.bvw-row-name { font-weight: 500; color: var(--ink); }
.bvw-row-ch { color: var(--blue); font-size: 11.5px; letter-spacing: -0.005em; }
.bvw-row-pill {
  font-family: 'Sora', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--line-2);
  color: var(--muted-2);
}
.bvw-row-pill.live { background: #e5fbed; color: #00733b; }

/* spnBox */
.bento-spnbox-art .spnbox-stage { margin-top: 0; padding: 0; }

/* Remote */
.bento-remote .bento-art { padding-top: 0; }
.bento-phone {
  width: 200px;
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 16px 14px 14px;
  box-shadow: 0 20px 40px -20px rgba(20,20,40,0.18);
}
.bento-phone-head {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}
.bento-phone-cover {
  margin-top: 12px;
  width: 100%; aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(135deg, #0033ff 0%, #1a8bff 100%);
  position: relative; overflow: hidden;
}
.bento-phone-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.25), transparent 50%);
}
.bento-phone-meta { margin-top: 14px; }
.bento-phone-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.bento-phone-track { margin-top: 4px; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.bento-phone-artist { font-size: 11.5px; color: var(--muted); }
.bento-phone-ctrls {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.bpc-btn {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
}
.bpc-play {
  width: 40px; height: 40px;
  background: var(--blue);
  color: #fff;
  border-color: transparent;
}

/* CherryPick */
.bento-cherry { background: var(--ink); color: #fff; border-color: transparent; min-height: 380px; }
.bento-cherry::before {
  content: ""; position: absolute;
  inset: -30% -10% auto auto;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 80, 255, 0.45), transparent 60%);
  filter: blur(40px); pointer-events: none;
  z-index: 0;
}
.bento-cherry > * { position: relative; z-index: 1; }
.bento-cherry-art { padding: 0; margin-top: 18px; min-height: 0; }
.bento-cherry-art img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: 60% 40%;
  display: block;
}

/* Apps */
.bento-apps {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.bento-apps .bento-head {
  flex: 0 0 auto;
}
.apps-split {
  margin-top: auto;
  padding: 24px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apps-group + .apps-group {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.apps-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.vr-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.vr-v {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(0,0,255,0.4);
}
.vr-r {
  background: var(--ink);
  color: #fff;
}
.apps-group-title {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.apps-group-sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.apps-group-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.apps-group-icons .bento-app {
  flex: 0 0 auto;
  flex-direction: row;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.apps-group-icons .bento-app:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}
.apps-group-icons .bento-app-icon {
  width: 16px;
  height: 16px;
}
.apps-group-icons .bento-app-icon svg {
  width: 16px;
  height: 16px;
}
.apps-group-icons .bento-app-name {
  font-size: 12.5px;
  letter-spacing: -0.005em;
}

/* legacy Apps grid (unused now) */
.bento-apps-art {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: stretch;
  padding: 22px 36px 36px;
}
.bento-app {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
}
.bento-app-icon { color: var(--ink); display: grid; place-items: center; }
.bento-app-name { letter-spacing: -0.005em; }

@media (max-width: 1000px) {
  .bento { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr; }
  .bento-spnbox, .bento-apps { grid-column: auto; }
  .bento-apps-art { grid-template-columns: repeat(3, 1fr); }
}

/* legacy plat-stage hidden when bento present */
.bento + .plat-stage { display: none; }

/* ===== spnDirector real-screenshot showcase ===== */
.ds-stage {
  margin-top: 56px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.ds-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 700px) { .ds-tabs { grid-template-columns: 1fr; } }
.ds-tab {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.ds-tab:hover { border-color: var(--ink-2); }
.ds-tab.on {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,0,255,0.08), var(--shadow-sm);
}
.ds-tab-l {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ds-tab.on .ds-tab-l { color: var(--blue); }
.ds-tab-s {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
}

.ds-window {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(20, 20, 40, 0.25);
}
.ds-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #fdfdff 0%, #f6f6fa 100%);
  border-bottom: 1px solid var(--line);
}
.ds-dot { width: 11px; height: 11px; border-radius: 50%; }
.ds-dot:nth-child(1) { background: #ff5f57; }
.ds-dot:nth-child(2) { background: #ffbd2e; }
.ds-dot:nth-child(3) { background: #28c940; }
.ds-url {
  margin-left: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  flex: 0 1 auto;
  max-width: 480px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ds-url svg { color: #28c940; flex: 0 0 auto; }
.ds-bar-r {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
}
.ds-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(40, 201, 64, 0.12);
  color: #00733b;
  border: 1px solid rgba(40, 201, 64, 0.2);
}
.ds-pill-dot { width: 6px; height: 6px; border-radius: 999px; background: #00b35a; }
.ds-bar-user {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0033ff, #1a8bff);
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ds-screen {
  background: #fafafd;
  padding: 0;
  display: block;
  position: relative;
}
.ds-screen img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}

.ds-caption {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 4px;
  margin-top: 4px;
  padding: 0 16px;
}
.ds-caption-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.ds-caption > span:last-child {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.55;
}

/* ===== spnDirector panel mockup ===== */
.sd-panel {
  position: relative;
  margin-top: 56px;
  background: #0a0a14;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 20px;
  display: flex; flex-direction: column;
  gap: 16px;
  box-shadow: 0 40px 80px -40px rgba(20, 20, 40, 0.35);
}
.sd-panel::before {
  content: "";
  position: absolute;
  inset: -30% 30% auto auto;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 80, 255, 0.35), transparent 60%);
  filter: blur(40px); pointer-events: none;
  z-index: 0;
}
.sd-panel > * { position: relative; z-index: 1; }

.sd-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sd-bar-l { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sd-bar-r { display: flex; align-items: center; gap: 10px; }
.sd-app-mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--blue);
  display: grid; place-items: center;
  color: #fff;
}
.sd-app-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #fff;
}
.sd-bar-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.08); margin: 0 6px; }
.sd-crumb { font-size: 12.5px; color: #8a8aa0; letter-spacing: -0.005em; }
.sd-crumb-active { color: #fff; font-weight: 500; }
.sd-bar-sep { color: #555567; font-size: 12px; }
.sd-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #b8b8c8;
  border: 1px solid rgba(255,255,255,0.06);
}
.sd-pill-on { background: rgba(40, 201, 64, 0.12); color: #5fffae; border-color: rgba(40, 201, 64, 0.2); }
.sd-pill-dot { width: 6px; height: 6px; border-radius: 999px; background: #5fffae; }
.sd-user {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0033ff, #1a8bff);
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 800px) { .sd-stats { grid-template-columns: 1fr 1fr; } }
.sd-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.sd-stat-l {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8aa0;
  font-weight: 500;
}
.sd-stat-v {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sd-stat-health { grid-column: span 1; }
.sd-health-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}
.sd-health-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #5fffae 0%, #5fffae 99.6%, #ffa940 99.6%);
  border-radius: 999px;
}
.sd-stat-sub {
  margin-top: 4px;
  display: flex; gap: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  color: #8a8aa0;
  letter-spacing: 0.02em;
}
.sd-stat-sub b {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--blue);
  margin-right: 4px;
  vertical-align: middle;
}
.sd-dot-green  { background: #5fffae !important; }
.sd-dot-orange { background: #ffa940 !important; }

.sd-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
}
.sd-cols-bot { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) {
  .sd-cols { grid-template-columns: 1fr; }
  .sd-cols-bot { grid-template-columns: 1fr; }
}

.sd-side { display: flex; flex-direction: column; gap: 12px; }

.sd-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; flex-direction: column;
}
.sd-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 12px;
}
.sd-card-head h4 {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.sd-card-sub {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: #6a6a80;
  letter-spacing: 0.04em;
}

.sd-table-head {
  display: grid;
  grid-template-columns: 2fr 1.6fr 36px 80px;
  gap: 12px;
  padding: 0 4px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a6a80;
  font-weight: 500;
}
.sd-table { display: flex; flex-direction: column; }
.sd-row {
  display: grid;
  grid-template-columns: 2fr 1.6fr 36px 80px;
  gap: 12px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12.5px;
}
.sd-row:last-child { border-bottom: none; }
.sd-row-title {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sd-row-artist {
  color: #b8b8c8;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sd-row-time {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: #6a6a80;
  letter-spacing: 0.02em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Category letter badge — A green, B blue, C orange, S purple */
.sd-cat {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 5px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}
.sd-cat-a { background: rgba(95, 255, 174, 0.15); color: #5fffae; }
.sd-cat-b { background: rgba(120, 160, 255, 0.18); color: #9ab8ff; }
.sd-cat-c { background: rgba(255, 169, 64, 0.18); color: #ffc278; }
.sd-cat-s { background: rgba(180, 120, 255, 0.18); color: #d2a8ff; }
.sd-cat-mini { width: 16px; height: 16px; font-size: 9px; border-radius: 4px; }

.sd-cat-rows { display: flex; flex-direction: column; gap: 8px; }
.sd-cat-row {
  display: grid;
  grid-template-columns: 24px 1fr 48px;
  gap: 10px;
  align-items: center;
}
.sd-cat-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.sd-cat-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #0000ff, #1a8bff);
  border-radius: 999px;
}
.sd-cat-n {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  color: #fff;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.sd-hourly {
  display: flex; align-items: flex-end; gap: 3px;
  height: 60px;
  padding-top: 4px;
}
.sd-hourly-bar {
  flex: 1;
  background: linear-gradient(180deg, #0000ff, #1a8bff);
  border-radius: 2px;
  opacity: 0.85;
}
.sd-hourly-axis {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  color: #6a6a80;
  letter-spacing: 0.04em;
}

.sd-list { display: flex; flex-direction: column; gap: 8px; }
.sd-list-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sd-list-row:last-child { border-bottom: none; }
.sd-list-i {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: #6a6a80;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.sd-list-m { min-width: 0; }
.sd-list-t {
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 8px;
}
.sd-list-s {
  margin-top: 2px;
  font-size: 11.5px;
  color: #8a8aa0;
}
.sd-list-n {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  color: #fff;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* Library grid */
.sd-library { padding-bottom: 20px; }
.sd-lib-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .sd-lib-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .sd-lib-grid { grid-template-columns: repeat(2, 1fr); } }
.sd-lib-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.sd-lib-cover {
  position: relative;
  aspect-ratio: 1;
  background: var(--ink);
  overflow: hidden;
}
.sd-lib-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sd-lib-genre {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sd-lib-status {
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #28c940;
  box-shadow: 0 0 0 2px rgba(10,10,20,0.45);
}
.sd-lib-dur {
  position: absolute;
  bottom: 8px; right: 8px;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(10,10,20,0.7);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.sd-lib-meta {
  padding: 10px 12px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.sd-lib-t {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sd-lib-a {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sd-lib-tag { margin-top: 8px; }
.sd-lib-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px;
  border-radius: 5px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.sd-lib-pill b { font-weight: 600; }
.sd-lib-pill-a { background: #e5fbed; color: #00733b; }
.sd-lib-pill-b { background: #eaf1ff; color: #2c4ea3; }
.sd-lib-pill-c { background: #fff0db; color: #a35a00; }
.sd-lib-pill-s { background: #f1e6ff; color: #6b2bb3; }

/* ===== People — Music directors & artists ===== */
.people-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .people-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .people-grid { grid-template-columns: 1fr; } }

.person-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.person-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.18);
}
.person-meta { min-width: 0; }
.person-tag { font-size: 11px; color: var(--blue); letter-spacing: 0.04em; font-weight: 500; display: block; }
.person-meta p { margin-top: 4px; font-size: 13.5px; color: var(--ink-2); letter-spacing: -0.005em; }

.collab-stage {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 40px;
  align-items: start;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px clamp(28px, 4vw, 48px);
}
@media (max-width: 900px) { .collab-stage { grid-template-columns: 1fr; gap: 28px; } }
.collab-h { margin-top: 14px; font-size: clamp(28px, 3.4vw, 40px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.collab-stage p { margin-top: 16px; color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 44ch; }
.collab-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.collab-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; letter-spacing: -0.005em;
}
.collab-list svg { color: var(--blue); flex: 0 0 auto; }

.collab-right {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.collab-chip {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
}

/* ----- Featured collab card (B+ Positive × SpinLoud) ----- */
.collab-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.collab-feature::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%; height: 80%;
  background: radial-gradient(closest-side, rgba(0,0,255,0.08), transparent 70%);
  pointer-events: none;
}
.collab-feature-head { position: relative; z-index: 1; }
.collab-feature-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.collab-feature-title {
  margin-top: 10px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.collab-feature-brand {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.collab-feature-x {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--muted-2);
  line-height: 1;
}
.collab-feature-sub {
  margin-top: 12px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.5;
  max-width: 56ch;
}
.collab-hoodies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
.collab-hoodie {
  margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.collab-hoodie:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.collab-hoodie img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.collab-hoodie figcaption {
  display: flex; flex-direction: column;
  gap: 2px;
  padding: 2px 4px 4px;
}
.collab-hoodie-name {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.collab-hoodie-tag {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.collab-feature-foot {
  display: flex; gap: 8px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.collab-foot-pill {
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
}
@media (max-width: 700px) {
  .collab-hoodies { grid-template-columns: 1fr; }
}


/* ===== Schedule / Program ===== */
.sched-stage { margin-top: 56px; }
.sched-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.sched-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.sched-head h4 { font-size: 16px; font-weight: 500; letter-spacing: -0.015em; }
.sched-sub { margin-top: 4px; font-size: 12.5px; color: var(--muted); }
.sched-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(0,0,255,0.04);
  border: 1px solid rgba(0,0,255,0.12);
  border-radius: 999px;
  font-size: 12.5px; color: var(--blue); font-weight: 500;
}
.sched-toggle-dot { width: 8px; height: 8px; border-radius: 50%; background: #c5c5d0; }
.sched-toggle-dot.on { background: #00b870; box-shadow: 0 0 0 3px rgba(0,184,112,0.15); }

.sched-axis {
  display: grid; grid-template-columns: 88px 1fr;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
}
.sched-axis::before { content: ""; }
.sched-axis { grid-template-columns: 88px repeat(10, 1fr); }
.sched-axis-h { font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.04em; text-align: left; }

.sched-row {
  display: grid; grid-template-columns: 88px 1fr;
  align-items: center;
  margin-top: 12px;
}
.sched-row-label { font-size: 13px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink-2); }
.sched-track {
  display: flex;
  gap: 3px;
  height: 56px;
  border-radius: 10px;
  background: var(--line-2);
  overflow: hidden;
}
.sched-block {
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 12px;
  color: #fff;
  border-radius: 8px;
  font-size: 11.5px;
  letter-spacing: -0.005em;
  overflow: hidden;
  position: relative;
  min-width: 0;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.sched-block:hover { filter: brightness(1.06); }
.sched-block-name { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; font-weight: 500; }

.sched-legend {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 14px 22px;
}
.sched-leg {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
}
.sched-leg span:first-child {
  width: 10px; height: 10px; border-radius: 3px; display: inline-block;
}
@media (max-width: 720px) {
  .sched-axis, .sched-row { grid-template-columns: 60px 1fr; }
  .sched-axis-h { display: none; }
}

/* ===== Lisanslar ===== */
.legal-stage {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 64px);
}
.legal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .legal-grid { grid-template-columns: 1fr; } }
.legal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}
.legal-abbr {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.legal-full { margin-top: 6px; font-size: 12.5px; color: var(--muted); line-height: 1.45; min-height: 36px; }
.legal-check {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: #007a4a;
  padding: 4px 10px;
  background: rgba(0,184,112,0.08);
  border-radius: 999px;
}

/* ===== Onboarding ===== */
.onb-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px) { .onb-grid { grid-template-columns: 1fr; } }
.onb-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.onb-step-num {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.06em;
}
.onb-step-meta h3 { margin-top: 14px; font-size: 22px; font-weight: 500; letter-spacing: -0.025em; }
.onb-step-sub { margin-top: 4px; font-size: 12.5px; color: var(--blue); }
.onb-step-meta p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.onb-step-visual { margin-top: 24px; flex: 1; display: flex; align-items: stretch; }
.onb-step-visual > * { flex: 1; }

.onb-card-web {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--line);
}
.onb-url {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.onb-url-dot { width: 9px; height: 9px; border-radius: 50%; background: #e0e0e8; }
.onb-url-dot:nth-child(1) { background: #ff6258; }
.onb-url-dot:nth-child(2) { background: #ffbe2e; }
.onb-url-dot:nth-child(3) { background: #28c940; }
.onb-url-text {
  margin-left: 10px;
  flex: 1;
  background: #fff; border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px; color: var(--muted-2);
  font-family: 'Sora', sans-serif;
}
.onb-form { padding-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.onb-form label { font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.onb-form .onb-input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.onb-form .vbtn-primary { align-self: flex-start; }

.onb-card-download {
  background: linear-gradient(180deg, #0033ff 0%, #0000ff 100%);
  color: #fff;
  border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column;
  position: relative;
}
.onb-mac-dots { display: flex; gap: 6px; }
.onb-mac-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.onb-card-download svg { margin-top: 28px; }
.onb-dl-label { margin-top: 14px; font-size: 18px; font-weight: 500; letter-spacing: -0.02em; }
.onb-dl-sub { margin-top: 2px; font-size: 12px; color: rgba(255,255,255,0.7); }
.onb-dl-bar { margin-top: 16px; height: 4px; background: rgba(255,255,255,0.18); border-radius: 999px; overflow: hidden; }
.onb-dl-bar-fill {
  height: 100%; width: 62%;
  background: #fff;
  border-radius: 999px;
  animation: onb-dl 3.5s ease-in-out infinite;
}
@keyframes onb-dl {
  0% { width: 12%; }
  50% { width: 78%; }
  100% { width: 12%; }
}
.onb-dl-pct { margin-top: 8px; font-size: 11.5px; color: rgba(255,255,255,0.7); font-feature-settings: 'tnum'; }

.onb-card-pair {
  background: #050518;
  color: #fff;
  border-radius: 14px;
  padding: 26px 20px;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.onb-card-pair::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto auto;
  width: 100%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,0,255,0.4), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.onb-card-pair > * { position: relative; z-index: 1; }
.onb-pair-eyebrow {
  font-size: 11px; color: #8a8aff; letter-spacing: 0.04em;
  font-family: 'Sora', sans-serif; font-weight: 500;
}
.onb-pair-label { margin-top: 14px; font-size: 13px; color: #b8b8d0; }
.onb-pair-digits {
  margin-top: 14px; display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.onb-pair-d {
  width: 30px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 17px; font-weight: 600;
  color: #fff;
}
.onb-pair-timer { margin-top: 14px; font-size: 11px; color: #6a6a80; font-family: 'Sora', sans-serif; }

/* ===== Contact form ===== */
.contact-stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .contact-stage { grid-template-columns: 1fr; gap: 40px; } }

.contact-left { position: sticky; top: 100px; }
@media (max-width: 980px) { .contact-left { position: static; } }
.contact-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 44ch;
}
.contact-points {
  margin-top: 26px;
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.contact-points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.contact-points svg { color: var(--blue); flex: 0 0 auto; }
.contact-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.contact-meta > div { display: flex; flex-direction: column; gap: 4px; }
.contact-meta-l {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.contact-meta a {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.contact-meta a:hover { color: var(--blue); }
.contact-meta > div > span:not(.contact-meta-l) {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 30px 60px -30px rgba(20, 20, 40, 0.18);
  display: flex; flex-direction: column;
  gap: 18px;
}
@media (max-width: 600px) { .contact-form { padding: 24px; } }
.contact-form-head {
  display: flex; flex-direction: column; gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 6px;
}
.contact-form-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 500;
}
.contact-form-head h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.contact-row { display: flex; flex-direction: column; gap: 16px; }
.contact-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .contact-row-2 { grid-template-columns: 1fr; } }

.contact-field {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-field > span {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,0,255,0.08);
}
.contact-field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.contact-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%2380808a' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-chip { position: relative; cursor: pointer; }
.contact-chip input { position: absolute; opacity: 0; pointer-events: none; }
.contact-chip span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: all 0.15s ease;
}
.contact-chip input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.contact-chip:hover span { border-color: var(--ink); }

.contact-submit {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.contact-fineprint {
  font-size: 12px;
  color: var(--muted-2);
  flex: 1;
  min-width: 220px;
}
.contact-fineprint a { color: var(--ink-2); text-decoration: underline; text-decoration-color: var(--line); }
.contact-fineprint a:hover { color: var(--blue); text-decoration-color: var(--blue); }

.contact-sent {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 40px 0;
}
.contact-sent-icon {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: rgba(0, 200, 100, 0.12);
  color: #00733b;
  display: grid; place-items: center;
}
.contact-sent h3 { margin-top: 20px; font-size: 24px; font-weight: 500; letter-spacing: -0.025em; }
.contact-sent p { margin-top: 12px; color: var(--muted); font-size: 14.5px; max-width: 38ch; line-height: 1.55; }
.contact-sent button { margin-top: 24px; }

/* CTA */
.cta-stage {
  margin-top: 0;
  padding: clamp(64px, 8vw, 120px) clamp(40px, 6vw, 80px);
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-shader {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-stage > * { position: relative; z-index: 1; }
.cta-h {
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 500;
  max-width: 18ch;
  margin: 0 auto;
}
.cta-h em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--blue); font-weight: 400; }
.cta-sub { margin-top: 22px; color: var(--muted); font-size: 17px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-actions { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
  margin-top: 96px;
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: span 2; } }
.foot-brand p { color: var(--muted); margin-top: 14px; font-size: 14px; max-width: 28ch; line-height: 1.5; }
.foot-col h5 {
  font-size: 11px;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  padding: 4px 0;
  transition: color 0.15s ease;
}
.foot-col a:hover { color: var(--blue); }
.foot-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  color: var(--muted-2);
  font-size: 12.5px;
}
.foot-lang { display: flex; gap: 14px; font-family: 'Sora', sans-serif; }
.foot-lang a.active { color: var(--ink); }


/* ===== spnBox v2 — SVG technical drawing ===== */
.bento-spnbox-art {
  padding: 16px 32px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
.bento-spnbox-art .spnbox-stage {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px;
}
.spnbox-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,0.45));
}

/* spnBox real product photo */
.spnbox-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1365 / 1000;
  display: grid;
  place-items: center;
}
.spnbox-photo-glow {
  position: absolute;
  inset: 12% 8% -4% 8%;
  background:
    radial-gradient(ellipse 65% 45% at 50% 70%, rgba(0, 0, 255, 0.55) 0%, rgba(0,0,255,0) 70%),
    radial-gradient(ellipse 45% 30% at 50% 88%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.spnbox-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
  transform: translateZ(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-spnbox:hover .spnbox-photo {
  transform: translateY(-4px) rotate(-0.5deg);
}
.spnbox-caption {
  margin-top: 4px !important;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== SpinLoud Ekosistemi — editorial / news-style grid =====
 * No icons, no CTAs. Each "story" sits in a 2×2 grid sharing
 * hairline borders, like a print newsroom. Strong typographic
 * hierarchy: kicker (status) → name (display) → italic tagline → body.
 * ============================================================ */
.eco-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.eco-news {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .eco-news { grid-template-columns: 1fr; } }

.eco-story {
  position: relative;
  padding: 36px 36px 40px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: background 0.2s ease;
}
.eco-story:hover { background: var(--bg-soft); }
/* Remove the trailing right border on the second column */
.eco-news > .eco-story:nth-child(2n) { border-right: none; }
@media (max-width: 720px) {
  .eco-story { border-right: none; padding: 30px 4px 36px; }
}

.eco-story-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eco-story-status {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
  position: relative;
  padding-left: 18px;
}
.eco-story-status::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 2px;
  background: var(--blue);
}

.eco-story-name {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}
.eco-story-tagline {
  margin-top: 10px;
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: -0.01em;
  color: var(--blue);
  font-weight: 400;
  line-height: 1.2;
}
.eco-story-desc {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
}
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ============================================================
 * VENUE DASHBOARD — Stripe Apps-style tab carousel
 * 7 fully-populated tabs with smooth body fade between them.
 * ============================================================ */

/* Header pill (Live indicator next to venue / zone name) */
.vmodal-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #007a4a;
  background: rgba(0,184,112,0.12);
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 500;
}
.vmodal-pill-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #00b870;
  animation: vmodal-pill-pulse 1.8s ease-in-out infinite;
}
@keyframes vmodal-pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,184,112,0.45); }
  50%      { box-shadow: 0 0 0 5px rgba(0,184,112,0); }
}

/* Tab buttons — now real <button>s */
.vmodal-tab {
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.005em;
  transition: background 0.18s ease, color 0.18s ease;
}
.vmodal-tab:hover { background: var(--bg-soft); color: var(--ink); }
.vmodal-tab.active { background: rgba(0,0,255,0.08); color: var(--blue); font-weight: 500; }

/* Body stage clips overflow so panels animating in don't bleed.
   The body itself gets a re-mount animation via React's key={tab}. */
.vmodal-body-stage {
  position: relative;
  overflow: hidden;
}
.vmodal-body { animation: vmodal-fade 0.32s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes vmodal-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Shared section header used inside panels */
.vp-section-h {
  font-size: 12px;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted-2);
  margin: 22px 0 12px;
}

/* ============================================================
 * 1. Player panel
 * ============================================================ */
.vp-player { display: flex; flex-direction: column; }
.vp-now {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;
  padding: 6px 0 2px;
}
.vp-cover {
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.45), transparent 55%),
    linear-gradient(135deg, #0030ff 0%, #4040c8 50%, #1a1a2e 100%);
  position: relative;
  box-shadow: 0 16px 32px -16px rgba(0,0,80,0.5), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.vp-cover::after {
  content: "";
  position: absolute;
  inset: 18% 18% 18% 18%;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 14%, transparent 16%);
}
.vp-now-meta { min-width: 0; }
.vp-now-ch {
  font-family: 'Sora', sans-serif;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue); font-weight: 500;
}
.vp-now-track {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.vp-now-artist {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.vp-progress { margin-top: 16px; }
.vp-progress-bar {
  height: 4px; border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.vp-progress-fill {
  height: 100%; background: var(--blue);
  border-radius: 999px;
  transition: width 0.4s linear;
}
.vp-progress-times {
  display: flex; justify-content: space-between;
  margin-top: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 11px; color: var(--muted-2);
}
.vp-controls {
  margin-top: 14px;
  display: flex; align-items: center; gap: 10px;
}
.vp-ctrl {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--line-2); border: none;
  display: grid; place-items: center;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.vp-ctrl:hover { background: var(--line); }
.vp-ctrl-play {
  width: 44px; height: 44px;
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(0,0,255,0.45);
}
.vp-ctrl-play:hover { background: #0000ff; transform: scale(1.04); }
.vp-vol { margin-left: 14px; display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; color: var(--muted); }
.vp-vol-bar {
  flex: 1; height: 3px; border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  max-width: 140px;
}
.vp-vol-fill { height: 100%; background: var(--ink-2); border-radius: 999px; }
.vp-vol-val {
  font-family: 'Sora', sans-serif;
  font-size: 11px; color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  width: 18px;
}

/* Queue list */
.vp-queue { display: flex; flex-direction: column; gap: 2px; }
.vp-queue-row {
  display: grid;
  grid-template-columns: 18px 32px 1fr 44px 40px;
  gap: 12px;
  align-items: center;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 13px;
  transition: background 0.15s ease;
}
.vp-queue-row-history {
  grid-template-columns: 52px 32px 1fr 44px 40px;
  opacity: 0.92;
}
.vp-queue-row-history .vp-queue-when {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.vp-queue-row:hover { background: var(--bg-soft); }
.vp-queue-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px; color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}
.vp-queue-art {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0000ff, #0000ff);
  position: relative;
}
.vp-queue-art-0 { background: linear-gradient(135deg, #0030ff, #4040c8); }
.vp-queue-art-1 { background: linear-gradient(135deg, #ff5a00, #ffa05a); }
.vp-queue-art-2 { background: linear-gradient(135deg, #00b88a, #4cdfb4); }
.vp-queue-art-3 { background: linear-gradient(135deg, #b300ff, #ff5ae0); }
.vp-queue-meta { min-width: 0; }
.vp-queue-title { font-weight: 500; letter-spacing: -0.005em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vp-queue-artist { font-size: 11.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vp-queue-cat {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--muted-2);
  padding: 3px 7px;
  background: var(--line-2);
  border-radius: 4px;
  text-align: center;
}
.vp-queue-dur {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px; color: var(--muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

@media (max-width: 680px) {
  .vp-now { grid-template-columns: 1fr; }
  .vp-cover { max-width: 200px; }
  .vp-queue-row { grid-template-columns: 16px 28px 1fr 36px; }
  .vp-queue-cat { display: none; }
}

/* ============================================================
 * 2. Device panel
 * ============================================================ */
.vp-device { display: flex; flex-direction: column; }
.vp-device-hero {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  padding: 6px 0;
}
.vp-device-img {
  width: 100%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.25));
}
.vp-device-meta { min-width: 0; }
.vp-device-model {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.vp-device-rev {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--muted-2);
  margin-left: 6px;
  letter-spacing: 0;
}
.vp-device-serial {
  margin-top: 4px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.vp-device-status {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: #007a4a;
  font-weight: 500;
}
.vp-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #00b870;
  box-shadow: 0 0 0 3px rgba(0,184,112,0.15);
}

.vp-device-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
}
.vp-stat label {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.vp-stat > div {
  margin-top: 3px;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.vp-stat-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 9.5px; letter-spacing: 0.05em;
  background: rgba(0,184,112,0.12); color: #007a4a;
  padding: 2px 6px; border-radius: 4px;
  margin-left: 6px;
  vertical-align: 1px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .vp-device-hero { grid-template-columns: 1fr; text-align: center; }
  .vp-device-img { max-width: 200px; margin: 0 auto; }
  .vp-device-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Live output meter */
.vp-meter {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 3px;
  height: 70px;
  padding: 14px 16px;
  background: #0a0a14;
  border-radius: 10px;
}
.vp-meter-bar {
  flex: 1;
  display: block;
  border-radius: 2px;
  transition: height 0.18s ease;
  min-height: 6%;
}

.vp-buffer {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.vp-buffer-bar {
  height: 4px; border-radius: 999px; background: var(--line); overflow: hidden;
}
.vp-buffer-fill { height: 100%; background: var(--blue); border-radius: 999px; }
.vp-buffer-text { font-size: 12.5px; color: var(--muted); }
.vp-buffer-text b { font-weight: 500; color: var(--ink); }

.vp-device-actions {
  margin-top: 22px;
  display: flex; gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============================================================
 * 4. SpnSound panel
 * ============================================================ */
.vp-sound { display: flex; flex-direction: column; }
.vp-presets {
  display: flex; gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.vp-preset {
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  transition: all 0.15s ease;
}
.vp-preset:hover { border-color: var(--ink-2); }
.vp-preset.on {
  background: rgba(0,0,255,0.08);
  border-color: var(--blue);
  color: var(--blue);
  font-weight: 500;
}

.vp-eq-card {
  margin-top: 18px;
  padding: 20px 18px 14px;
  background: #0a0a14;
  border-radius: 14px;
  color: #fff;
}
.vp-eq-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px; letter-spacing: 0.04em;
}
.vp-eq-head > span:first-child { color: #fff; font-weight: 500; }
.vp-eq-tune { color: #0000ff; font-size: 11px; }
.vp-eq-bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  align-items: end;
  height: 120px;
}
.vp-eq-col { display: flex; flex-direction: column; align-items: stretch; height: 100%; }
.vp-eq-bar {
  flex: 1;
  background: linear-gradient(180deg, #0000ff, var(--blue));
  border-radius: 4px;
  min-height: 6px;
  align-self: end;
  width: 100%;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vp-eq-label {
  font-family: 'Sora', sans-serif;
  font-size: 9.5px;
  color: #6a6a80;
  text-align: center;
  margin-top: 8px;
  flex: 0 0 auto;
}

/* Processing toggles */
.vp-toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 720px) { .vp-toggle-grid { grid-template-columns: 1fr; } }
.vp-toggle {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  font: inherit; text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}
.vp-toggle:hover { border-color: var(--ink-2); }
.vp-toggle.on { background: rgba(0,0,255,0.025); border-color: rgba(0,0,255,0.3); }
.vp-toggle-switch {
  width: 32px; height: 18px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
  transition: background 0.2s ease;
}
.vp-toggle.on .vp-toggle-switch { background: var(--blue); }
.vp-toggle-knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.vp-toggle.on .vp-toggle-knob { transform: translateX(14px); }
.vp-toggle-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.vp-toggle-label { font-size: 13.5px; font-weight: 500; letter-spacing: -0.005em; }
.vp-toggle-sub { font-size: 11.5px; color: var(--muted); }

.vp-loudness {
  padding: 18px 18px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.vp-loudness-bar {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  margin-bottom: 22px;
}
.vp-loudness-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #0000ff, var(--blue));
  border-radius: 999px;
}
.vp-loudness-tick {
  position: absolute;
  top: -3px;
  width: 14px; height: 14px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-sm);
}
.vp-loudness-tick span {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.vp-loudness-scale {
  display: flex; justify-content: space-between;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
 * 5. Schedule panel
 * ============================================================ */
.vp-schedule { display: flex; flex-direction: column; }
.vp-days {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.vp-day-pill {
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  font-family: 'Sora', sans-serif;
  font-variant-numeric: tabular-nums;
  transition: all 0.15s ease;
}
.vp-day-pill:hover { border-color: var(--ink-2); }
.vp-day-pill.on {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

.vp-timeline {
  margin-top: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px 12px;
}
.vp-timeline-track {
  position: relative;
  height: 38px;
  background:
    linear-gradient(to right,
      var(--line-2) 0,
      var(--line-2) 0.5px,
      transparent 0.5px,
      transparent calc(100% / 24)
    );
  background-size: calc(100% / 24) 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.vp-timeline-slot {
  position: absolute;
  top: 4px; bottom: 4px;
  border-radius: 6px;
  display: flex; align-items: center;
  padding: 0 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: filter 0.15s ease;
}
.vp-timeline-slot:hover { filter: brightness(0.95); }
.vp-timeline-slot-label {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(20,20,30,0.8);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vp-timeline-ticks {
  position: relative;
  height: 16px;
  margin-top: 8px;
}
.vp-timeline-ticks span {
  position: absolute;
  transform: translateX(-50%);
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}
.vp-timeline-ticks span:first-child { transform: translateX(0); }
.vp-timeline-ticks span:last-child { transform: translateX(-100%); }

.vp-slots {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.vp-slot-row {
  display: grid;
  grid-template-columns: 14px 110px 1fr 50px 70px;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid var(--line-2);
  background: #fff;
  transition: background 0.15s ease;
}
.vp-slot-row:hover { background: var(--bg-soft); }
.vp-slot-swatch { width: 12px; height: 12px; border-radius: 3px; }
.vp-slot-time {
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.vp-slot-meta { min-width: 0; }
.vp-slot-channel { font-weight: 500; letter-spacing: -0.005em; color: var(--blue); font-size: 13px; }
.vp-slot-cat { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
.vp-slot-auto {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  background: var(--line-2);
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
}
.vp-slot-add {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1.5px dashed var(--line);
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 8px;
  font: inherit;
  font-size: 12.5px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.15s ease;
}
.vp-slot-add:hover { border-color: var(--blue); color: var(--blue); }

@media (max-width: 720px) {
  .vp-slot-row { grid-template-columns: 14px 1fr 60px; }
  .vp-slot-time, .vp-slot-auto { display: none; }
}

/* ============================================================
 * 6. CherryPick panel
 * ============================================================ */
.vp-cherry { display: flex; flex-direction: column; }
.vp-cherry-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.vp-cherry-stat {
  padding: 16px 18px;
  border-right: 1px solid var(--line-2);
}
.vp-cherry-stat:last-child { border-right: none; }
.vp-cherry-val {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.vp-cherry-l {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .vp-cherry-stats { grid-template-columns: 1fr 1fr; }
  .vp-cherry-stat:nth-child(2) { border-right: none; }
  .vp-cherry-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-2); }
}

.vp-cherry-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 720px) { .vp-cherry-row { grid-template-columns: 1fr; } }

.vp-cherry-qr {
  display: flex; gap: 14px; align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
}
.vp-qr-svg {
  width: 84px; height: 84px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 1px;
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid var(--line);
  flex: 0 0 auto;
}
.vp-qr-cell { width: 100%; height: 100%; border-radius: 1px; }
.vp-cherry-qr-meta { min-width: 0; }
.vp-cherry-qr-l {
  font-family: 'Sora', sans-serif;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.vp-cherry-qr-v {
  margin-top: 4px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.vp-cherry-qr-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 500;
  cursor: pointer;
}

.vp-cherry-rules {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; flex-direction: column;
  background: #fff;
}
.vp-cherry-rule {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
}
.vp-cherry-rule:last-child { border-bottom: none; }
.vp-cherry-rule-l { color: var(--muted); letter-spacing: -0.005em; }
.vp-cherry-rule-v { font-weight: 500; letter-spacing: -0.005em; font-size: 12.5px; }
.vp-cherry-rule-on { color: var(--blue); }

.vp-cherry-queue { display: flex; flex-direction: column; gap: 4px; }
.vp-cherry-req {
  display: grid;
  grid-template-columns: 76px 1fr 60px 76px auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: #fff;
  font-size: 13px;
  transition: background 0.15s ease;
}
.vp-cherry-req.pending { background: rgba(0,0,255,0.025); border-color: rgba(0,0,255,0.12); }
.vp-cherry-req:hover { background: var(--bg-soft); }
.vp-cherry-req.pending:hover { background: rgba(0,0,255,0.04); }
.vp-cherry-guest {
  font-family: 'Sora', sans-serif;
  font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.vp-cherry-track { min-width: 0; }
.vp-cherry-t { font-weight: 500; letter-spacing: -0.005em; }
.vp-cherry-a { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
.vp-cherry-when {
  font-family: 'Sora', sans-serif;
  font-size: 11px; color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}
.vp-cherry-pill {
  font-family: 'Sora', sans-serif;
  font-size: 10px; letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
  font-weight: 500;
}
.vp-cherry-pill-pending  { background: rgba(0,0,255,0.12); color: var(--blue); }
.vp-cherry-pill-approved { background: rgba(0,184,112,0.12); color: #007a4a; }
.vp-cherry-pill-played   { background: var(--line-2); color: var(--muted-2); }
.vp-cherry-actions { display: flex; gap: 6px; }

@media (max-width: 720px) {
  .vp-cherry-req { grid-template-columns: 1fr; gap: 4px; padding: 12px; }
  .vp-cherry-when, .vp-cherry-pill { justify-self: start; }
  .vp-cherry-actions { justify-self: stretch; }
}

/* ============================================================
 * 7. spnPlay (USB Player) panel
 * ============================================================ */
.vp-usb { display: flex; flex-direction: column; }

.vp-usb-status {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.vp-usb-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
}
.vp-usb-status-meta { min-width: 0; }
.vp-usb-status-l {
  font-family: 'Sora', sans-serif;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #007a4a; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.vp-usb-status-v {
  margin-top: 4px;
  font-size: 13.5px;
  letter-spacing: -0.005em;
}
.vp-usb-status-v b { font-weight: 500; }

.vp-usb-cap {
  display: flex; align-items: center; gap: 10px;
}
.vp-usb-cap-ring {
  position: relative;
  width: 44px; height: 44px;
  display: grid; place-items: center;
}
.vp-usb-cap-val {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.vp-usb-cap-l {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Playback source mode cards */
.vp-usb-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 720px) { .vp-usb-modes { grid-template-columns: 1fr; } }
.vp-usb-mode {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  display: flex; gap: 12px; align-items: flex-start;
  transition: all 0.15s ease;
}
.vp-usb-mode:hover { border-color: var(--ink-2); }
.vp-usb-mode.on {
  border-color: var(--blue);
  background: rgba(0,0,255,0.025);
}
.vp-usb-mode-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex: 0 0 auto;
  margin-top: 2px;
  background: #fff;
  position: relative;
}
.vp-usb-mode.on .vp-usb-mode-dot {
  border-color: var(--blue);
}
.vp-usb-mode.on .vp-usb-mode-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--blue);
}
.vp-usb-mode-meta { display: flex; flex-direction: column; gap: 2px; }
.vp-usb-mode-title { font-size: 13.5px; font-weight: 500; letter-spacing: -0.005em; }
.vp-usb-mode-sub { font-size: 11.5px; color: var(--muted); }

/* Mix slider */
.vp-usb-mix {
  margin-top: 14px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,255,0.15);
  background: rgba(0,0,255,0.025);
  border-radius: 12px;
}
.vp-usb-mix-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
}
.vp-usb-mix-val {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.vp-usb-mix-bar {
  position: relative;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
}
.vp-usb-mix-fill {
  height: 100%;
  background: linear-gradient(90deg, #0000ff, var(--blue));
  border-radius: 999px;
  transition: width 0.25s ease;
}
.vp-usb-mix-knob {
  position: absolute;
  top: 50%;
  width: 16px; height: 16px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-sm);
  transition: left 0.25s ease;
}
.vp-usb-mix-scale {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: var(--muted-2);
}
.vp-usb-mix-slider {
  display: flex; gap: 6px;
  margin-top: 14px;
}
.vp-usb-mix-slider .vp-chip.on {
  background: var(--blue); color: #fff; border-color: var(--blue);
}

/* Folders */
.vp-usb-folders { display: flex; flex-direction: column; gap: 4px; }
.vp-usb-folder {
  display: grid;
  grid-template-columns: 32px 1fr 60px 80px;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: #fff;
  transition: background 0.15s ease;
}
.vp-usb-folder:hover { background: var(--bg-soft); }
.vp-usb-folder-meta { min-width: 0; }
.vp-usb-folder-name { font-size: 13.5px; font-weight: 500; letter-spacing: -0.005em; }
.vp-usb-folder-sub { font-size: 11.5px; color: var(--muted); margin-top: 1px; font-variant-numeric: tabular-nums; }
.vp-usb-pill {
  font-family: 'Sora', sans-serif;
  font-size: 10px; letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
  background: var(--line-2);
  color: var(--muted-2);
  font-weight: 500;
}
.vp-usb-pill.on { background: rgba(0,184,112,0.12); color: #007a4a; }
@media (max-width: 720px) {
  .vp-usb-folder { grid-template-columns: 32px 1fr auto; }
  .vp-usb-pill { display: none; }
}

.vp-usb-note {
  margin-top: 18px;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}
.vp-usb-note svg { color: var(--blue); flex: 0 0 auto; margin-top: 2px; }


/* ============================================================
 * Device panel — System Health, Connectivity, Audio Output
 * ============================================================ */
.vp-health {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 720px) { .vp-health { grid-template-columns: repeat(2, 1fr); } }
.vp-health-card {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.vp-health-l {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.vp-health-v {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.vp-health-u {
  margin-left: 2px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.vp-health-bar {
  margin-top: 12px;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.vp-health-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}
.vp-health-sub {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
}

/* Connectivity rows */
.vp-conn {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.vp-conn-row {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
}
.vp-conn-row:last-child { border-bottom: none; }
.vp-conn-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
}
.vp-conn-meta { min-width: 0; }
.vp-conn-l {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.vp-conn-v {
  margin-top: 2px;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.vp-conn-switch {
  border: none;
  background: var(--line);
  width: 36px; height: 20px;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
  flex: 0 0 auto;
}
.vp-conn-switch span {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.vp-conn-switch.on { background: var(--blue); }
.vp-conn-switch.on span { transform: translateX(16px); }
.vp-conn-pill {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  background: rgba(0,184,112,0.12);
  color: #007a4a;
  border-radius: 999px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .vp-conn-row { grid-template-columns: 36px 1fr auto; row-gap: 8px; }
  .vp-conn-row .vzone-btn { grid-column: 2 / -1; justify-self: end; }
}

/* Audio output picker */
.vp-output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.vp-output-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
  .vp-output-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-output-grid-3 { grid-template-columns: 1fr; }
}
.vp-output-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.15s ease;
}
.vp-output-card:hover { border-color: var(--ink-2); }
.vp-output-card.on {
  border-color: var(--blue);
  background: rgba(0,0,255,0.025);
}
.vp-output-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex: 0 0 auto;
  margin-top: 2px;
  background: #fff;
  position: relative;
}
.vp-output-card.on .vp-output-dot { border-color: var(--blue); }
.vp-output-card.on .vp-output-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--blue);
}
.vp-output-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vp-output-label { font-size: 12.5px; font-weight: 500; letter-spacing: -0.005em; }
.vp-output-sub { font-size: 10.5px; color: var(--muted); }

/* ============================================================
 * SpnSound — summary card (replaces hidden EQ bars)
 * ============================================================ */
.vp-sound-summary {
  margin-top: 18px;
  padding: 6px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.vp-sound-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
}
.vp-sound-summary-row:last-child { border-bottom: none; }
.vp-sound-summary-l { color: var(--muted); letter-spacing: -0.005em; }
.vp-sound-summary-v {
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--blue);
}

/* ============================================================
 * spnPlay — 2-column mode grid + button folder rows + icon mode
 * ============================================================ */
.vp-usb-modes-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .vp-usb-modes-2 { grid-template-columns: 1fr; } }

.vp-usb-mode-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2);
  flex: 0 0 auto;
  transition: all 0.15s ease;
}
.vp-usb-mode.on .vp-usb-mode-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* spnPlay folder rows — full-width buttons now */
.vp-usb-folder {
  display: grid;
  grid-template-columns: 32px 1fr 60px 70px;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}
.vp-usb-folder:hover { background: var(--bg-soft); border-color: var(--line); }
.vp-usb-folder.on {
  background: rgba(0,0,255,0.025);
  border-color: rgba(0,0,255,0.25);
}
.vp-usb-folder-cta {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-align: right;
}
.vp-usb-folder.on .vp-usb-folder-cta { color: var(--blue); font-weight: 500; }


/* ============================================================
 * SPINLOUD EKOSİSTEMİ — Horizontal layout
 * 1. spnBox horizontal hero card (photo left | meta right)
 * 2. Two app download cards side-by-side below
 * ============================================================ */

.eco-card {
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ---------- spnBox horizontal hero ---------- */
.eco-spnbox-h {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: #fff;
  align-items: stretch;
  min-height: 460px;
}
@media (max-width: 980px) { .eco-spnbox-h { grid-template-columns: 1fr; min-height: 0; } }

.eco-spnbox-photo-h {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 48px 32px;
  min-height: 360px;
}
.eco-spnbox-photo-h img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}

.eco-spnbox-meta-h {
  position: relative;
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px) { .eco-spnbox-meta-h { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding: 40px 32px; } }

.eco-badge {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
  align-self: flex-start;
}
.eco-badge-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #c5cbff;
}

.eco-card-title {
  margin-top: 18px;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
}
.eco-card-sub {
  margin-top: 16px;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.55;
}
.eco-card-sub.on-dark { color: #a5a5b8; }

.eco-radios {
  margin-top: 22px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.eco-radio {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #d5d5e8;
}
.eco-radio svg { color: #0000ff; }

/* Compact in-the-box list */
.eco-inbox {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.eco-inbox-head {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8aa0;
  font-weight: 500;
  margin-bottom: 12px;
}
.eco-inbox-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #d0d0e0;
}
.eco-inbox-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.005em;
}
.eco-inbox-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: #0000ff;
}
.eco-inbox-sep { color: #4a4a5e; font-size: 12px; user-select: none; }

/* ---------- Two app cards side-by-side ---------- */
.eco-apps-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 900px) { .eco-apps-grid { grid-template-columns: 1fr; } }

.eco-app-card-h {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.eco-app-card-h:hover {
  border-color: #dcdce8;
  box-shadow: var(--shadow);
}
.eco-app-icon-img {
  width: 80px; height: 80px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  box-shadow:
    0 12px 24px -10px rgba(0, 60, 255, 0.4),
    inset 0 0 0 1px rgba(0,0,0,0.04);
}
.eco-app-row-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.eco-app-row-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.eco-app-row-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.eco-app-row-platforms {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.eco-pchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 7px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.eco-pchip:hover { border-color: var(--ink-2); background: #fff; }
.eco-pchip svg { width: 16px; height: 16px; color: var(--ink-2); }

@media (max-width: 720px) {
  .eco-spnbox-photo-h { padding: 36px 24px; min-height: 280px; }
  .eco-spnbox-meta-h { padding: 32px 28px; }
  .eco-app-card-h { grid-template-columns: 64px 1fr; padding: 22px; gap: 16px; }
  .eco-app-icon-img { width: 64px; height: 64px; border-radius: 14px; }
}

/* ============================================================
 * Stripe-style animated aurora behind spnBox photo
 * 3 drifting orbs + rotating conic sheen + pulsing rings.
 * ============================================================ */
.eco-spnbox-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.eco-spnbox-aurora::before,
.eco-spnbox-aurora::after,
.eco-spnbox-aurora .eco-aurora-orb {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.65;
  mix-blend-mode: screen;
}
.eco-spnbox-aurora::before {
  width: 56%; aspect-ratio: 1;
  left: -8%; top: 8%;
  background: radial-gradient(circle, #2a3cff 0%, rgba(42,60,255,0) 70%);
  animation: ecoAuroraA 14s ease-in-out infinite;
}
.eco-spnbox-aurora::after {
  width: 60%; aspect-ratio: 1;
  right: -10%; top: 30%;
  background: radial-gradient(circle, #00a6ff 0%, rgba(0,166,255,0) 70%);
  animation: ecoAuroraB 18s ease-in-out infinite;
}
.eco-spnbox-aurora .eco-aurora-orb {
  width: 48%; aspect-ratio: 1;
  left: 30%; bottom: -10%;
  background: radial-gradient(circle, #8a4dff 0%, rgba(138,77,255,0) 70%);
  animation: ecoAuroraC 22s ease-in-out infinite;
}
.eco-spnbox-aurora .eco-aurora-sheen {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(255,255,255,0) 0deg,
    rgba(120,140,255,0.18) 60deg,
    rgba(255,255,255,0) 140deg,
    rgba(60,90,255,0.18) 240deg,
    rgba(255,255,255,0) 360deg);
  filter: blur(30px);
  animation: ecoAuroraSpin 30s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.eco-spnbox-aurora .eco-aurora-rings {
  position: absolute;
  left: 50%; top: 50%;
  width: 1px; height: 1px;
}
.eco-spnbox-aurora .eco-aurora-rings span {
  position: absolute;
  left: 50%; top: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border: 1px solid rgba(138, 168, 255, 0.35);
  border-radius: 50%;
  opacity: 0;
  animation: ecoAuroraRing 6s ease-out infinite;
}
.eco-spnbox-aurora .eco-aurora-rings span:nth-child(2) { animation-delay: 2s; }
.eco-spnbox-aurora .eco-aurora-rings span:nth-child(3) { animation-delay: 4s; }

@keyframes ecoAuroraA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(18%, 10%) scale(1.15); }
}
@keyframes ecoAuroraB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-14%, 8%) scale(1.1); }
}
@keyframes ecoAuroraC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-8%, -16%) scale(1.2); }
}
@keyframes ecoAuroraSpin { to { transform: rotate(360deg); } }
@keyframes ecoAuroraRing {
  0%   { opacity: 0;   transform: scale(0.4); }
  20%  { opacity: 0.7; }
  100% { opacity: 0;   transform: scale(5.5); }
}
@media (prefers-reduced-motion: reduce) {
  .eco-spnbox-aurora::before,
  .eco-spnbox-aurora::after,
  .eco-spnbox-aurora .eco-aurora-orb,
  .eco-spnbox-aurora .eco-aurora-sheen,
  .eco-spnbox-aurora .eco-aurora-rings span {
    animation: none;
  }
}


/* ============================================================
 * MOBILE OPTIMIZATIONS — Strategic compaction (≤700px)
 *
 * Goal: cut scroll length ~30-35% on mobile without
 * losing message clarity. Hero, section paddings, and dense
 * grids are the highest-yield targets.
 *
 * !important is used here only because most section paddings
 * are set inline in JSX — desktop intent stays intact, mobile
 * just tightens up.
 * ============================================================ */
@media (max-width: 700px) {

  /* ---------- HERO ---------- */
  .hero { padding: 110px 0 0 !important; }
  .hero-inner { padding: 6px 22px 64px !important; }
  .hero-tag { font-size: 11px; }
  .hero-h1 { font-size: clamp(40px, 11.5vw, 64px) !important; line-height: 0.98; }
  .hero-sub { font-size: 15.5px !important; margin-top: 20px !important; }
  .hero-actions { margin-top: 22px; gap: 8px; }
  .hero-actions .btn { font-size: 13px; padding: 10px 16px; }
  .hero-meta { gap: 10px; row-gap: 6px; flex-wrap: wrap; font-size: 12px; }
  .hero-meta .dot { display: none; }

  /* ---------- LOGOSTRIP ---------- */
  /* Force height:auto via !important to defeat the JSX inline `height: 250px`
     and the previous mobile `170px` cap — both were smaller than the actual
     content and pushed the logos to the bottom of the band + clipped them.
     Symmetric padding + flex centering "gathers" the label + logos as a
     vertically-centered group instead of leaving them stuck at the bottom. */
  .logo-strip {
    height: auto !important;
    padding: 36px 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .logo-track { height: auto !important; gap: 52px !important; }
  .brand-logo { height: 76px; max-width: 240px; }
  .logo-strip-label { font-size: 10px; margin-bottom: 22px; }

  /* ---------- GLOBAL SECTION RHYTHM ---------- */
  .section-pad { padding: 56px 0 !important; }
  .section-title { font-size: clamp(28px, 7.8vw, 40px); }
  .section-sub { font-size: 15px; }
  .eyebrow { font-size: 10.5px; }
  .s-head-row { gap: 18px; }
  .s-head { gap: 12px; }

  /* ---------- PROBLEM / SOLUTION ---------- */
  .ps { padding: 60px 0 !important; }
  .ps-title { font-size: clamp(24px, 7vw, 34px); }
  .ps-head { gap: 26px !important; margin-bottom: 32px !important; }

  /* ---------- FEATURES ---------- */
  .features-grid { gap: 14px; }
  .feat { padding: 24px 22px !important; }
  .feat h3 { font-size: 18px; }
  .feat p { font-size: 13.5px; }

  /* ---------- CHANNELS ---------- */
  .player-stage { padding: 24px 16px !important; margin-top: 32px !important; }
  .channel-list-scroll { max-height: 360px; }
  .channel-list-head h4 { font-size: 13.5px; }
  .channel-list-head .count { font-size: 11px; }
  .chan-tag { display: none; }
  .chan-thumb-img { width: 44px !important; height: 44px !important; }
  .chan-name { font-size: 13.5px; }
  .chan-desc { font-size: 11.5px; }
  .channel-preview-cover { max-width: 100% !important; }

  /* ---------- CHERRYPICK ---------- */
  #cherrypick { padding: 56px 0 !important; }
  .qr-stage { gap: 16px !important; }
  .qr-card { padding: 26px 22px !important; }
  .qr-stickers { grid-template-columns: 1fr; gap: 12px; }
  .qr-sticker-item img { aspect-ratio: 16/10; object-fit: cover; }
  /* Re-focus both stickers on mobile — at 16:10 ratio the default crops cut
     into the subject (table sticker's QR card on the wood, door sticker's
     spinloud round logo); bias both toward the bottom so the subject stays
     visible on phones. */
  .qr-sticker-item:first-child img { object-position: 50% 75% !important; }
  .qr-sticker-item:last-child img { object-position: 50% 70% !important; }
  .queue-feed { max-height: 280px; overflow-y: auto; }
  .cp-phone { transform: scale(0.92); transform-origin: top center; }

  /* ---------- SPNSOUND ---------- */
  /* ROOT CAUSE of "text glued to card edge": the card is <div class="sound-stage"
     id="sound">, and this ID rule used `padding: 20px 0 40px` → horizontal
     padding 0. An ID selector (#sound, 1,0,0) beats the `.sound-stage` class
     (0,1,0) even with !important on both, so every earlier `.sound-stage`
     padding fix was silently overridden and the content sat flush against the
     card edge. Set the real padding HERE (top 30 / sides 28 / bottom 40) so the
     winning rule gives the card proper inner breathing room. */
  #sound { padding: 30px 28px 40px !important; }
  .pro-control-stack { overflow-x: clip; }
  .sound-stage { padding: 30px 28px !important; overflow-x: clip; }
  /* ROOT FIX for "title/copy glued to the card's left edge while the eyebrow
     has a gap": the content lived in a CSS grid (.sound-cols). A grid track's
     default min-width:auto let the wide eq-card stretch the column past the
     card, and the headline/paragraph rendered left of the 28px padding while
     the inline-flex eyebrow stayed put — so siblings had different left edges.
     Drop the grid to plain block flow on phones (exactly how the working
     "Canlı istek kuyruğu" .qr-card lays out) → every child shares the same
     28px padding edge. */
  .sound-cols { display: block !important; }
  .sound-cols > .eq-card { margin-top: 26px; }
  /* `text-wrap: balance` (global h1-h4) can offset/over-wrap a width-capped
     heading; `pretty` is the safe wrap for a multi-line title. */
  .sound-stage h2 { font-size: 22px !important; line-height: 1.14 !important; max-width: 20ch !important; text-wrap: pretty !important; }
  .sound-stage p { font-size: 14.5px; margin-top: 16px; max-width: none; }
  .eq-card { padding: 20px 16px !important; }
  .sound-chips { gap: 6px; }
  .sound-chip { font-size: 10.5px; padding: 5px 10px; }

  /* ---------- SCHEDULE ---------- */
  #schedule { padding: 56px 0 !important; }
  .sched-stage { padding: 24px 14px !important; }
  .sched-card { padding: 20px 14px !important; }
  .sched-head h4 { font-size: 14px; }
  .sched-sub { font-size: 11.5px; }
  .sched-block-name { font-size: 9px !important; padding: 0 4px; }
  .sched-legend { gap: 8px !important; font-size: 11px; }
  .sched-row-label { font-size: 11px; }
  .sched-toggle { font-size: 11px; }

  /* ---------- PLATFORMS / SPNBOX ---------- */
  #platforms { padding: 56px 0 !important; }
  .eco-spnbox-h { grid-template-columns: 1fr; padding: 0 !important; }
  /* Drop the aspect-ratio so the container hugs the image's natural height —
     with `width:100% + height:auto` on the img the image is taller than the
     16:10 box on phones and `overflow:hidden` was clipping the bottom of the
     spnBox. Padding gives the aurora glow some breathing room. */
  .eco-spnbox-photo-h { min-height: 0; aspect-ratio: auto; padding: 28px 20px !important; }
  .eco-spnbox-photo-h img { max-width: 360px; }
  .eco-spnbox-meta-h { padding: 28px 24px !important; }
  .eco-card-title { font-size: clamp(28px, 8vw, 40px); }
  .eco-apps-grid { gap: 14px; margin-top: 18px; }
  .eco-app-card-h { padding: 22px !important; gap: 16px; }
  .eco-app-icon-img { width: 56px !important; height: 56px !important; }

  /* ---------- VENUE DASHBOARD ---------- */
  #venue { padding: 56px 0 !important; }
  .vmodal-head { padding: 18px 18px 14px !important; }
  .vmodal-head h4 { font-size: 17px; }
  .vmodal-tabs {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 14px !important;
  }
  .vmodal-tabs::-webkit-scrollbar { display: none; }
  .vmodal-tab { flex: 0 0 auto; white-space: nowrap; font-size: 12.5px; padding: 8px 12px; }
  .vmodal-body { padding: 18px !important; }
  .vp-now { grid-template-columns: 96px 1fr; gap: 14px; }
  .vp-cover { border-radius: 10px; }
  .vp-now-track { font-size: 16px; }
  .vp-now-artist { font-size: 12.5px; }
  .vp-section-h { margin: 18px 0 10px; font-size: 11px; }
  .vp-device-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .vp-health { grid-template-columns: 1fr 1fr !important; }
  .vp-cherry-stats { grid-template-columns: 1fr 1fr !important; }
  .vp-output-grid-3 { grid-template-columns: 1fr !important; }
  .vp-usb-modes { grid-template-columns: 1fr !important; }
  .vp-usb-modes-2 { grid-template-columns: 1fr !important; }

  /* ---------- MUSIC DIRECTORS / HOODIE ---------- */
  #people { padding: 56px 0 !important; }
  .collab-stage { padding: 32px 22px !important; gap: 26px !important; }
  .collab-h { font-size: clamp(26px, 7.5vw, 34px) !important; }
  .collab-feature { padding: 24px 20px !important; }
  /* Show only first hoodie on mobile — keep brand idea, cut scroll */
  .collab-hoodies { grid-template-columns: 1fr; gap: 12px; }
  .collab-hoodie:nth-child(n+2) { display: none; }
  .collab-feature-foot { flex-wrap: wrap; gap: 8px; }

  /* ---------- LISANSLAR ---------- */
  #legal { padding: 56px 0 !important; }
  .legal-stage { padding: 32px 22px !important; }
  .legal-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .legal-card { padding: 18px 16px; }
  .legal-abbr { font-size: 16px; }
  .legal-full { font-size: 11.5px; }
  .legal-check { font-size: 10.5px; }

  /* ---------- PRICING ---------- */
  #pricing { padding: 56px 0 !important; }
  .pcard { padding: 26px 22px !important; }
  .price-trio { gap: 14px; }

  /* ---------- ONBOARDING ---------- */
  #start { padding: 56px 0 !important; }
  .onb-step { padding: 24px 20px !important; gap: 14px; }
  .onb-step-num { font-size: 36px; }
  .onb-step h3 { font-size: 18px; }
  .onb-step-sub { font-size: 11.5px; }
  .onb-step p { font-size: 13.5px; }

  /* ---------- CONTACT ---------- */
  #contact { padding: 56px 0 !important; }
  .contact-stage { gap: 32px !important; }

  /* ---------- ECOSYSTEM ---------- */
  #ecosystem { padding: 40px 0 56px !important; }

  /* ---------- FOOTER ---------- */
  footer { padding: 48px 0 32px !important; }
}

/* ============================================================
 * Extra-small phones (≤420px) — squeeze further
 * ============================================================ */
@media (max-width: 420px) {
  .hero { padding: 96px 0 0 !important; }
  .hero-inner { padding: 6px 18px 48px !important; }
  .hero-h1 { font-size: clamp(36px, 11vw, 54px) !important; }
  .logo-strip { height: 150px !important; }
  .section-pad { padding: 48px 0 !important; }
  .section-title { font-size: clamp(26px, 8vw, 36px); }
  .feat { padding: 22px 18px !important; }
  .vmodal-tab { font-size: 12px; padding: 7px 10px; }
  .vp-device-grid { grid-template-columns: 1fr !important; }
}


/* ============================================================
 * PRO CONTROL — Combined SpnSound + Schedule section
 * Stacks the two stages with consistent gap; the section header
 * lives in JSX and uses the standard .s-head-row pattern.
 * ============================================================ */
.pro-control-stack {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pro-control-stack > .sound-stage,
.pro-control-stack > .sched-stage {
  margin-top: 0;
}

/* ============================================================
 * LISANSLAR — Full-bleed dark "Certificate of License"
 * Big serif typography (left) + monospace stamp panel (right).
 * Different rhythm from surrounding sections.
 * ============================================================ */
.legal-dark {
  position: relative;
  background: #0a0a14;
  color: #f6f4ef;
  padding: clamp(72px, 9vw, 120px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.legal-dark::before {
  /* Subtle indigo glow upper-left */
  content: "";
  position: absolute;
  top: -200px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,0,255,0.18) 0%, transparent 60%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.legal-dark-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 0 1px,
      transparent 1px 80px
    );
  pointer-events: none;
  z-index: 0;
}
.legal-dark .wrap { position: relative; z-index: 1; }

.legal-dark-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 980px) {
  .legal-dark-stage { grid-template-columns: 1fr; gap: 48px; }
}

.legal-dark-eyebrow {
  color: rgba(246,244,239,0.55) !important;
  letter-spacing: 0.12em;
}
.legal-dark-h {
  margin-top: 22px;
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: #f6f4ef;
  text-wrap: pretty;
}
.legal-dark-h em.serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #0000ff;
}
.legal-dark-lead {
  margin-top: 30px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: rgba(246,244,239,0.82);
  max-width: 46ch;
  text-wrap: pretty;
}
.legal-dark-lead b { color: #f6f4ef; font-weight: 500; }
.legal-dark-fine {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(246,244,239,0.48);
  max-width: 52ch;
}

/* Right column — the "stamp" / certificate panel */
.legal-stamp {
  background: linear-gradient(180deg, #12121e 0%, #0e0e18 100%);
  border: 1px solid rgba(246,244,239,0.12);
  border-radius: 4px;
  padding: 32px clamp(24px, 3vw, 38px);
  box-shadow:
    0 40px 80px -40px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.legal-stamp::before,
.legal-stamp::after {
  /* Notched / receipt-style edges */
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  height: 1px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(246,244,239,0.18) 0 6px,
      transparent 6px 12px
    );
}
.legal-stamp::before { top: 22px; }
.legal-stamp::after  { bottom: 22px; }

.legal-stamp-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  padding-bottom: 22px;
  gap: 14px;
  flex-wrap: wrap;
}
.legal-stamp-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(246,244,239,0.55);
  font-weight: 500;
}
.legal-stamp-sl {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 17px;
  color: #0000ff;
  letter-spacing: -0.005em;
}

.legal-stamp-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-stamp-row {
  display: grid;
  grid-template-columns: 78px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px dashed rgba(246,244,239,0.08);
}
.legal-stamp-row:last-child { border-bottom: 1px dashed rgba(246,244,239,0.08); }
.legal-stamp-abbr {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #f6f4ef;
  letter-spacing: -0.005em;
}
.legal-stamp-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.legal-stamp-full {
  font-size: 12.5px;
  color: rgba(246,244,239,0.7);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.legal-stamp-no {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(138, 168, 255, 0.75);
  font-variant-numeric: tabular-nums;
}
.legal-stamp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 184, 112, 0.18);
  color: #4cd99a;
}

.legal-stamp-foot {
  padding-top: 26px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
}
.legal-stamp-seal {
  color: rgba(138, 168, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal-stamp-foot-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-stamp-foot-l {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.4);
}
.legal-stamp-foot-v {
  font-size: 13px;
  color: rgba(246,244,239,0.78);
  letter-spacing: -0.005em;
}

/* ============================================================
 * STATS MARQUEE — Big typographic moment / breathing room
 * Between Lisanslar (dark) and Pricing (light)
 * ============================================================ */
.stats-marquee {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 5vw, 64px) 0;
  overflow: hidden;
}
.stats-marquee-inner {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 36px) clamp(20px, 3vw, 40px);
  padding: 0 24px;
  text-align: center;
}
.stats-marquee-item {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.stats-marquee-item b {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.stats-marquee-item b sup {
  font-size: 0.42em;
  font-weight: 500;
  color: var(--blue);
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 1px;
}
.stats-marquee-item em.serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.stats-marquee-dot {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 6vw, 84px);
  color: rgba(0,0,0,0.15);
  line-height: 1;
}
@media (max-width: 700px) {
  .stats-marquee-inner { gap: 10px 18px; }
  .stats-marquee-dot { display: none; }
  .stats-marquee-item { flex-basis: 45%; justify-content: center; }
  .stats-marquee-item b { font-size: clamp(34px, 12vw, 56px); }
  .stats-marquee-item em.serif { font-size: clamp(13px, 4vw, 18px); }
}

/* ============================================================
 * CTA BANNER — Onboarding reborn as compact full-bleed action strip
 * Full-bleed BLUE bg + big typography + 3 mini numbered steps + CTAs
 * ============================================================ */
.cta-banner {
  position: relative;
  background: var(--blue);
  color: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 20%, rgba(255,255,255,0.16), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cta-banner-noise {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.cta-banner .wrap { position: relative; z-index: 1; }

.cta-banner-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .cta-banner-stage { grid-template-columns: 1fr; gap: 48px; }
}

.cta-banner-eyebrow {
  color: rgba(255,255,255,0.65) !important;
  letter-spacing: 0.14em;
}
.cta-banner-h {
  margin-top: 18px;
  font-size: clamp(44px, 6.4vw, 96px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
  color: #fff;
}
.cta-banner-h em.serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #d9e2ff;
}
.cta-banner-sub {
  margin-top: 22px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 42ch;
}
.cta-banner-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-banner-actions .btn-light {
  background: #fff !important;
  color: var(--blue) !important;
  border-color: #fff !important;
}
.cta-banner-actions .btn-light:hover {
  background: rgba(255,255,255,0.92) !important;
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.cta-banner-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(4px);
}
.cta-banner-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 10px;
  transition: background 0.18s ease;
}
.cta-banner-step:hover { background: rgba(255,255,255,0.07); }
.cta-banner-num {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cta-banner-step-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cta-banner-step-meta h4 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.cta-banner-step-sub {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}
.cta-banner-tween {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  padding: 0 28px;
  line-height: 1;
}
@media (max-width: 700px) {
  .cta-banner { padding: 56px 0 !important; }
  .cta-banner-steps { padding: 6px; }
  .cta-banner-step { padding: 14px 16px; gap: 14px; }
  .cta-banner-num { width: 32px; height: 32px; font-size: 12.5px; }
  .cta-banner-step-meta h4 { font-size: 15px; }
  .cta-banner-tween { display: none; }
}

/* ============================================================
 * Mobile additions for the new Lisanslar / Stats / CTA
 * ============================================================ */
@media (max-width: 700px) {
  .legal-dark { padding: 64px 0 !important; }
  .legal-dark-h { font-size: clamp(34px, 9vw, 48px); }
  .legal-stamp { padding: 24px 20px; }
  .legal-stamp-row { grid-template-columns: 62px 1fr 22px; gap: 12px; padding: 14px 0; }
  .legal-stamp-abbr { font-size: 16px; }
  .legal-stamp-full { font-size: 12px; }
  .legal-stamp-no { font-size: 10px; }
  .legal-stamp-foot { grid-template-columns: 56px 1fr; gap: 14px; }
  .legal-stamp-seal svg { width: 56px; height: 56px; }
}


/* ============================================================
 * LISANSLAR — Quiet, restrained variant
 * (replaces the older .legal-dark / .legal-stamp treatment)
 * ============================================================ */
.legal-quiet {
  background: var(--bg);
}
.legal-quiet-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.legal-quiet-h {
  margin-top: 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 22ch;
  color: var(--ink);
}
.legal-quiet-h .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.legal-quiet-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  max-width: 60ch;
}

.legal-quiet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .legal-quiet-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .legal-quiet-grid { grid-template-columns: 1fr; gap: 22px; padding: 24px 0; } }
/* On phones hide the per-country licensing-org grid (TR/US/UK/EU + RTÜK,
   ASCAP, GEMA…) — the eyebrow + headline + sub already convey "FM34 is
   licensed worldwide"; the org breakdown is desktop detail. Keeps the legal
   section short on mobile. */
@media (max-width: 700px) { .legal-quiet-grid { display: none; } }

.legal-quiet-region { display: flex; flex-direction: column; gap: 14px; }
.legal-quiet-region-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.legal-quiet-flag {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-2);
  background: #fff;
  font-variant-numeric: tabular-nums;
}
.legal-quiet-region-name {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.legal-quiet-orgs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-quiet-orgs li {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.legal-quiet-orgs li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.55;
  flex: 0 0 auto;
}
.legal-quiet-fine {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.55;
  max-width: 68ch;
}

/* ============================================================
 * MARKA İŞ BİRLİKLERİ — Editorial design touch
 * Less "outer card" weight, subtle hoodie tilts, punchier
 * "be positive × spinloud" treatment.
 * ============================================================ */
.collab-stage {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.collab-feature {
  /* Lift the "featured drop" card out as the visual hero */
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  padding: clamp(28px, 3.4vw, 44px) !important;
  position: relative;
  overflow: hidden;
}
.collab-feature::before {
  /* Soft brand-color glow — more editorial than a flat tint */
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0,0,255,0.08) 0%, transparent 60%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

/* Bigger "be positive × spinloud" treatment */
.collab-feature-title { gap: 18px !important; align-items: center !important; }
.collab-feature-brand {
  font-size: clamp(28px, 3.4vw, 44px) !important;
  line-height: 1 !important;
}
.collab-feature-x {
  font-size: clamp(20px, 2.4vw, 32px) !important;
  color: var(--muted-2) !important;
  font-weight: 300 !important;
  margin: 0 2px;
}
.collab-feature-x::before {
  content: "";
}

/* Hoodies — editorial polaroid feel with subtle alternating tilt */
.collab-hoodies {
  margin-top: 28px !important;
  gap: clamp(14px, 1.6vw, 22px) !important;
}
.collab-hoodie {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease;
}
.collab-hoodie:nth-child(1) { transform: rotate(-1.4deg); }
.collab-hoodie:nth-child(2) { transform: rotate(0.6deg) translateY(-6px); }
.collab-hoodie:nth-child(3) { transform: rotate(1.2deg); }
.collab-hoodie:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  box-shadow: 0 20px 40px -20px rgba(0,0,40,0.18) !important;
  z-index: 2;
}
.collab-hoodie img {
  border-radius: 8px;
  border: none;
  aspect-ratio: 4/5 !important;
  object-fit: cover;
}
.collab-hoodie figcaption {
  padding: 10px 4px 2px !important;
  gap: 4px !important;
}
.collab-hoodie-name {
  font-size: 14px !important;
  letter-spacing: -0.015em;
}
.collab-hoodie-tag {
  font-size: 10.5px !important;
  letter-spacing: 0.06em;
}

/* Footer pills — give them a "drop campaign" feel */
.collab-feature-foot { margin-top: 24px !important; gap: 10px !important; }
.collab-foot-pill {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}

/* Left side — make the body copy + checklist feel more editorial */
.collab-left {
  position: relative;
}
.collab-h {
  font-size: clamp(32px, 3.8vw, 46px) !important;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}
.collab-h::before {
  /* Small decorative serif marker */
  content: "❝";
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.4em;
  line-height: 0.4;
  color: var(--blue);
  opacity: 0.35;
  margin-bottom: 8px;
}
.collab-list li {
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
}
.collab-list li:last-child { border-bottom: none; }

/* Mobile — tone the tilts down so they don't look messy at narrow widths */
@media (max-width: 700px) {
  .collab-hoodie:nth-child(1),
  .collab-hoodie:nth-child(2),
  .collab-hoodie:nth-child(3) {
    transform: none;
  }
  .collab-feature { padding: 24px 22px !important; }
  .collab-feature-brand { font-size: clamp(24px, 7vw, 32px) !important; }
}


/* ============================================================
 * Marka iş birlikleri — 2-hoodie refinement
 *  - "spinloud" written as brand text (no logo)
 *  - 2 figures instead of 3, no captions/channel names
 *  - Images kept full / not over-cropped
 * ============================================================ */

/* spinloud as text-brand, matching "be positive" weight in the title row */
.collab-feature-brand-sl {
  font-family: 'Sora', sans-serif !important;
  font-style: normal !important;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.025em;
  line-height: 1;
  font-size: clamp(28px, 3.4vw, 44px);
}

/* 2-column grid, generous gap */
.collab-hoodies {
  grid-template-columns: 1fr 1fr !important;
  gap: clamp(18px, 2vw, 28px) !important;
  margin-top: clamp(28px, 3vw, 36px) !important;
}

/* Hoodie cards — calmer tilts, more padding, white card */
.collab-hoodie {
  padding: 18px 18px 22px !important;
  border-radius: 16px !important;
}
.collab-hoodie:nth-child(1) { transform: rotate(-1deg) !important; }
.collab-hoodie:nth-child(2) { transform: rotate(1deg) !important; }
.collab-hoodie:hover {
  transform: rotate(0deg) translateY(-4px) !important;
}

/* Image — keep natural proportions, NO crop */
.collab-hoodie img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: #fafafa;
  border-radius: 10px;
  display: block;
}

/* Hide leftover figcaption styles in case any markup variant remains */
.collab-hoodie figcaption,
.collab-hoodie-name,
.collab-hoodie-tag { display: none !important; }

/* Mobile — 1 column, both visible (override the earlier "hide n+2" rule) */
@media (max-width: 700px) {
  .collab-hoodies { grid-template-columns: 1fr !important; gap: 14px !important; }
  .collab-hoodie:nth-child(n+2) { display: block !important; }
  .collab-hoodie:nth-child(1),
  .collab-hoodie:nth-child(2) { transform: none !important; }
  .collab-feature-brand-sl { font-size: clamp(24px, 7vw, 32px); }
}


/* ============================================================
 * PREVIEW BROADCAST STRIP — refined "live radio tuner" UI
 * Replaces the small .preview-live chip + .preview-wave chip.
 * One horizontal strip at the bottom of the cover with:
 *   [● CANLI]  [≣≡≡≡≡ animated bars ≡≡≣]  [FM34 · 192 kbps]
 * Glass background, gradient bars, breathes with playback.
 * ============================================================ */
.preview-broadcast {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  height: 44px;
  background: linear-gradient(180deg, rgba(10,10,20,0.74) 0%, rgba(10,10,20,0.66) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow:
    0 8px 24px -8px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.preview-broadcast-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding-right: 12px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.preview-broadcast-label {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

/* Override the live dot — slightly bigger, brighter red */
.preview-broadcast .preview-live-dot {
  width: 8px;
  height: 8px;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,0.6);
}

/* The animated EQ bar group — gradient, anchored bottom, smoother */
.preview-broadcast-wave {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
  height: 22px;
  min-width: 0;
  position: relative;
}
.preview-broadcast-bar {
  display: block;
  flex: 1 1 0;
  margin: 0 1.5px;
  min-height: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.95) 0%,
    rgba(180, 200, 255, 0.85) 50%,
    rgba(0, 80, 255, 0.85) 100%);
  transition: height 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom center;
}

.preview-broadcast-meta {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  flex: 0 0 auto;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.10);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Mobile — keep the broadcast strip but tighten paddings/sizes */
@media (max-width: 700px) {
  .preview-broadcast {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 10px;
    padding: 8px 12px;
    height: 40px;
  }
  .preview-broadcast-wave { height: 18px; }
  .preview-broadcast-bar { margin: 0 1px; }
  .preview-broadcast-meta { font-size: 9.5px; padding-left: 10px; }
  .preview-broadcast-status { padding-right: 10px; }
}

/* Hide the old chips just in case any cached markup is still around */
.channel-preview-cover .preview-live,
.channel-preview-cover .preview-wave { display: none; }


/* ============================================================
 * STATS STRIPE — Stripe-style numbers section
 *  - Full-bleed cafe photo background w/ dark gradient overlay
 *  - Large light-weight numbers, hairline borders, generous spacing
 *  - Count-up animation + stagger on scroll
 * ============================================================ */
.stats-stripe {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(100px, 12vw, 168px) 0 clamp(100px, 12vw, 168px);
  isolation: isolate;
}

.stats-stripe-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stats-stripe-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  /* Slow parallax-feel: scale up so we can pan/zoom subtly */
  transform: scale(1.06);
  animation: stripeBgDrift 28s ease-in-out infinite alternate;
}
@keyframes stripeBgDrift {
  0%   { transform: scale(1.06) translate3d(0,0,0); }
  100% { transform: scale(1.10) translate3d(-1.5%, -1%, 0); }
}
.stats-stripe-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8,8,18,0.62) 0%,
      rgba(8,8,18,0.78) 55%,
      rgba(8,8,18,0.85) 100%),
    radial-gradient(900px 500px at 12% 18%, rgba(0,0,255,0.22), transparent 60%);
}
.stats-stripe-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.stats-stripe-wrap {
  position: relative;
  z-index: 1;
}

/* HEAD — eyebrow + headline (fades in on enter) */
.stats-stripe-head {
  max-width: 760px;
  margin-bottom: clamp(56px, 7vw, 96px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.stats-stripe-head.is-in {
  opacity: 1;
  transform: translateY(0);
}
.stats-stripe-eyebrow {
  color: rgba(255,255,255,0.62) !important;
  letter-spacing: 0.14em;
}
.stats-stripe-h {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  text-wrap: pretty;
}
.stats-stripe-h em.serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #cfd9ff;
}

/* GRID — 4 columns, hairline-separated */
.stats-stripe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.16);
}
@media (max-width: 900px) {
  .stats-stripe-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats-stripe-grid { grid-template-columns: 1fr; }
}

.stats-item {
  position: relative;
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 36px) clamp(30px, 3.4vw, 48px);
  border-right: 1px solid rgba(255,255,255,0.16);
  /* Entrance */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.stats-item.is-in {
  opacity: 1;
  transform: translateY(0);
}
.stats-item:last-child {
  border-right: none;
}
@media (max-width: 900px) {
  .stats-item:nth-child(2n) { border-right: none; }
  .stats-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.16); }
}
@media (max-width: 560px) {
  .stats-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .stats-item:last-child { border-bottom: none; }
}

/* The big number itself — Stripe-y light weight + tight letterspacing */
.stats-num {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 0.92;
  color: #fff;
}
.stats-num-v {
  font-family: 'Sora', sans-serif;
  font-size: clamp(60px, 6.2vw, 96px);
  font-weight: 300;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}
.stats-num-suffix {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--blue);
  letter-spacing: -0.04em;
  /* keep "+" raised slightly */
  align-self: flex-start;
  margin-top: 0.08em;
}

.stats-label {
  margin-top: 18px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}
.stats-sub {
  margin-top: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* Subtle accent line that draws in under the number when in view */
.stats-item::after {
  content: "";
  position: absolute;
  left: clamp(20px, 2.4vw, 36px);
  right: clamp(20px, 2.4vw, 36px);
  top: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.stats-item.is-in::after {
  transform: scaleX(1);
}

/* Mobile tweaks */
@media (max-width: 700px) {
  .stats-stripe { padding: 80px 0 !important; }
  .stats-stripe-h { font-size: clamp(30px, 8vw, 44px); }
  .stats-num-v { font-size: clamp(54px, 14vw, 80px); }
  .stats-num-suffix { font-size: clamp(24px, 6vw, 36px); }
  .stats-label { font-size: clamp(18px, 5vw, 22px); }
  .stats-sub { font-size: 10.5px; }
}

/* Kill the OLD .stats-marquee styles when both exist (defensive) */
.stats-marquee { display: none !important; }


/* ============================================================
 * FOOTER TAGLINE — Massive editorial intro at the top of footer
 *  Full-bleed · light gray · italic serif · subtle drift
 * ============================================================ */
footer { padding-top: 0 !important; margin-top: 0 !important; }

.foot-tagline {
  width: 100%;
  padding: clamp(20px, 2.5vw, 40px) 0 clamp(36px, 4vw, 64px);
  background: transparent;
  border: none;
  text-align: center;
  overflow: hidden;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.foot-tagline-text {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 6.8vw, 168px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: rgba(0, 0, 20, 0.14);
  white-space: nowrap;
  /* Subtle entrance drift */
  animation: foot-tagline-drift 14s ease-in-out infinite alternate;
}

@keyframes foot-tagline-drift {
  0%   { transform: translateX(-0.4%) translateY(0); }
  100% { transform: translateX(0.4%)  translateY(-1px); }
}

/* Mobile — still single line, just scale further down */
@media (max-width: 700px) {
  .foot-tagline { padding: 36px 16px; margin-bottom: 40px; }
  .foot-tagline-text { font-size: 7.4vw; }
}


/* ============================================================
 * FOOTER — Simplified menu layout
 * Brand block + 3 mini columns (Hesap · Yasal · Sosyal)
 * ============================================================ */
.foot-grid-min {
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
  gap: clamp(28px, 4vw, 64px) !important;
}
@media (max-width: 900px) {
  .foot-grid-min { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
}
@media (max-width: 560px) {
  .foot-grid-min { grid-template-columns: 1fr !important; gap: 24px !important; }
}

.foot-ig {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink) !important;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  width: fit-content;
}
.foot-ig:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff !important;
}
.foot-ig svg { flex: 0 0 auto; }


/* ============================================================
 * FOOTER — Soft gray ground, no column headers
 * ============================================================ */
footer {
  background: #f4f4f6 !important;
  border-top: 1px solid var(--line);
}
/* Hide leftover h5 column headers anywhere in the footer */
footer .foot-col h5 { display: none; }


/* ============================================================
 * FOOTER — Clean rebuild (overrides old tagline-related rules)
 * Restore generous top/bottom padding · vertical-center cols
 * Better link typography since column headers are gone
 * ============================================================ */
footer {
  padding-top: clamp(64px, 7vw, 100px) !important;
  padding-bottom: clamp(32px, 3vw, 48px) !important;
  margin-top: clamp(72px, 8vw, 120px) !important;
  background: #f4f4f6 !important;
  border-top: 1px solid var(--line);
}

.foot-grid-min {
  align-items: start !important;
  padding-bottom: clamp(40px, 4vw, 56px) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.foot-grid-min .foot-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.foot-grid-min .foot-col a {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s ease;
}
.foot-grid-min .foot-col a:hover { color: var(--blue); }

.foot-grid-min .foot-brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.foot-bottom {
  margin-top: clamp(28px, 3vw, 40px) !important;
  padding-top: 0 !important;
  border-top: none !important;
  color: var(--muted-2);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-lang { display: flex; gap: 12px; }
.foot-lang a { color: var(--muted-2); text-decoration: none; font-size: 12px; }
.foot-lang a.active { color: var(--ink); }
.foot-lang a:hover { color: var(--ink); }
