/* =========================================================
   AUDIOPRODUKT — Premium Studio Design System
   Dark, warm, editorial. Amber accent. Newsreader + Geist.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Palette — dark by default (warm anthracite + cream + amber) */
  --bg-deep: #0c0b09;
  --bg-base: #14110c;
  --bg-elev: #1c1812;
  --bg-card: #221d16;
  --bg-card-hover: #2a241b;
  --border: #2e2820;
  --border-strong: #443c30;
  --text: #f4ede0;
  --text-2: #b8af9d;
  --text-3: #7a7160;
  --text-faint: #4a4538;

  --accent: #e89c45;
  --accent-h: #f4ab58;
  --accent-soft: rgba(232, 156, 69, 0.12);
  --accent-line: rgba(232, 156, 69, 0.28);

  --ok: #6fbf73;
  --err: #e76b6b;

  /* Type */
  --font-display: 'Newsreader', 'Iowan Old Style', 'Palatino', serif;
  --font-body: 'Geist', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;

  /* Layout */
  --max: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 140px);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 160ms;
  --t-med: 280ms;
  --t-slow: 520ms;
}

/* Light mode override */
:root[data-theme="light"] {
  --bg-deep: #ece6d8;
  --bg-base: #f5efe2;
  --bg-elev: #fbf6ea;
  --bg-card: #ffffff;
  --bg-card-hover: #fbf6ea;
  --border: #e2dac6;
  --border-strong: #c8bea7;
  --text: #1a1610;
  --text-2: #5a5346;
  --text-3: #8a8270;
  --text-faint: #b4ab98;
  --accent-soft: rgba(196, 122, 35, 0.10);
  --accent-line: rgba(196, 122, 35, 0.25);
  --accent: #c47a23;
  --accent-h: #d28a35;
}

/* Accent variants — toggled via data attribute */
:root[data-accent="amber"] { --accent: #e89c45; --accent-h: #f4ab58; --accent-soft: rgba(232,156,69,0.12); --accent-line: rgba(232,156,69,0.28); }
:root[data-accent="coral"] { --accent: #e87056; --accent-h: #f08570; --accent-soft: rgba(232,112,86,0.12); --accent-line: rgba(232,112,86,0.28); }
:root[data-accent="sage"]  { --accent: #8aae7b; --accent-h: #9bbb8e; --accent-soft: rgba(138,174,123,0.14); --accent-line: rgba(138,174,123,0.30); }
:root[data-accent="petrol"]{ --accent: #4d9aa6; --accent-h: #5fb0bc; --accent-soft: rgba(77,154,166,0.14); --accent-line: rgba(77,154,166,0.30); }

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--accent); color: #14110c; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ----------- LAYOUT ----------- */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
section { padding-block: var(--section-y); position: relative; }

/* ----------- HEADER ----------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: color-mix(in oklab, var(--bg-deep) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
}
.brand__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(77, 154, 200, 0.25));
  transition: transform var(--t-fast) var(--ease);
}
.brand:hover .brand__icon { transform: scale(1.05) rotate(-2deg); }
.brand__dot {
  display: none;
}
.brand small { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; }
.brand__col { display: flex; flex-direction: column; line-height: 1; gap: 4px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px; color: var(--text-2);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -18px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__cta {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--accent); color: #14110c !important;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.nav__cta:hover { background: var(--accent-h); transform: translateY(-1px); }

.menu-toggle { display: none; padding: 8px; border-radius: 8px; }
.menu-toggle svg { width: 22px; height: 22px; stroke: var(--text); }

/* Theme toggle — visible to visitors (sun/moon) */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
  transform: rotate(-12deg);
}
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-sun  { display: block; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

@media (max-width: 880px) {
  .nav { position: fixed; inset: 64px 0 0 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--bg-base); padding: 24px var(--pad-x); border-top: 1px solid var(--border); transform: translateX(100%); transition: transform var(--t-med) var(--ease); }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 16px 0; font-size: 20px; width: 100%; border-bottom: 1px solid var(--border); }
  .nav a.active::after { display: none; }
  .nav__cta { margin-top: 16px; width: 100%; text-align: center; }
  .menu-toggle { display: block; }
}

/* ----------- TYPOGRAPHY ----------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor;
}
.eyebrow--center::after {
  content: ''; width: 24px; height: 1px; background: currentColor;
}

h1, h2, h3, h4, .display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; text-wrap: balance; }

.display-xl {
  font-size: clamp(48px, 8.5vw, 132px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.display-l {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-m {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.06;
}
.display-s {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
}
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--text-2);
  line-height: 1.55;
  text-wrap: pretty;
  max-width: 60ch;
}
em.serif-italic { font-style: italic; font-family: var(--font-display); color: var(--accent); font-weight: 400; }

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent); color: #14110c;
}
.btn--primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px -8px var(--accent); }
.btn--ghost {
  border-color: var(--border-strong); color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--big { padding: 18px 32px; font-size: 16px; }

/* ----------- BADGES / CHIPS ----------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--accent-line);
}
.chip--neutral {
  background: var(--bg-elev); color: var(--text-2);
  border-color: var(--border);
}

/* ----------- CARDS ----------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.card:hover { border-color: var(--border-strong); }

/* ----------- AUDIO PLAYER ----------- */
.player {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; gap: 18px;
}
.player__btn {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent); color: #14110c;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast) var(--ease);
}
.player__btn:hover { background: var(--accent-h); transform: scale(1.05); }
.player__btn svg { width: 22px; height: 22px; }
.player--lg .player__btn { width: 72px; height: 72px; }
.player--lg .player__btn svg { width: 26px; height: 26px; }
.player__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.player__title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.player__title { font-family: var(--font-display); font-size: 18px; font-weight: 500; line-height: 1.2; }
.player__cat { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.player__time { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); flex-shrink: 0; }
.player__wave {
  display: block; width: 100%; height: 36px;
  cursor: pointer;
}
.player--mini { padding: 12px 16px; gap: 14px; }
.player--mini .player__btn { width: 40px; height: 40px; }
.player--mini .player__btn svg { width: 16px; height: 16px; }
.player--mini .player__wave { height: 24px; }
.player--mini .player__title { font-size: 15px; font-family: var(--font-body); font-weight: 500; }

