/* ═══════════════════════════════════════════════
   KRANK — Industrial Metal
   styles.css
═══════════════════════════════════════════════ */


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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:root {
  --red:    #cc1100;
  --red2:   #8b0000;
  --rust:   #b34700;
  --dark:   #080808;
  --dark2:  #0e0e0e;
  --dark3:  #141414;
  --steel:  #2a2a2a;
  --text:   #c8c8c8;
  --muted:  #606060;
  --white:  #f0f0f0;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'IBM Plex Mono', monospace;
  --font-sub:  'Antonio', sans-serif;
}

html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body { background: var(--dark); color: var(--text); font-family: var(--font-body); overflow-x: hidden; cursor: crosshair; }

body::before {
  content: ''; position: fixed; inset: 0; z-index: 1000; pointer-events: none;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px; opacity: 0.04; mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; transition: background .4s, padding .4s;
}
#nav.scrolled {
  background: rgba(8,8,8,.96); padding: 12px 16px;
  border-bottom: none; backdrop-filter: blur(10px);
}
#nav.scrolled::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  animation: navGlow 3s ease-in-out infinite;
}
@keyframes navGlow {
  0%, 100% { opacity: .3; }
  50% { opacity: .7; }
}
.nav-logo { font-family: var(--font-head); font-size: 2rem; letter-spacing: .12em; color: var(--white); }
/* Nav logo: white webp — no filter needed */
.logo-img { height: 42px; width: auto; display: block; }

