/*═══════════════════════════════════════════════════════════════════════════
  KONSTANT DANEBEN RECORDS — Design System
  Vienna Electronic Music Label
═══════════════════════════════════════════════════════════════════════════*/

/* ─────────────────────────────────────────────────────────────────────────
   CSS Custom Properties
───────────────────────────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --ink: #0B0C0F;
  --paper: #FBFBFA;
  --signal: #00BCD4;
  --heat: #DE5308;
  --muted: #6B6F7A;

  /* Semantic Colors */
  --bg: var(--paper);
  --fg: var(--ink);
  --fg-muted: rgba(11, 12, 15, 0.6);
  --border: rgba(11, 12, 15, 0.1);
  --card-bg: rgba(255, 255, 255, 0.7);
  --card-border: rgba(11, 12, 15, 0.08);
  --glow: rgba(0, 188, 212, 0.15);
  --shadow: 0 20px 60px rgba(11, 12, 15, 0.08);
  --shadow-lg: 0 40px 100px rgba(11, 12, 15, 0.12);

  /* Typography */
  --font-sans: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 100px;
  --space-4xl: 160px;

  /* Layout */
  --max-width: 1400px;
  --content-width: 900px;
  --nav-height: 64px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 600ms;
  --duration-slower: 1000ms;

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-cursor: 1000;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg: var(--ink);
  --fg: var(--paper);
  --fg-muted: rgba(251, 251, 250, 0.55);
  --border: rgba(251, 251, 250, 0.1);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(251, 251, 250, 0.08);
  --glow: rgba(0, 188, 212, 0.2);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────
   Reset & Base
───────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  transition: background-color var(--duration-slow) var(--ease-out),
    color var(--duration-slow) var(--ease-out);
}

body.loading {
  overflow: hidden;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--signal);
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────
   Typography
───────────────────────────────────────────────────────────────────────── */
.display {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
}

.body-lg {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
}

.body {
  font-size: 1rem;
  line-height: 1.7;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.caption {
  font-size: 0.75rem;
  line-height: 1.5;
}

.mono {
  font-family: var(--font-mono);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.muted {
  color: var(--fg-muted);
}

/* ─────────────────────────────────────────────────────────────────────────
   Layout Utilities
───────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-md);
  }
}

.section {
  padding: var(--space-4xl) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-3xl) 0;
  }
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.flex {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────
   Skip Link
───────────────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--signal);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-xs);
  z-index: var(--z-toast);
  transition: top var(--duration-normal) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────
   Loading Screen
───────────────────────────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 120px;
  height: auto;
  margin-bottom: var(--space-xl);
}

.loader-line {
  width: 200px;
  height: 3px;
  background: rgba(251, 251, 250, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: var(--signal);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

/* ─────────────────────────────────────────────────────────────────────────
   Custom Cursor
───────────────────────────────────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--signal);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease-spring),
      height 0.2s var(--ease-spring),
      border-color 0.2s,
      background-color 0.2s;
    mix-blend-mode: difference;
  }

  .cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(0, 188, 212, 0.1);
  }

  .cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--signal);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
  }

  body:not(.touch) {
    cursor: none;
  }

  body:not(.touch) a,
  body:not(.touch) button {
    cursor: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Navigation
───────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-fixed);
  transition: transform var(--duration-normal) var(--ease-out),
    background-color var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
}

.nav-brand:hover {
  color: inherit;
}

.nav-dot {
  width: 10px;
  height: 10px;
  background: var(--signal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-sm) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--signal);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover {
  color: inherit;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
}

.lang-link {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-xs);
  transition: all var(--duration-fast) var(--ease-out);
  color: var(--fg-muted);
}

.lang-link:hover,
.lang-link.active {
  color: var(--fg);
  background: var(--border);
}

.lang-link.active {
  color: var(--signal);
}

.lang-sep {
  color: var(--fg-muted);
  opacity: 0.5;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--duration-fast) var(--ease-out);
}

.theme-toggle:hover {
  background: var(--border);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.theme-toggle:hover svg {
  transform: rotate(15deg);
}

.theme-toggle .sun {
  display: block;
}

.theme-toggle .moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon {
  display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 1px;
  transition: transform var(--duration-normal) var(--ease-out),
    opacity var(--duration-normal) var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-out),
      visibility var(--duration-normal);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-actions .theme-toggle {
    order: -1;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Hero Section
───────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 100%, var(--glow) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 0%, color-mix(in srgb, var(--heat) 8%, transparent) 0%, transparent 50%);
  opacity: 0.8;
}

/* Animated Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--signal);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {

  0%,
  100% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
    transform: translateY(80vh) scale(1);
  }

  90% {
    opacity: 0.6;
    transform: translateY(20vh) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.hero-inner {
  max-width: 1000px;
}

/* Animated Logo */
.hero-logo {
  width: 100%;
  max-width: 800px;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s var(--ease-out) 0.5s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo svg {
  width: 100%;
  height: auto;
}

/* Logo Line Animation */
.logo-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 2s var(--ease-out) 0.8s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.logo-text {
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 1.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Staggered DANEBEN letters */
.logo-daneben text {
  opacity: 0;
}

.logo-daneben text:nth-child(1) {
  animation: letterReveal 0.5s var(--ease-out) 1.6s forwards;
}

.logo-daneben text:nth-child(2) {
  animation: letterReveal 0.5s var(--ease-out) 1.7s forwards;
}

.logo-daneben text:nth-child(3) {
  animation: letterReveal 0.5s var(--ease-out) 1.8s forwards;
}

.logo-daneben text:nth-child(4) {
  animation: letterReveal 0.5s var(--ease-out) 1.9s forwards;
}

.logo-daneben text:nth-child(5) {
  animation: letterReveal 0.5s var(--ease-out) 2.0s forwards;
}

.logo-daneben text:nth-child(6) {
  animation: letterReveal 0.5s var(--ease-out) 2.1s forwards;
}

.logo-daneben text:nth-child(7) {
  animation: letterReveal 0.5s var(--ease-out) 2.2s forwards;
}

@keyframes letterReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 2.3s forwards;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 2.5s forwards;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column !important;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 80px auto;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--fg-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 3s forwards;
}

@media (max-width: 600px) {
  .hero-scroll {
    bottom: 10px;
    z-index: 5;
  }
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--fg-muted), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--signal);
  animation: scrollDown 1.5s var(--ease-in-out) infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(80px);
  }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 2.8s forwards;
}