/* Video variant */
.player--video {
  display: block;
  padding: 0;
  background: var(--bg-elev);
  overflow: hidden;
  border-radius: var(--radius);
}
.player__video-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.player__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.player__video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
  cursor: pointer;
  transition: opacity var(--t-med) var(--ease);
}
.player__video-wrap.is-playing .player__video-overlay { opacity: 0; pointer-events: none; }
.player__video-overlay-btn {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--accent); color: #14110c;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast) var(--ease);
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.5);
}
.player__video-overlay:hover .player__video-overlay-btn { transform: scale(1.08); background: var(--accent-h); }
.player__video-overlay-chip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.player__video-expand {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0,0,0,0.55); color: #fff;
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.player__video-wrap:hover .player__video-expand { opacity: 1; }
.player__video-expand:hover { background: var(--accent); color: #14110c; }
.player__video-meta {
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
}
.player__video-meta-text { min-width: 0; flex: 1; }
.player__video-meta .player__title { font-size: 16px; font-weight: 500; font-family: var(--font-body); margin-top: 2px; }
.player__video-meta .player__cat { font-size: 11px; }
.player__video-badge {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--accent-line);
  flex-shrink: 0;
}
.player--video.player--lg .player__video-overlay-btn { width: 80px; height: 80px; }
.player--video.player--mini .player__video-meta { padding: 10px 14px; }
.player--video.player--mini .player__video-overlay-btn { width: 48px; height: 48px; }
.player--video.player--mini .player__video-overlay-btn svg { width: 18px; height: 18px; }

/* Video player overrides for card contexts */
.sample-card .player--video,
.track__player .player--video {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 0;
}