/* Hero SVG logo — inlined with colours corrected, no filter needed */
.hero-logo-svg {
  width: min(82vw, 920px);
  height: auto;
  display: block;
  margin: 0 auto;
}
.nav-left { display: flex; align-items: center; gap: 20px; line-height: 1; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-social { display: flex; align-items: center; gap: 16px; }
.nav-social a { display: flex; color: var(--white); transition: opacity .2s; }
.nav-social a:hover { opacity: .6; }
.nav-social svg { width: 20px; height: 20px; fill: currentColor; }
.nav-links { display: flex; gap: 16px; list-style: none; }
.nav-links a {
  font-family: var(--font-sub); font-size: 1.3rem; letter-spacing: .08em; text-transform: uppercase; color: #ffffff; transition: color .2s; line-height: 1;
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; z-index: 901; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--text); transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; inset: 0; background: rgba(8,8,8,.98); z-index: 899; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--font-head); font-size: 3rem; letter-spacing: .1em; color: var(--text); transition: color .2s; }
.nav-mobile a:hover { color: var(--red); }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; text-align: center; padding: 0 24px; }
.hero-bg-img {
  position: absolute; inset: -20px; z-index: 0;
  background: url('../img/Krank-Band.webp') center center / cover no-repeat;
  transform: scale(1.06); will-change: transform;
  animation: heroBgBreath 30s ease-in-out infinite alternate;
}
.hero-bg-img::after { content: ''; position: absolute; inset: 0; background: rgba(8,8,8,.72); }
@keyframes heroBgBreath {
  0%   { filter: brightness(.9) saturate(.8); }
  50%  { filter: brightness(1) saturate(1); }
  100% { filter: brightness(.85) saturate(.9); }
}
#hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(8,8,8,.2) 0%, rgba(8,8,8,.05) 40%, rgba(8,8,8,.5) 75%, rgba(8,8,8,1) 100%); }
.scanlines { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,.04) 3px, rgba(0,0,0,.04) 4px); }
.hero-content { position: relative; z-index: 4; }
.hero-pre { font-size: .75rem; letter-spacing: .35em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; opacity: 0; }
.hero-pre::before { content: '▶ '; }
.hero-title { position: relative; opacity: 0; margin-bottom: 8px; }
.hero-title.glitch { animation: glitchFire .2s steps(2) forwards; }
.hero-title.glitch-hard {
  animation: glitchHard .4s steps(3) forwards;
}
@keyframes glitchFire {
  0%   { text-shadow: 4px 0 var(--red), -4px 0 #00ccff; transform: translate(0) skewX(0); }
  25%  { text-shadow: -5px 0 var(--red), 5px 0 #00ccff; transform: translate(-4px,1px) skewX(3deg); }
  50%  { text-shadow: 6px 0 var(--rust), -3px 0 var(--red); transform: translate(4px,-2px) skewX(-2deg); }
  75%  { text-shadow: -3px 0 #00ccff, 3px 0 var(--red); transform: translate(-2px,1px) skewX(1deg); }
  100% { text-shadow: none; transform: translate(0) skewX(0); }
}
@keyframes glitchHard {
  0%   { clip-path: inset(40% 0 20% 0); transform: translate(-8px,3px) skewX(8deg); filter: hue-rotate(90deg) saturate(2); }
  15%  { clip-path: inset(10% 0 60% 0); transform: translate(6px,-2px) skewX(-5deg); filter: hue-rotate(0deg) saturate(1); }
  30%  { clip-path: inset(70% 0 5% 0); transform: translate(-3px,4px) skewX(3deg); filter: hue-rotate(180deg) brightness(1.5); }
  45%  { clip-path: inset(0); transform: translate(5px,-3px) skewX(-8deg); filter: hue-rotate(0deg); }
  60%  { clip-path: inset(30% 0 30% 0); transform: translate(-6px,1px) skewX(6deg); filter: saturate(3); }
  75%  { clip-path: inset(5% 0 80% 0); transform: translate(3px,-1px) skewX(-2deg); filter: none; }
  100% { clip-path: inset(0); transform: translate(0) skewX(0); filter: none; }
}
.hero-title::before,
.hero-title::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.hero-title.glitch-hard::before {
  background: rgba(204,17,0,.08);
  animation: glitchSlice1 .4s steps(2) forwards;
}
.hero-title.glitch-hard::after {
  background: rgba(0,204,255,.06);
  animation: glitchSlice2 .4s steps(2) forwards;
}
@keyframes glitchSlice1 {
  0%   { clip-path: inset(20% 0 60% 0); transform: translateX(-10px); opacity: 1; }
  50%  { clip-path: inset(50% 0 20% 0); transform: translateX(8px); opacity: 1; }
  100% { opacity: 0; }
}
@keyframes glitchSlice2 {
  0%   { clip-path: inset(60% 0 10% 0); transform: translateX(12px); opacity: 1; }
  50%  { clip-path: inset(10% 0 50% 0); transform: translateX(-6px); opacity: 1; }
  100% { opacity: 0; }
}
.hero-logo-svg {
  filter: drop-shadow(0 0 20px rgba(232,253,118,.15)) drop-shadow(0 0 60px rgba(232,253,118,.05));
  transition: filter .3s;
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(232,253,118,.15)) drop-shadow(0 0 60px rgba(232,253,118,.05)); }
  50%      { filter: drop-shadow(0 0 35px rgba(232,253,118,.3)) drop-shadow(0 0 80px rgba(232,253,118,.12)) drop-shadow(0 0 120px rgba(232,253,118,.08)); }
}

/* ── Stage Fog ── */
.hero-fog { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.fog-layer {
  position: absolute; bottom: -10%; width: 200%; height: 50%;
  background: radial-gradient(ellipse at center, rgba(8,8,8,.6) 0%, transparent 70%);
  opacity: .5;
}
.fog-1 {
  left: -30%; animation: fogDrift1 18s ease-in-out infinite alternate;
  background: radial-gradient(ellipse at 30% 80%, rgba(204,17,0,.06) 0%, rgba(8,8,8,.4) 40%, transparent 70%);
}
.fog-2 {
  left: -50%; animation: fogDrift2 22s ease-in-out infinite alternate;
  background: radial-gradient(ellipse at 60% 70%, rgba(8,8,8,.5) 0%, rgba(179,71,0,.04) 30%, transparent 65%);
  animation-delay: -6s;
}
.fog-3 {
  left: -20%; animation: fogDrift3 15s ease-in-out infinite alternate;
  background: radial-gradient(ellipse at 50% 90%, rgba(8,8,8,.35) 0%, transparent 60%);
  animation-delay: -10s;
}
@keyframes fogDrift1 { 0% { transform: translateX(0) scaleY(1); } 100% { transform: translateX(15%) scaleY(1.1); } }
@keyframes fogDrift2 { 0% { transform: translateX(0) scaleY(.9); } 100% { transform: translateX(-12%) scaleY(1.05); } }
@keyframes fogDrift3 { 0% { transform: translateX(0) scaleY(1.05); } 100% { transform: translateX(20%) scaleY(.9); } }

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; opacity: 0; animation: scrollFadeIn 1s ease 2.5s forwards;
}
.scroll-text {
  font-family: var(--font-body); font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(204,17,0,.5);
}
.scroll-line {
  width: 1px; height: 40px; position: relative; overflow: hidden;
  background: rgba(204,17,0,.15);
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -100%; } 100% { top: 200%; } }
@keyframes scrollFadeIn { to { opacity: 1; } }

