*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0a0a0a;
  --surface:  #111111;
  --border:   #1e1e1e;
  --mid:      #2a2a2a;
  --text-dim: #4a4a4a;
  --text-mid: #888;
  --text:     #ccc;
  --white:    #efefef;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

#cursor {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
}

#intro {
  position: fixed; inset: 0;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  transition: opacity .9s ease, visibility .9s ease;
}
#intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro-logo {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 11vw, 150px);
  letter-spacing: .12em;
  line-height: 1;
  user-select: none;
}
.intro-logo .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.75);
  color: transparent;
  display: block;
}
.intro-logo .fill {
  position: absolute; inset: 0;
  display: block; color: #fff;
  clip-path: inset(0 100% 0 0);
  animation: fillReveal 1.7s cubic-bezier(.77,0,.18,1) .4s forwards;
}
@keyframes fillReveal {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0   0% 0 0); }
}
.intro-tag {
  position: absolute;
  bottom: -34px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .4em;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
  opacity: 0;
  animation: fadeUpCenter .8s ease 1.9s forwards;
}
@keyframes fadeUpCenter {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.intro-bar {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: #fff;
  width: 0%;
  animation: barFill 2.5s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes barFill { to { width: 100%; } }

nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,.96) 0%, transparent 100%);
  opacity: 0; transform: translateY(-20px);
  transition: opacity .6s ease, transform .6s ease;
}
nav.visible { opacity: 1; transform: translateY(0); }

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: .16em;
  -webkit-text-stroke: 1px rgba(255,255,255,.55);
  color: transparent;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .22em;
  color: var(--text-mid); text-decoration: none;
  text-transform: uppercase; position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px; background: #fff;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-content {
  position: relative; text-align: center; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .5em;
  color: var(--text-dim); text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s ease .2s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 18vw, 220px);
  line-height: .9; letter-spacing: .05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.18);
  opacity: 0; animation: fadeUp .8s ease .4s forwards;
}
.hero-subtitle {
  margin-top: 36px; font-size: 13px;
  color: var(--text-mid); letter-spacing: .12em;
  opacity: 0; animation: fadeUp .8s ease .65s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp .8s ease 1.3s forwards;
}
.scroll-hint span {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .4em;
  color: var(--text-dim); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.5); }
}

section { padding: 110px 48px; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .5em;
  color: var(--text-dim); text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: .05em; color: var(--white);
  line-height: 1; margin-bottom: 72px;
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94),
              transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

#artists-section { background: var(--bg); }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 40px 40px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: border-color .4s ease, background .4s ease;
}
.artist-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 25% 25%, rgba(255,255,255,.025), transparent);
  opacity: 0; transition: opacity .4s;
}
.artist-card:hover { border-color: rgba(255,255,255,.12); }
.artist-card:hover::before { opacity: 1; }

.artist-card.no-portfolio {
  cursor: default; pointer-events: none;
}
.artist-card.no-portfolio .artist-name { opacity: .45; }
.artist-card.no-portfolio .artist-arrow { opacity: .2; }

.artist-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--text-dim);
  letter-spacing: .3em; margin-bottom: 24px;
}
.artist-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: .05em; color: var(--white);
  margin-bottom: 10px;
}
.artist-role {
  font-size: 12px; color: var(--text-mid);
  letter-spacing: .1em;
}
.artist-arrow {
  position: absolute; bottom: 32px; right: 36px;
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.artist-card:hover .artist-arrow {
  border-color: rgba(255,255,255,.35);
  transform: translate(4px,-4px);
}
.artist-arrow svg { width: 14px; height: 14px; stroke: var(--text-mid); fill: none; stroke-width: 1.5; }

#portfolio { padding-top: 40px; }

.artist-work { margin-bottom: 100px; }

.artist-work-header {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 36px;
}
.artist-work-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.35);
  letter-spacing: .08em;
  white-space: nowrap;
}
.artist-work-divider {
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}

.featured-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  cursor: pointer;
  position: relative;
}

.featured-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}

.featured-img-inner {
  width: 100%; aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.featured-img-inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .5s ease;
  filter: grayscale(15%);
}
.featured-work:hover .featured-img-inner img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.featured-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px 0 0 16px;
  border: 1.5px solid transparent;
  transition: border-color .4s ease, box-shadow .4s ease;
  pointer-events: none;
}
.featured-work:hover .featured-img-wrap::after {
  border-color: rgba(120,140,255,.25);
  box-shadow: inset 0 0 40px rgba(80,100,255,.06);
}

.featured-count-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .2em;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 20px;
}

.gallery-placeholder {
  width: 100%; height: 100%;
  aspect-ratio: 16/10;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--text-dim);
  border-radius: 16px 0 0 16px;
}
.gallery-placeholder span {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
}

