*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --dark: #000000;
  --card-bg: #111827;
  --card-border: #1f2937;
  --text: #ffffff;
  --text-muted: #6b7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 72px;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #111827;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5a3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo .by { color: inherit; -webkit-text-fill-color: inherit; }
.nav-links { display: flex; gap: 28px; }
.nav-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.18s;
}
.nav-link:hover { color: #fff; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #9ca3af;
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 199;
  background: #030712;
  border-bottom: 1px solid #111827;
  flex-direction: column;
  padding: 16px 0;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 28px;
  transition: color 0.18s, background 0.18s;
}
.mobile-link:hover { color: #fff; background: #111827; }

/* HERO */
#hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow::before {
  content: '';
  position: absolute;
  top: 25%; left: 25%;
  width: 384px; height: 384px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  filter: blur(120px);
}
.hero-glow::after {
  content: '';
  position: absolute;
  bottom: 25%; right: 25%;
  width: 384px; height: 384px;
  border-radius: 50%;
  background: rgba(120,53,15,0.1);
  filter: blur(120px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
}
.hero-title .by { color: var(--blue); }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
  transition: background 0.18s, transform 0.18s;
}
.hero-btn:hover { background: #2b6ee8; transform: translateY(-2px); }

/* Waveform */
.waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 96px;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}
.wb {
  width: 6px;
  border-radius: 9999px;
  background: linear-gradient(to top, rgba(37,99,235,0.3), rgba(96,165,250,0.6));
  transition: height 0.7s ease-in-out;
}

/* SECTION */
.section { padding: 100px 48px; }
.section-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: rgba(17,24,39,0.5);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 36px 32px 40px;
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-3px); border-color: rgba(59,130,246,0.3); }
.svc-icon {
  width: 54px; height: 54px;
  background: rgba(59,130,246,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.svc-icon svg {
  width: 26px; height: 26px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-icon svg.filled {
  fill: var(--blue-light);
  stroke: none;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto 32px;
  align-items: start;
}
.price-card {
  background: rgba(17,24,39,0.5);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 28px 24px 32px;
  transition: border-color 0.2s, background 0.2s;
}
.price-card:hover { border-color: #374151; background: rgba(17,24,39,0.7); }
.price-card--popular {
  background: linear-gradient(to bottom, rgba(59,130,246,0.1), rgba(59,130,246,0.05));
  border-color: rgba(59,130,246,0.3);
}
.price-card--popular:hover { border-color: rgba(59,130,246,0.5); }
.price-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.price-num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 22px;
}
.price-num .per {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #bbc8db;
  line-height: 1.35;
}
.check { color: var(--blue-light); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; font-weight: 700; }

/* EP box */
.ep-box {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #111827, #030712);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 54px 48px;
  text-align: center;
}
.ep-box h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.ep-price {
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ep-extra { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.indie-box {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 18px;
  padding: 26px 32px;
  max-width: 780px;
  margin: 0 auto;
}
.indie-box h4 { color: #93c5fd; font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.indie-box p { color: #d1d5db; font-size: 0.9rem; }

/* REFERENZEN */
.ref-sub {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: -28px;
  margin-bottom: 44px;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.artist-pill {
  background: rgba(17,24,39,0.5);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: #d1d5db;
  transition: border-color 0.18s;
}
.artist-pill:hover { border-color: rgba(59,130,246,0.3); }

/* RELEASES */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.release-card {
  background: #111827;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}
.release-card:hover { transform: translateY(-8px); }
.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #0a1020;
  transition: transform 0.5s;
}
.release-card:hover .release-cover { transform: scale(1.08); }
.release-body { padding: 12px 14px 16px; }
.release-body h4 {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  min-height: 2.2em;
  cursor: default;
  position: relative;
}
.release-body h4:hover::after {
  content: attr(data-title);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: normal;
  z-index: 100;
  border: 1px solid #374151;
  pointer-events: none;
  max-width: 200px;
  text-align: center;
  line-height: 1.3;
}
.release-artist {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  cursor: default;
}
.release-tag {
  display: inline-block;
  background: #1f2937;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 500;
  color: #60a5fa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* KONTAKT */
#kontakt { text-align: center; padding: 100px 48px 90px; }
.kontakt-sub {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 32px;
  margin-top: -20px;
}
.kontakt-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.k-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.18s;
}
.k-link:hover { opacity: 0.72; }

/* KONTAKT CTA button */
.kontakt-cta {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-bottom: 48px;
  transition: background 0.18s, transform 0.18s;
}
.kontakt-cta:hover { background: #2563eb; transform: translateY(-2px); }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 300;
}
.modal-overlay.open { display: block; }

.modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  z-index: 301;
  background: #0d1117;
  border: 1px solid #1f2937;
  border-radius: 24px;
  padding: 40px 36px;
  width: 90%;
  max-width: 480px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}
.modal.open {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: #1f2937;
  border: none;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #9ca3af;
  transition: background 0.18s, color 0.18s;
}
.modal-close:hover { background: #374151; color: #fff; }
.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.modal-sub {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #d1d5db;
}
.form-input, .form-textarea {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: #3b82f6; }
.form-input::placeholder, .form-textarea::placeholder { color: #4b5563; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  margin-top: 4px;
}
.form-submit:hover { background: #2563eb; transform: translateY(-1px); }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  text-align: center;
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
}
.form-success.show { display: flex; }
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.k-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.18s;
}
.k-link:hover { opacity: 0.72; }

/* FOOTER */
footer {
  background: #030712;
  border-top: 1px solid #111827;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}
.foot-logo {
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5a3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.foot-logo .by { color: inherit; }
.foot-copy { font-size: 0.78rem; color: #6b7280; }
.foot-link { font-size: 0.78rem; color: #6b7280; text-decoration: none; transition: color 0.18s; }
.foot-link:hover { color: #fff; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .releases-grid { grid-template-columns: repeat(4, 1fr); }
  .artists-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .releases-grid { grid-template-columns: repeat(3, 1fr); }
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .releases-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 64px 20px; }
  .section-title { font-size: 1.8rem; margin-bottom: 36px; }
  #kontakt { padding: 64px 20px 60px; }
  .kontakt-links { gap: 28px; flex-direction: column; align-items: center; }
  .ep-box { padding: 36px 24px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 22px 20px; }
  .ref-sub { font-size: 1.2rem; }
  .waveform-wrap { transform: scaleX(0.85); }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .releases-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-cta { width: 100%; text-align: center; }
  .k-link { font-size: 0.95rem; }
}