/* ── Electric Flicker ── */
.hero-flicker {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(204,17,0,.03); opacity: 0;
}

/* ── Boot Sequence Overlay ── */
.boot-overlay {
  position: absolute; inset: 0; z-index: 100;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s;
}
.boot-overlay.done { opacity: 0; pointer-events: none; }
.boot-scanline {
  position: absolute; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, transparent, rgba(204,17,0,.4), transparent);
  animation: bootScan .8s linear infinite;
  box-shadow: 0 0 20px rgba(204,17,0,.3);
}
@keyframes bootScan { 0% { top: 0; } 100% { top: 100%; } }
.boot-text {
  font-family: var(--font-body); font-size: .7rem; letter-spacing: .15em;
  color: var(--red); text-transform: uppercase; white-space: pre-line;
  text-align: left; line-height: 2; max-width: 500px; padding: 24px;
}

/* ── HUD Overlay ── */
.hero-hud { position: absolute; inset: 80px 40px 40px; z-index: 5; pointer-events: none; opacity: 0; }
.hud-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(204,17,0,.35); border-style: solid;
}
.hud-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.hud-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.hud-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.hud-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.hud-data {
  position: absolute; display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-body); font-size: .6rem; letter-spacing: .2em; color: rgba(204,17,0,.4); text-transform: uppercase;
}
.hud-data-left { bottom: 60px; left: 12px; }
.hud-data-right { top: 60px; right: 12px; text-align: right; }
.hud-blink { animation: hudBlink 1.5s steps(1) infinite; }
@keyframes hudBlink { 0%, 70% { opacity: 1; } 71%, 100% { opacity: 0; } }

.hero-sub { font-family: var(--font-sub); font-size: clamp(.9rem, 2vw, 1.3rem); letter-spacing: .4em; text-transform: uppercase; color: var(--muted); margin-top: 16px; opacity: 0; }
.hero-line { display: flex; align-items: center; gap: 20px; justify-content: center; margin: 40px auto; opacity: 0; }
.hero-line-bar { width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--red)); animation: barPulse 3s ease-in-out infinite; }
.hero-line-bar.rev { background: linear-gradient(to left, transparent, var(--red)); }
@keyframes barPulse { 0%, 100% { opacity: .6; width: 80px; } 50% { opacity: 1; width: 100px; } }
.hero-line span { font-size: .75rem; letter-spacing: .3em; color: var(--red); text-transform: uppercase; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; }

/* ── Cyber Button Extras ── */
.cyber-btn { position: relative; }
.cyber-btn::after {
  content: ''; position: absolute; bottom: -3px; left: 10%; right: 10%;
  height: 1px; background: currentColor; opacity: 0;
  transition: opacity .3s, left .3s, right .3s;
}
.cyber-btn:hover::after { opacity: .4; left: 5%; right: 5%; }

/* ── BUTTONS ── */
.btn {
  position: relative; overflow: hidden;
  font-family: var(--font-body); font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 36px; cursor: pointer; display: inline-block;
  transition: color .2s, box-shadow .2s, transform .15s;
}
.btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.07) 50%, transparent 65%); transform: translateX(-120%) skewX(-15deg); transition: transform .5s; }
.btn:hover::before { transform: translateX(160%) skewX(-15deg); }
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); border: 2px solid var(--red); box-shadow: 0 0 18px rgba(204,17,0,.3); clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); }
.btn-red:hover { box-shadow: 0 0 30px rgba(204,17,0,.6); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--steel); clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ── SECTION BASE ── */
section { padding: 110px 60px; position: relative; }
.section-eyebrow { font-size: .75rem; letter-spacing: .35em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
.section-title { font-family: var(--font-head); font-size: clamp(2.5rem,6vw,5rem); letter-spacing: .05em; text-transform: uppercase; color: var(--white); line-height: .95; margin-bottom: 48px; }
.divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--steel), transparent); }

