/* ===== KRA7NY SOUND — Brutalist Landing ===== */
:root {
  --bg: #0a0a0a;
  --red-dark: #5E2129;
  --red-mid: #8B2E38;
  --red-bright: #C93A3A;
  --red-neon: #FF3131;
  --white: #FFFFFF;
  --gray: #B0B0B0;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Archivo', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ----- Grain overlay ----- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ----- Background streaks (parallax layer) ----- */
.bg-streaks {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.streak {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  mix-blend-mode: screen;
  will-change: transform;
}
.streak-1 {
  width: 60vw;
  height: 40vh;
  background: radial-gradient(ellipse, var(--red-neon) 0%, var(--red-dark) 50%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: float1 18s ease-in-out infinite;
}
.streak-2 {
  width: 50vw;
  height: 35vh;
  background: radial-gradient(ellipse, var(--red-bright) 0%, var(--red-dark) 60%, transparent 70%);
  top: 50%;
  right: -15%;
  animation: float2 22s ease-in-out infinite;
}
.streak-3 {
  width: 45vw;
  height: 30vh;
  background: radial-gradient(ellipse, var(--red-mid) 0%, transparent 65%);
  bottom: 20%;
  left: 20%;
  animation: float3 20s ease-in-out infinite;
}
.streak-4 {
  width: 55vw;
  height: 38vh;
  background: radial-gradient(ellipse, var(--red-dark) 0%, var(--red-bright) 40%, transparent 70%);
  top: 70%;
  right: 10%;
  animation: float4 25s ease-in-out infinite;
}
.streak-5 {
  width: 40vw;
  height: 25vh;
  background: radial-gradient(ellipse, var(--red-neon) 0%, transparent 60%);
  top: 30%;
  left: 40%;
  animation: float5 16s ease-in-out infinite;
}

/* Section-based flow: streaks shift as user scrolls through sections */
body[data-section="0"] .streak-1,
body[data-section="0"] .streak-5 { opacity: 0.36; }
body[data-section="0"] .streak-2,
body[data-section="0"] .streak-3,
body[data-section="0"] .streak-4 { opacity: 0.16; }

body[data-section="1"] .streak-2,
body[data-section="1"] .streak-3 { opacity: 0.36; }
body[data-section="1"] .streak-1,
body[data-section="1"] .streak-4,
body[data-section="1"] .streak-5 { opacity: 0.16; }

body[data-section="2"] .streak-4 { opacity: 0.36; }
body[data-section="2"] .streak-1,
body[data-section="2"] .streak-2,
body[data-section="2"] .streak-3,
body[data-section="2"] .streak-5 { opacity: 0.16; }

body[data-section="3"] .streak-3,
body[data-section="3"] .streak-5 { opacity: 0.36; }
body[data-section="3"] .streak-1,
body[data-section="3"] .streak-2,
body[data-section="3"] .streak-4 { opacity: 0.16; }

body[data-section="4"] .streak-1,
body[data-section="4"] .streak-2 { opacity: 0.36; }
body[data-section="4"] .streak-3,
body[data-section="4"] .streak-4,
body[data-section="4"] .streak-5 { opacity: 0.16; }

body[data-section="5"] .streak-2,
body[data-section="5"] .streak-4 { opacity: 0.36; }
body[data-section="5"] .streak-1,
body[data-section="5"] .streak-3,
body[data-section="5"] .streak-5 { opacity: 0.16; }
.bg-streaks .streak {
  transition: opacity 1.2s ease;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, -8%) scale(1.05); }
  66% { transform: translate(-5%, 5%) scale(0.95); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8%, 3%) scale(1.08); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(10%, 5%); }
  66% { transform: translate(-5%, -10%); }
}
@keyframes float4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -6%) scale(1.03); }
}
@keyframes float5 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-6%, 8%); }
  75% { transform: translate(6%, -4%); }
}

/* ----- Layout ----- */
main {
  position: relative;
  z-index: 1;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
}

.logo-wrap {
  display: block;
  filter: drop-shadow(0 0 12px var(--red-bright)) drop-shadow(0 0 24px var(--red-dark));
  transition: filter 0.3s ease;
}
.logo-wrap:hover {
  filter: drop-shadow(0 0 16px var(--red-neon)) drop-shadow(0 0 32px var(--red-bright));
}
.logo {
  display: block;
  height: 58px;
  width: auto;
}
.logo-fallback {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 700px) {
  .nav {
    gap: 1rem;
  }
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(to bottom, var(--red-neon), var(--red-dark));
  clip-path: polygon(0 0, 15% 0, 18% 100%, 35% 0, 50% 100%, 65% 0, 82% 100%, 85% 0, 100% 0, 100% 100%, 0 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-link:hover {
  color: var(--red-neon);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.hero-kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: rgba(176, 176, 176, 0.9);
  margin-bottom: 1.25rem;
}

.hero-title {
  position: relative;
  margin-bottom: 1.75rem;
}

.hero-title-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  display: block;
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 40px rgba(255, 49, 49, 0.4),
    0 0 80px rgba(94, 33, 41, 0.3);
}

.hero-title-smoke {
  position: absolute;
  inset: -15%;
  z-index: 1;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 49, 49, 0.15) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gray);
  letter-spacing: 0.02em;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 2;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ----- Drip button ----- */
