:root {
  --font: 'Zk7x';
  --red:   #e83a3a;
  --white: #f0f0f0;
  --muted: rgba(255, 255, 255, 0.55);
  --dim:   rgba(255, 255, 255, 0.18);
  --purple: #9b59b6;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::-webkit-scrollbar { display: none; }

html {
  scroll-behavior: smooth;
}


body {

  width: 100%;
  background: #000;
  overflow-x: hidden;
  font-family: 'Zk7x Lt';
  color: var(--white);
}

.section {
  padding: 120px 52px;
  border-top: 1px solid var(--card-border);
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
}

.section-number {
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg.jpg') center center / cover no-repeat;
  z-index: 0;
}
.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 50%, transparent 25%,
    rgba(25, 0, 30, 0.796) 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  animation: blobFloat 24s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  20% { transform: translate(50px,-40px) scale(1.1); }
  40% { transform: translate(-40px,60px) scale(0.85); }
  60% { transform: translate(60px,30px) scale(1.05); }
  80% { transform: translate(-30px,-50px) scale(0.9); }
}

.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 52px;
  padding: 36px 52px;
}

.logo {
  width: 110px;
  height: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  font-family: var(--font);
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.5s;
}
.nav a:hover { color: var(--red); }

.copy {
  position: absolute;
  top: 15%;
  left: 52px;
  z-index: 10;
  max-width: 560px;
}

.explore {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration-line: underline;
  text-decoration-color: var(--white);
  margin-bottom: 24px;
}

.explore-text {
  font-family: var(--font);
  font-size: clamp(13px, 1.1vw, 17px);
  color: var(--white);
  letter-spacing: 0.1em;
  transition: color 0.5s;
}
.explore:hover .explore-text { color: var(--purple); }

.headline {
  font-family: var(--font);
  font-size: clamp(35px, 3.8vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  white-space: nowrap;
}

.desc {
  font-family: var(--font);
  font-size: clamp(13px, 1.1vw, 16px);
  color: var(--white);
  letter-spacing: 0.06em;
  opacity: 1%;
  margin-bottom: 16px;
}

.bio {
  font-family: 'Zk7x Ult';
  font-size: clamp(15.5px, .70vw, 25px);
  color: var(--muted);
  line-height: 1.85;
  letter-spacing: 0.02em;
  max-width: 460px;
}

.credit {
  position: absolute;
  bottom: 48px;
  left: 52px;
  z-index: 10;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 0.05em;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.about-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  padding: 40px 32px;
  border-radius: 24px;
  transition: border-color 0.1s, transform 0.1s;
}
.about-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(232,58,58,0.12), 0 0 60px rgba(155,89,182,0.08);
}
.about-icon {
  font-size: 32px;
  display: grid;
  margin-bottom: 16px;
  color: var(--red);
}
.about-card h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.about-card p {
  font-size: 15px;
  color: #b1b1b1;
  font-family: 'Zk7x Lt';
  line-height: 1.8;
}
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.sub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding-top: 4px;
}
.sub-filters .filter-btn {
  font-size: 12px;
  color: var(--dim);
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
  padding: 4px 14px;
}
.sub-filters .filter-btn:hover {
  border-color: var(--red);
  color: var(--muted);
}
.sub-filters .filter-btn.active {
  background: rgba(232,58,58,0.12);
  border-color: var(--red);
  color: var(--red);
}
.filter-btn {
  font-family: var(--font);
  font-size: 15px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--card-border);
  padding: 8px 24px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: all 0.25s;
}
.filter-btn:hover {
  border-color: var(--red);
  color: var(--white);
}
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.work-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.work-item:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(232,58,58,0.1), 0 0 50px rgba(155,89,182,0.06);
}
.work-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.work-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.track-card {
  display: block;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  height: 100%;
}

.track-card .work-thumb img {
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform 0.5s ease;
  display: block;
}
.track-card:hover .work-thumb img {
  transform: scale(1.08);
}