/* ── LATEST RELEASE ── */
#latest { background: var(--dark2); }
.latest-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 72px; align-items: start; }
.latest-cover { position: relative; flex-shrink: 0; }
.latest-cover img { width: 100%; display: block; border: 1px solid var(--steel); transition: box-shadow .3s; }
.latest-cover:hover img { box-shadow: 0 0 40px rgba(204,17,0,.25); }
.latest-badge { position: absolute; top: -12px; left: 16px; background: var(--red); color: var(--white); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; padding: 5px 14px; font-family: var(--font-body); }
.latest-info h2 { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4.5rem); color: var(--white); text-transform: uppercase; line-height: .95; margin-bottom: 8px; }
.latest-meta { font-size: .75rem; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; margin-bottom: 20px; display: flex; gap: 16px; flex-wrap: wrap; }
.latest-meta .accent { color: var(--red); }
.latest-info p { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.latest-stream { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.latest-stream a { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; padding: 10px 22px; border: 1px solid var(--steel); color: var(--muted); transition: all .2s; }
.latest-stream a:hover { border-color: var(--red); color: var(--red); }
.spotify-embed { border-radius: 4px; overflow: hidden; }

/* ── ABOUT ── */
@media (min-width: 1025px) { #about { min-height: 100svh; display: flex; align-items: center; box-sizing: border-box; } }
#about { position: relative; overflow: hidden; }
.about-bg { position: absolute; inset: 0; z-index: 0; background: url('../img/Krank-Bio.webp') center 33% / cover no-repeat; }
.about-bg::after { content: ''; position: absolute; inset: 0; background: rgba(8,8,8,.84); }
.about-grid { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 1rem; line-height: 1.9; color: var(--text); margin-bottom: 20px; }
.about-text p strong { color: var(--red); font-weight: 500; }
.about-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.torn-frame { position: relative; padding: 2px; border: 1px solid var(--steel); }
.torn-frame::before, .torn-frame::after { content: ''; position: absolute; width: 18px; height: 18px; border-color: var(--red); border-style: solid; }
.torn-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.torn-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about-stat { background: var(--dark3); padding: 32px 28px; border: 1px solid var(--steel); position: relative; overflow: hidden; transition: border-color .3s; }
.about-stat::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.about-stat:hover { border-color: var(--red); }
.about-stat:hover::after { transform: scaleX(1); }
.about-stat-num { font-family: var(--font-head); font-size: 3.5rem; color: var(--red); line-height: 1; display: block; margin-bottom: 8px; }
.about-stat-label { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ── DISCOGRAPHY ── */
#discography { background: var(--dark); }
.disco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
a.release-card { display: block; text-decoration: none; color: inherit; background: var(--dark2); position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; clip-path: none; cursor: pointer; }
a.release-card:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(204,17,0,.2), 0 0 60px rgba(204,17,0,.08); }
.release-card-inner { padding: 0 0 12px; border: 1px solid var(--steel); clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px)); transition: border-color .3s; height: 100%; }
.release-card:hover .release-card-inner { border-color: rgba(204,17,0,.4); }
.release-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right,var(--red2),var(--red),var(--rust)); transform: scaleX(0); transform-origin: left; transition: transform .4s; z-index: 1; }
.release-card:hover::before { transform: scaleX(1); }
.release-img-wrap { position: relative; overflow: hidden; margin-bottom: 0; }
.release-img-wrap img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; filter: grayscale(15%); transition: transform .4s, filter .4s; }
.release-card:hover .release-img-wrap img { transform: scale(1.05); filter: grayscale(0%); }
.release-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 50%,rgba(8,8,8,.85) 100%); opacity: 0; transition: opacity .3s; }
.release-card:hover .release-img-overlay { opacity: 1; }
.release-meta { padding: 10px 16px 0; }
.release-type { font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.release-title { font-family: var(--font-head); font-size: 1.3rem; letter-spacing: .04em; color: var(--white); text-transform: uppercase; line-height: 1; margin-bottom: 0; }
.release-links { display: flex; gap: 8px; flex-wrap: wrap; }
.release-link { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--steel); padding: 5px 12px; transition: all .2s; }
.release-link:hover { color: var(--red); border-color: var(--red); }