.btn {
  display: inline-block;
  position: relative;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: #4a1a20;
  border: none;
  border-radius: 8px;
  overflow: visible;
  transition: background 0.25s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background: #5E2129;
  box-shadow: 0 0 24px rgba(94, 33, 41, 0.5);
  transform: translateY(-2px);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-drip {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  height: 20px;
  background: #3d1519;
  clip-path: polygon(
    0% 0%,
    12% 100%,
    12% 0%,
    28% 100%,
    28% 0%,
    48% 100%,
    48% 0%,
    68% 100%,
    68% 0%,
    88% 100%,
    88% 0%,
    100% 0%,
    100% 100%,
    0% 100%
  );
  transform-origin: top center;
  transition: height 0.45s ease, clip-path 0.45s ease;
}
.btn:hover .btn-drip {
  height: 38px;
  background: #3d1519;
  clip-path: polygon(
    0% 0%,
    10% 100%,
    14% 0%,
    26% 100%,
    30% 0%,
    50% 100%,
    50% 0%,
    70% 100%,
    70% 0%,
    90% 100%,
    90% 0%,
    100% 0%,
    100% 100%,
    0% 100%
  );
}

.btn-hero .btn-drip {
  border-radius: 0 0 8px 8px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 1.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(176, 176, 176, 0.25);
  background: rgba(10, 10, 10, 0.25);
  backdrop-filter: blur(6px);
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(94, 33, 41, 0.65);
  box-shadow: 0 0 18px rgba(94, 33, 41, 0.35);
  transform: translateY(-2px);
}

/* ----- Sections ----- */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
}

.section-title-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(255, 49, 49, 0.25);
}

.section-title-smoke {
  position: absolute;
  width: 120%;
  height: 80px;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse 60% 50%, rgba(255, 49, 49, 0.12) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

.section-desc {
  color: var(--gray);
  font-size: 1.25rem;
}

/* ----- prostom-like split blocks ----- */
.split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

.split-lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.split-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 60ch;
}

.side-card {
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid rgba(94, 33, 41, 0.35);
  padding: 1.25rem 1.25rem 1.35rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.side-card::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 40% at 30% 40%, rgba(255, 49, 49, 0.12) 0%, transparent 60%);
  filter: blur(22px);
  opacity: 0.9;
  pointer-events: none;
}
.side-card-title {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(176, 176, 176, 0.9);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.side-card-desc {
  color: var(--gray);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* ----- Metrics row (prostom-like) ----- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .metrics-row {
    grid-template-columns: 1fr;
  }
}
.metric {
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(94, 33, 41, 0.35);
  padding: 1.25rem 1.25rem 1.4rem;
}
.metric-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(176, 176, 176, 0.9);
  margin-bottom: 0.4rem;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 22px rgba(255, 49, 49, 0.16);
  margin-bottom: 0.2rem;
}
.metric-sub {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ----- Value cards ----- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}
.value-card {
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid rgba(94, 33, 41, 0.35);
  padding: 1.25rem 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: -25%;
  background: radial-gradient(ellipse 60% 40% at 30% 40%, rgba(255, 49, 49, 0.10) 0%, transparent 60%);
  filter: blur(24px);
  opacity: 0.95;
  pointer-events: none;
}
.value-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.value-desc {
  color: var(--gray);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* ----- About / team ----- */
.about-text {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 75ch;
  margin-bottom: 1.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-card {
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(94, 33, 41, 0.35);
  padding: 1.25rem 1.25rem 1.35rem;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.team-role {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ----- Artists grid ----- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .artists-grid {
    grid-template-columns: 1fr;
  }
}

.artist-card {
  cursor: pointer;
}

.artist-card-inner {
  aspect-ratio: 1;
  background: #0d0d0d;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
  border: 1px solid rgba(94, 33, 41, 0.3);
}

.artist-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-card-texture {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(255, 49, 49, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 70% 60%, rgba(94, 33, 41, 0.25) 0%, transparent 55%);
  opacity: 0.85;
  transition: transform 0.6s ease, opacity 0.4s ease;
  pointer-events: none;
}

.artist-card:hover .artist-card-texture {
  transform: scale(1.08);
  opacity: 1;
}

.artist-name-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.artist-blot {
  width: 10px;
  height: 10px;
  background: var(--red-bright);
  transform: rotate(45deg);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ----- Releases ----- */
.releases {
  padding-bottom: 5rem;
}

.releases-wrap {
  position: relative;
}

.releases-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #4a1a20;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.releases-arrow:hover {
  background: #5E2129;
  box-shadow: 0 0 20px rgba(94, 33, 41, 0.5);
}
.releases-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.releases-arrow-left {
  left: -12px;
}
.releases-arrow-right {
  right: -12px;
}

.releases-arrow-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.releases-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5rem 2rem 1.5rem;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}
.releases-row::-webkit-scrollbar {
  display: none;
}

.release-item {
  flex-shrink: 0;
  width: 200px;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  transition: transform 0.25s ease;
}
.release-item:hover {
  transform: translateY(-4px);
}

.release-cover-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  border: 1px solid rgba(94, 33, 41, 0.4);
  margin-bottom: 0.75rem;
}

.release-title {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.35;
}

.release-item:hover .release-title {
  color: var(--white);
}

/* ----- Footer ----- */
.footer {
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(94, 33, 41, 0.3);
}

.footer-email {
  display: inline-block;
  color: var(--gray);
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.25s ease;
}
.footer-email:hover {
  color: var(--red-neon);
}

.footer-copy {
  color: var(--gray);
  font-size: 0.9rem;
}