.featured-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 16px 16px 0;
  padding: 52px 52px;
  display: flex; flex-direction: column;
  justify-content: center;
  transition: background .3s ease;
  position: relative; overflow: hidden;
}
.featured-info::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255,255,255,.02), transparent);
  opacity: 0; transition: opacity .4s;
}
.featured-work:hover .featured-info { background: #161616; }
.featured-work:hover .featured-info::before { opacity: 1; }

.featured-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px; color: #555;
  letter-spacing: .3em; margin-bottom: 16px;
  display: block;
}
.featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: .04em; color: var(--white);
  line-height: 1; margin-bottom: 20px;
}
.featured-desc {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 40px;
  max-width: 340px;
}
.featured-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--text-mid);
  transition: color .3s;
}
.featured-cta svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
  transition: transform .3s ease;
}
.featured-work:hover .featured-cta { color: var(--white); }
.featured-work:hover .featured-cta svg { transform: translateX(5px); }

#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 800;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  backdrop-filter: blur(12px);
}
#lightbox.open { opacity: 1; visibility: visible; }

.lightbox-img-wrap {
  max-width: 88vw; max-height: 84vh;
  transition: opacity .3s ease, transform .35s cubic-bezier(.25,.46,.45,.94);
}
.lightbox-img-wrap img {
  max-width: 88vw; max-height: 84vh;
  object-fit: contain; display: block;
  border-radius: 8px;
}

.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(255,255,255,.18);
  color: #fff; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .3s; z-index: 801;
}
.lb-btn:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.lb-btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.5; }
#lb-prev { left: 28px; }
#lb-next { right: 28px; }

#lb-close {
  position: fixed; top: 24px; right: 28px;
  background: none; border: 1px solid rgba(255,255,255,.18);
  color: #fff; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .3s; z-index: 801;
}
#lb-close:hover { border-color: rgba(255,255,255,.7); }
#lb-close svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 1.5; }

.lb-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,.35); letter-spacing: .25em; z-index: 801;
}

#testimonials {
  background: var(--surface);
  padding-left: 0; padding-right: 0;
  overflow: hidden;
}
.testimonials-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 48px; margin-bottom: 56px;
}
.testimonials-track-wrap {
  overflow: hidden; position: relative;
  padding: 20px 0 60px;
}
.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.testimonials-track-wrap::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.testimonials-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--surface), transparent); }

.testimonials-track {
  display: flex; gap: 18px;
  width: max-content;
  animation: scrollTesti 38s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scrollTesti {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  padding: 28px 32px; width: 320px; flex-shrink: 0;
  border-radius: 4px;
  transition: border-color .3s, transform .3s;
}
.testimonial-card:hover {
  border-color: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mid); border: 1px solid var(--border);
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: var(--text-dim);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 13px; font-weight: 500; color: var(--white); }
.testimonial-handle { font-family: 'Space Mono', monospace; font-size: 9px; color: var(--text-dim); letter-spacing: .1em; margin-top: 2px; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.star { color: rgba(255,255,255,.5); font-size: 11px; }
.testimonial-text { font-size: 12px; line-height: 1.75; color: var(--text-mid); }

#contact {
  text-align: center; padding: 140px 48px;
  position: relative; overflow: hidden;
}
#contact::before {
  content: 'KONTAKT'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 24vw, 300px);
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.025);
  letter-spacing: .08em; white-space: nowrap;
  pointer-events: none; user-select: none;
}
.contact-label {
  display: flex; justify-content: center;
  margin-bottom: 14px;
}
.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--white); letter-spacing: .05em; margin-bottom: 16px;
}
.contact-sub { font-size: 14px; color: var(--text-mid); margin-bottom: 52px; letter-spacing: .06em; }
.discord-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: none; border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  padding: 18px 48px; text-decoration: none;
  transition: border-color .4s, background .4s;
  position: relative; overflow: hidden;
}
.discord-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.04);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.discord-btn:hover { border-color: rgba(255,255,255,.55); }
.discord-btn:hover::before { transform: scaleX(1); }
.discord-btn svg { width: 20px; height: 20px; fill: currentColor; }

footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: .16em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.25);
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--text-dim); letter-spacing: .18em;
}

@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  section { padding: 80px 24px; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .featured-work { grid-template-columns: 1fr; }
  .featured-img-wrap { border-radius: 12px 12px 0 0; }
  .featured-img-wrap::after { border-radius: 12px 12px 0 0; }
  .featured-info { border-left: 1px solid var(--border); border-top: none; border-radius: 0 0 12px 12px; padding: 36px 32px; }
  .gallery-placeholder { border-radius: 12px 12px 0 0; }
  #lb-prev { left: 10px; }
  #lb-next { right: 10px; }
  footer { flex-direction: column; gap: 14px; text-align: center; }
}
@media (max-width: 560px) {
  .artists-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 20px; }
}


#smooth-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  will-change: transform;
}

@media (max-width: 768px), (pointer: coarse) {
  #smooth-wrapper {
    position: relative;
  }
  body {
    height: auto !important;
  }
}

.reveal[data-dir="left"] {
  transform: translateX(-40px);
}
.reveal[data-dir="right"] {
  transform: translateX(40px);
}
.reveal[data-dir="left"].visible,
.reveal[data-dir="right"].visible {
  transform: translateX(0);
}

.artists-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.artists-grid .reveal:nth-child(2) { transition-delay: 90ms; }
.artists-grid .reveal:nth-child(3) { transition-delay: 180ms; }

#cursor {
  transition: width .18s ease, height .18s ease;
}
#cursor-ring {
  transition: left .0s, top .0s, width .3s ease, height .3s ease, border-color .3s ease;
}