/* ── MEMBERS ── */
#members { background: var(--dark2); }
.members-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; max-width: 1100px; margin: 0 auto; }
.member-card { position: relative; overflow: hidden; background: var(--dark); border: 1px solid var(--steel); transition: border-color .3s; }
.member-card:hover { border-color: rgba(204,17,0,.4); }
.member-card img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: grayscale(30%); transition: filter .4s, transform .4s; }
.member-card:hover img { filter: grayscale(0%); transform: scale(1.03); }
.member-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right,var(--red2),var(--red)); transform: scaleX(0); transform-origin: left; transition: transform .35s; z-index: 2; }
.member-card:hover::before { transform: scaleX(1); }
.member-info { padding: 16px 14px; border-top: 1px solid var(--steel); }
.member-name { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); text-transform: uppercase; letter-spacing: .05em; display: block; }
.member-role { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-top: 3px; }

/* ── GALLERY ── */
#gallery { background: var(--dark); text-align: center; }

/* ── MAILING ── */
#mailing { background: var(--dark3); text-align: center; padding: 80px 60px; }
.mailing-inner { max-width: 540px; margin: 0 auto; border: 1px solid var(--steel); padding: 56px 48px; position: relative; }
.mailing-inner::before, .mailing-inner::after { content: ''; position: absolute; width: 16px; height: 16px; border-color: var(--red); border-style: solid; }
.mailing-inner::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.mailing-inner::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.mailing-inner h3 { font-family: var(--font-head); font-size: 2.2rem; color: var(--white); text-transform: uppercase; margin-bottom: 8px; }
.mailing-inner p { font-size: .78rem; color: var(--muted); margin-bottom: 28px; }
.mailing-form { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.mailing-input { flex: 1; background: var(--dark); border: 1px solid var(--steel); color: var(--text); font-family: var(--font-body); font-size: .72rem; padding: 8px 12px; outline: none; transition: border-color .2s; }
.mailing-input:focus { border-color: var(--red); }
.mailing-input::placeholder { color: var(--muted); }

/* ── STREAMING ── */
.streaming-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.streaming-btn { display: inline-flex; align-items: center; gap: 10px; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text); border: 1px solid var(--steel); padding: 13px 26px; transition: all .2s; }
.streaming-btn:hover { border-color: var(--red); color: var(--red); }
.streaming-btn svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid var(--steel); padding: 60px 60px 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-top: 10px; }
.footer-col h4 { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .9rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-brand-bottom { display: inline-flex; flex-direction: column; gap: 0; margin-top: 18px; }
.footer-social { display: grid; grid-template-columns: repeat(4, auto); gap: 10px; }
.footer-subscribe { display: flex; gap: 8px; margin-top: 8px; width: 100%; }
.social-link { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--steel); padding: 8px 16px; transition: all .2s; }
.social-link:hover { border-color: var(--red); color: var(--red); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(42,42,42,.5); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: var(--muted); letter-spacing: .08em; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity .8s, transform .8s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity .8s, transform .8s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── CUSTOM SCROLLBAR ── */
.custom-scrollbar {
  position: fixed; top: 0; right: 0; width: 4px; height: 100vh;
  z-index: 9998; pointer-events: none;
}
.custom-scrollbar-thumb {
  position: absolute; right: 0; width: 4px; min-height: 30px;
  background: var(--red2); border-radius: 2px;
  opacity: 0; transition: opacity .4s ease;
}
.custom-scrollbar.visible .custom-scrollbar-thumb { opacity: 1; }
.custom-scrollbar-thumb:hover { background: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: 90px 40px; }
  #nav { padding: 16px; }
  #nav.scrolled { padding: 12px 16px; }
  .latest-inner { grid-template-columns: 1fr; max-width: 540px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .disco-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #nav { padding: 16px; }
  #nav.scrolled { padding: 12px 16px; }
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 24px; }
  #mailing { padding: 72px 24px; }
  .disco-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-social { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mailing-inner { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .members-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-hud { inset: 16px; }
  .hud-data { display: none; }
}