/* External-link variant (Audible etc.) */
.player--external .player__btn--external {
  background: var(--accent); color: #14110c;
  text-decoration: none;
}
.player--external .player__btn--external:hover { background: var(--accent-h); transform: scale(1.05); }
.player__time--ext {
  color: var(--accent) !important;
  font-family: var(--font-mono); font-size: 12px;
  text-decoration: none;
  transition: opacity var(--t-fast) var(--ease);
}
.player__time--ext:hover { opacity: 0.7; }
.player--external .player__wave { pointer-events: none; opacity: 0.7; }

@media (max-width: 560px) {
  .player { padding: 16px; gap: 14px; }
  .player__btn { width: 48px; height: 48px; }
  .player--lg .player__btn { width: 56px; height: 56px; }
}

/* ----------- FOOTER ----------- */
.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding-block: 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-2); font-size: 15px; transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
  gap: 24px; flex-wrap: wrap;
}

/* ----------- UTILITIES ----------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.divider {
  height: 1px; background: var(--border);
  width: 100%;
}
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-head__left { max-width: 640px; display: flex; flex-direction: column; gap: 14px; }
.section-head__title { font-size: clamp(32px, 4.4vw, 60px); line-height: 1.06; }

/* ----------- BG DECORATIONS ----------- */
.glow {
  position: absolute; pointer-events: none;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ----------- STICKY MINI PLAYER ----------- */
.mini-player {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(120%);
  z-index: 60;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  display: flex; align-items: center; gap: 16px;
  min-width: 380px; max-width: calc(100vw - 40px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.5);
  transition: transform var(--t-med) var(--ease);
}
.mini-player.show { transform: translateX(-50%) translateY(0); }
.mini-player__title { font-size: 14px; font-weight: 500; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-player__cat { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.mini-player__btn {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--accent); color: #14110c;
  display: flex; align-items: center; justify-content: center;
}
.mini-player__close { width: 36px; height: 36px; border-radius: 999px; color: var(--text-3); display: flex; align-items: center; justify-content: center; }
.mini-player__close:hover { color: var(--text); background: var(--bg-card); }
.mini-player__live { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; }
.mini-player__live span { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

@media (max-width: 560px) { .mini-player { min-width: 0; left: 12px; right: 12px; transform: translateY(120%); } .mini-player.show { transform: translateY(0); } }

/* ----------- FORMS ----------- */
.input, .textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--text);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.input:focus, .textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-card); }
.input::placeholder, .textarea::placeholder { color: var(--text-3); }
.textarea { min-height: 140px; resize: vertical; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); }

/* ----------- TWEAKS PANEL ----------- */
.tweaks-panel {
  position: fixed; top: 84px; right: 20px; z-index: 70;
  width: 280px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px;
  display: none;
  box-shadow: 0 24px 64px -16px rgba(0,0,0,0.6);
}
.tweaks-panel.open { display: block; }
.tweaks-panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.tweaks-panel__title { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.tweaks-panel__close { color: var(--text-3); padding: 4px; }
.tweaks-row { padding: 12px 0; border-top: 1px solid var(--border); }
.tweaks-row:first-of-type { border-top: none; padding-top: 0; }
.tweaks-row__label { font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
.tweaks-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks-opt {
  flex: 1; min-width: 0;
  padding: 8px 10px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 12px; color: var(--text-2);
  text-align: center;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.tweaks-opt:hover { border-color: var(--border-strong); color: var(--text); }
.tweaks-opt.active { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.tweaks-swatch { display: flex; gap: 8px; }
.tweaks-swatch button { flex: 1; height: 32px; border-radius: 8px; border: 2px solid var(--border); transition: border-color var(--t-fast) var(--ease); }
.tweaks-swatch button.active { border-color: var(--text); }

/* ----------- DENSITY ----------- */
:root[data-density="airy"] { --section-y: clamp(96px, 12vw, 180px); }
:root[data-density="compact"] { --section-y: clamp(56px, 6vw, 96px); }

/* ----------- FADE-IN ----------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ----------- WAVEFORM IN HERO ----------- */
.studio-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3);
}
.studio-mark::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--err);
  animation: blink 1.4s ease-in-out infinite;
}