@media (max-width: 1200px) {
  .hero-stats {
    display: none;
  }
}

.hero-stat {
  text-align: right;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--signal);
}

.hero-stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: var(--space-xs);
}

/* ─────────────────────────────────────────────────────────────────────────
   Buttons
───────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-out);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border: 2px solid var(--fg);
}

.btn-primary:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--fg);
  transform: translateY(-2px);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ─────────────────────────────────────────────────────────────────────────
   Divider / Line Motif
───────────────────────────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden;
}

.divider svg {
  width: 100%;
  height: 100%;
}

.divider-animated .divider-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.divider-animated.in-view .divider-line {
  animation: drawLine 1.5s var(--ease-out) forwards;
}

.divider-dot {
  opacity: 0;
  transform: scale(0);
}

.divider-animated.in-view .divider-dot {
  animation: dotPop 0.5s var(--ease-spring) 1s forwards;
}

@keyframes dotPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Section Headers
───────────────────────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--signal);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin-top: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────
   Scroll Animations
───────────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out);
}

.stagger.in-view>*:nth-child(1) {
  transition-delay: 0ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger.in-view>*:nth-child(2) {
  transition-delay: 100ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger.in-view>*:nth-child(3) {
  transition-delay: 200ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger.in-view>*:nth-child(4) {
  transition-delay: 300ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger.in-view>*:nth-child(5) {
  transition-delay: 400ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger.in-view>*:nth-child(6) {
  transition-delay: 500ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger.in-view>*:nth-child(7) {
  transition-delay: 600ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger.in-view>*:nth-child(8) {
  transition-delay: 700ms;
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────
   About Section
───────────────────────────────────────────────────────────────────────── */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.about-visual {
  position: relative;
  aspect-ratio: 1;
}

.about-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.about-circle-1 {
  inset: 0;
  animation: circleRotate 30s linear infinite;
}

.about-circle-2 {
  inset: 15%;
  animation: circleRotate 25s linear infinite reverse;
}

.about-circle-3 {
  inset: 30%;
  animation: circleRotate 20s linear infinite;
}

@keyframes circleRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-circle::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--signal);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-center {
  position: absolute;
  inset: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.about-center-text {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--fg-muted);
}

.about-content {
  max-width: 500px;
}

.about-quote {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-left: var(--space-xl);
}

.about-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--signal);
  font-style: normal;
  line-height: 1;
}

.about-text {
  color: var(--fg-muted);
  margin-bottom: var(--space-lg);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.about-value {
  padding: var(--space-md);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: transform var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out);
}

.about-value:hover {
  transform: translateY(-4px);
  border-color: var(--signal);
}

.about-value-icon {
  width: 32px;
  height: 32px;
  margin-bottom: var(--space-sm);
  color: var(--signal);
}

.about-value-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.about-value-text {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ─────────────────────────────────────────────────────────────────────────
   Releases Section
───────────────────────────────────────────────────────────────────────── */
.releases {
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
}

.releases::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.releases::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1100px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .releases-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Release Card */
.release-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--card-border);
  transition: transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.release-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.release-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.release-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.release-card:hover .release-artwork img {
  transform: scale(1.05);
}

.release-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 12, 15, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-lg);
}

.release-card:hover .release-overlay {
  opacity: 1;
}

.release-play {
  width: 56px;
  height: 56px;
  background: var(--signal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--duration-normal) var(--ease-out),
    opacity var(--duration-normal) var(--ease-out);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -28px;
  margin-left: -28px;
}

.release-card:hover .release-play {
  transform: translateY(0);
  opacity: 1;
}

.release-play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.release-info {
  padding: var(--space-lg);
}

.release-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
  transition: color var(--duration-fast) var(--ease-out);
}

.release-card:hover .release-title {
  color: var(--signal);
}

.release-artist {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
}