.work-info {
  padding: 16px 20px 20px;
}

.work-info h3 {
  font-size: 17px;
  font-weight: 100;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}

.work-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.featured-badge {
  color: #e83a3a;
  font-size: 11px;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { text-shadow: 0 0 4px rgba(232,58,58,0.3); }
  50% { text-shadow: 0 0 12px rgba(232,58,58,0.7), 0 0 24px rgba(155,89,182,0.3); }
}

.work-item.hidden {
  display: none;
}
.contact-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 60px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.contact-label {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-width: 80px;
}
.contact-value {
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-left: auto;
}
.footer {
  padding: 20px 40px;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer p {
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.04em;
}
.visitor-count {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.04em;
  font-family: var(--font);
  margin-left: auto;
  cursor: default;
  transition: color 0.3s;
}
.visitor-count:hover {
  color: var(--muted);
}
.back-top {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.back-top:hover {
  color: var(--red);
}

body.scrolled .topbar {
  position: fixed;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 52px;
  box-shadow: 0 1px 0 var(--card-border);
  transition: all 0.3s;
}
body.scrolled .hero {
  padding-top: 0;
}
.section-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-content.reveal > * {
  opacity: 1;
  transform: translateY(0);
}

.section-content.reveal > *:nth-child(2) { transition-delay: 0.05s; }
.section-content.reveal > *:nth-child(3) { transition-delay: 0.1s; }
.section-content.reveal > *:nth-child(4) { transition-delay: 0.15s; }
.section-content.reveal > *:nth-child(5) { transition-delay: 0.2s; }

.about-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, transform 0.3s;
}

.section-content.reveal .about-card {
  opacity: 1;
  transform: translateY(0);
}

.section-content.reveal .about-card:nth-child(1) { transition-delay: 0.1s; }
.section-content.reveal .about-card:nth-child(2) { transition-delay: 0.2s; }
.section-content.reveal .about-card:nth-child(3) { transition-delay: 0.3s; }

.work-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, transform 0.3s;
}

.section-content.reveal .work-item {
  opacity: 1;
  transform: translateY(0);
}

.section-content.reveal .work-item:nth-child(1) { transition-delay: 0.05s; }
.section-content.reveal .work-item:nth-child(2) { transition-delay: 0.1s; }
.section-content.reveal .work-item:nth-child(3) { transition-delay: 0.15s; }
.section-content.reveal .work-item:nth-child(4) { transition-delay: 0.2s; }
.section-content.reveal .work-item:nth-child(5) { transition-delay: 0.25s; }
.section-content.reveal .work-item:nth-child(6) { transition-delay: 0.3s; }

@keyframes fadein {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes copyfade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.topbar { animation: fadein 0.8s ease 0.1s both; }
.copy   { animation: copyfade 0.8s ease 0.25s both; }
.credit { animation: fadein 0.8s ease 0.4s both; }

@media (max-width: 1024px) {
  .headline { font-size: clamp(22px, 3.5vw, 40px); white-space: normal; }
  .copy { max-width: 65vw; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .contact-links { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar { padding: 24px; gap: 24px; }
  .logo { width: 80px; }
  .nav { gap: 20px; }
  .nav a { font-size: 13px; }
  .copy { top: 20%; left: 20px; max-width: 90vw; }
  .headline { font-size: clamp(22px, 7.5vw, 34px); white-space: normal; }
  .bio { font-size: 12px; max-width: 90vw; }
  .credit { display: none; }

  .section { padding: 80px 20px; }
  .section-title { font-size: 22px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { padding: 28px 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-filters { flex-wrap: wrap; }
  .filter-btn { font-size: 13px; padding: 6px 18px; }
  .contact-links { grid-template-columns: 1fr; }
  .contact-item { flex-wrap: wrap;}
  .contact-value { margin-left: 0; width: 100%; }
  .footer { padding: 48px 20px; flex-direction: column; text-align: center;}
}