.release-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--fg-muted);
}

.release-year::before {
  content: '©';
  margin-right: 4px;
}

/* Vinyl Animation on Hover */
.release-vinyl {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 50%;
  background: radial-gradient(circle at center,
      #1a1a1a 0%,
      #1a1a1a 15%,
      #333 16%,
      #222 17%,
      #333 30%,
      #222 31%,
      #333 44%,
      #222 45%,
      #1a1a1a 46%,
      #1a1a1a 100%);
  border-radius: 50%;
  transform: translateX(20%);
  opacity: 0;
  transition: transform var(--duration-slow) var(--ease-out),
    opacity var(--duration-slow) var(--ease-out);
  pointer-events: none;
}

.release-vinyl::before {
  content: '';
  position: absolute;
  width: 30%;
  height: 30%;
  top: 35%;
  left: 35%;
  background: var(--signal);
  border-radius: 50%;
}

.release-vinyl::after {
  content: '';
  position: absolute;
  width: 8%;
  height: 8%;
  top: 46%;
  left: 46%;
  background: var(--ink);
  border-radius: 50%;
}

.release-card:hover .release-vinyl {
  transform: translateX(75%);
  opacity: 0.3;
  animation: vinylSpin 3s linear infinite;
}

@keyframes vinylSpin {
  from {
    transform: translateX(75%) rotate(0deg);
  }

  to {
    transform: translateX(75%) rotate(360deg);
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Listen Section
───────────────────────────────────────────────────────────────────────── */
.listen {
  position: relative;
}

.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

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

.listen-player {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.listen-player-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listen-player-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listen-player-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--signal);
  text-transform: uppercase;
}

.listen-player-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.listen-embed {
  aspect-ratio: 1;
}

.listen-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.listen-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.listen-link {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: all var(--duration-normal) var(--ease-out);
}

.listen-link:hover {
  border-color: var(--signal);
  transform: translateX(8px);
  color: inherit;
}

.listen-link-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background var(--duration-normal) var(--ease-out);
}

.listen-link:hover .listen-link-icon {
  background: var(--signal);
  color: var(--ink);
}

.listen-link-icon svg {
  width: 24px;
  height: 24px;
}

.listen-link-content {
  flex: 1;
}

.listen-link-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.listen-link-text {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.listen-link-arrow {
  color: var(--fg-muted);
  transition: transform var(--duration-normal) var(--ease-out),
    color var(--duration-normal) var(--ease-out);
}

.listen-link:hover .listen-link-arrow {
  transform: translateX(4px);
  color: var(--signal);
}

/* ─────────────────────────────────────────────────────────────────────────
   Contact Section
───────────────────────────────────────────────────────────────────────── */
.contact {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

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

.contact-info {
  max-width: 450px;
}

.contact-text {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-out);
}

.contact-email:hover {
  color: var(--signal);
}

.contact-email:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-social {
  display: flex;
  gap: var(--space-md);
}

.contact-social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all var(--duration-normal) var(--ease-out);
}

.contact-social-link:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
  transform: translateY(-4px);
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
}

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  color: var(--fg-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--fg);
  transition: border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--glow);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────
   Footer
───────────────────────────────────────────────────────────────────────── */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--border);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 180px;
  margin-bottom: var(--space-lg);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.footer-nav-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: var(--space-lg);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav-link {
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-nav-link:hover {
  color: var(--fg);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-location {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--fg-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-legal-link {
  color: var(--fg-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-legal-link:hover {
  color: var(--signal);
}

/* Share Button */
.share-btn {
  position: fixed;
  bottom: calc(var(--space-lg) + 60px);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  background: var(--signal);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out);
  z-index: var(--z-sticky);
  box-shadow: var(--shadow);
}

.share-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.4);
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

/* Share Modal */
.share-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.share-modal.open {
  opacity: 1;
  visibility: visible;
}

.share-modal-content {
  background: var(--bg);
  border-radius: var(--radius);
  padding: var(--space-xl);
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.share-modal.open .share-modal-content {
  transform: scale(1);
}

.share-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.share-option:hover {
  background: var(--border);
  transform: translateY(-2px);
}

.share-option svg {
  width: 24px;
  height: 24px;
}

.share-option span {
  font-size: 0.6875rem;
  color: var(--fg-muted);
}

.share-close {
  margin-top: var(--space-lg);
  width: 100%;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out);
  z-index: var(--z-sticky);
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--signal);
  color: var(--ink);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ─────────────────────────────────────────────────────────────────────────
   Reduced Motion
───────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-logo,
  .hero-tagline,
  .hero-cta,
  .hero-scroll,
  .hero-stats,
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger>* {
    opacity: 1;
    transform: none;
  }

  .logo-line,
  .logo-text,
  .logo-daneben text {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Print Styles
───────────────────────────────────────────────────────────────────────── */
@media print {

  .nav,
  .loader,
  .cursor,
  .cursor-dot,
  .back-to-top,
  .hero-bg,
  .hero-scroll,
  .hero-stats {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }
}
/* Action Buttons (YouTube/Bandcamp) */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  text-align: center;
}

@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column !important;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
  
  .action-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
