@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:       #f5f5f0;
  --paper:    #ffffff;
  --line:     #000;
  --dim:      #555;
  --muted:    #333;
  --body:     #111;
  --bright:   #000;
  --pink:     #ff00aa;
  --green:    #00ff41;
  --yellow:   #ffee00;
  --blue:     #0055ff;
  --orange:   #ff6600;
  --mono:     'Space Mono', 'Courier New', monospace;
  --sans:     'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ── Halftone overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #00000008 1px, transparent 1px);
  background-size: 6px 6px;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--yellow);
  border-bottom: 3px solid #000;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.logo {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  text-shadow: 2px 2px 0 var(--pink);
}

.nav-links { display: flex; gap: 1.4rem; list-style: none; }

.nav-links a {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.1s;
}
.nav-links a:hover { color: var(--pink); }

/* ── Hero ── */
#hero {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem 3rem;
  padding-top: 6rem;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 3px solid #000;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    #ff00aa18 0%,
    #ffee0020 25%,
    #00ff4112 50%,
    #0055ff15 75%,
    #ff00aa18 100%
  );
  background-size: 400% 400%;
  animation: gradshift 6s ease infinite;
}

@keyframes gradshift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: var(--mono);
  font-size: clamp(6rem, 28vw, 18rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #ddd;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.hero-kicker::before { content: '///'; margin-right: 0.5em; opacity: 0.5; }

h1.hero-headline {
  font-size: clamp(3.5rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #000;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

h1.hero-headline .line-1 { display: block; }

h1.hero-headline .line-2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 3px var(--blue);
  margin-left: clamp(1rem, 5vw, 4rem);
  filter: drop-shadow(0 0 12px var(--blue));
}

h1.hero-headline .line-3 {
  display: block;
  color: var(--pink);
  margin-left: clamp(2rem, 10vw, 8rem);
  filter: drop-shadow(0 0 16px var(--pink));
  animation: hue-spin 4s linear infinite;
}

@keyframes hue-spin {
  0%   { filter: drop-shadow(0 0 14px var(--pink)) hue-rotate(0deg); }
  100% { filter: drop-shadow(0 0 14px var(--pink)) hue-rotate(360deg); }
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--dim);
  text-transform: lowercase;
}

.hero-tagline b { color: #000; font-weight: 700; }

.hero-cta {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.1s, box-shadow 0.1s;
}
.hero-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}
.hero-cta:active { transform: translate(4px, 4px); box-shadow: none; }

/* ── Section base ── */
section {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vh, 5rem) 1.5rem;
  border-top: 3px solid #000;
}

.inner { max-width: 900px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-num {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--dim);
  letter-spacing: 0.2em;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--mono);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

.section-title em {
  font-style: italic;
  color: var(--pink);
  -webkit-text-stroke: 0;
}

/* ── Services ── */
#services { background: var(--yellow); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.svc {
  padding: 1.4rem;
  border: 2px solid #000;
  margin: -2px 0 0 -2px;
  background: var(--paper);
  transition: background 0.12s;
  position: relative;
  overflow: hidden;
}

.svc:hover { background: var(--green); }
.svc:hover .svc-name { color: #000; }
.svc:hover .svc-desc { color: #000; }

.svc::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--pink);
  transition: height 0.2s ease;
}
.svc:hover::before { height: 100%; }

.svc-name {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.6rem;
}

.svc-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ── Roster ── */
#roster { background: var(--paper); }

.artist {
  border-bottom: 2px solid #000;
  padding: 2rem 0;
}
.artist:first-child { border-top: 2px solid #000; }

.artist-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.artist-num {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--dim);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  padding-top: 0.4rem;
}

.artist-name {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 900;
  color: #000;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.1s;
  cursor: default;
}

.artist:nth-child(1):hover .artist-name { color: var(--pink); text-shadow: 3px 3px 0 #000; }
.artist:nth-child(2):hover .artist-name { color: var(--blue); text-shadow: 3px 3px 0 #000; }
.artist:nth-child(3):hover .artist-name { color: var(--green); text-shadow: 3px 3px 0 #000; filter: drop-shadow(0 0 8px var(--green)); }

.artist-tags {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  border: 1.5px solid #000;
  padding: 0.15rem 0.5rem;
  background: transparent;
}

.artist:nth-child(1) .tag { border-color: var(--pink); color: var(--pink); }
.artist:nth-child(2) .tag { border-color: var(--blue); color: var(--blue); }
.artist:nth-child(3) .tag { border-color: var(--green); color: var(--green); }

.artist-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ── About ── */
#about { background: var(--blue); }
#about .section-title { color: #fff; }
#about .section-num { color: rgba(255,255,255,0.4); }

.about-layout { display: grid; gap: 2.5rem; }

@media (min-width: 640px) {
  .about-layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.about-text { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.82; }
.about-text p + p { margin-top: 1rem; }

.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.stat {
  border-left: 3px solid var(--yellow);
  padding-left: 1rem;
}

.stat-num {
  font-family: var(--mono);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  filter: drop-shadow(0 0 8px var(--yellow));
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.manifesto {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.manifesto-line {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  line-height: 1.5;
}

.manifesto-line::before {
  content: '>';
  color: var(--yellow);
  font-size: 0.65rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--yellow));
}

/* ── Contact ── */
#contact { background: var(--paper); }

.contact-big {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.contact-big .outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--orange);
  filter: drop-shadow(0 0 10px var(--orange));
}

.contact-big .glitch {
  position: relative;
  display: inline-block;
  color: var(--pink);
  filter: drop-shadow(0 0 12px var(--pink));
}

.contact-big .glitch::before,
.contact-big .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
}

.contact-big .glitch::before {
  color: var(--green);
  animation: glitch-1 3s infinite 0.5s;
}

.contact-big .glitch::after {
  color: var(--blue);
  animation: glitch-2 3s infinite 0.8s;
}

@keyframes glitch-1 {
  0%, 90%, 100% { opacity: 0; transform: none; }
  92% { opacity: 0.9; transform: translate(-4px, 1px); clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%); }
  95% { opacity: 0.9; transform: translate(4px, -1px); clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); }
}

@keyframes glitch-2 {
  0%, 90%, 100% { opacity: 0; transform: none; }
  92% { opacity: 0.8; transform: translate(4px, -1px); clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%); }
  95% { opacity: 0.8; transform: translate(-3px, 2px); clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%); }
}

.contact-sub {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  letter-spacing: 0.04em;
  color: #000;
  text-decoration: none;
  border-bottom: 3px solid var(--pink);
  padding-bottom: 0.2rem;
  font-weight: 700;
  transition: color 0.1s, border-color 0.1s;
}
.contact-email::before { content: '↗'; color: var(--pink); }
.contact-email:hover { color: var(--pink); border-color: #000; }

/* ── Footer ── */
footer {
  position: relative;
  z-index: 2;
  border-top: 3px solid #000;
  background: #000;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-l, .footer-r {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
}

.footer-r a { color: #555; text-decoration: none; transition: color 0.1s; }
.footer-r a:hover { color: var(--yellow); }

/* ── Glitch title ── */
.glitch-title {
  position: relative;
  display: inline-block;
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
}

.glitch-title::before {
  color: var(--pink);
  animation: gt1 5s infinite 1.5s;
}

.glitch-title::after {
  color: var(--blue);
  animation: gt2 5s infinite 1.8s;
}

@keyframes gt1 {
  0%, 96%, 100% { opacity: 0; }
  97% { opacity: 0.85; transform: translate(-4px, 0); clip-path: polygon(0 30%, 100% 30%, 100% 55%, 0 55%); }
}

@keyframes gt2 {
  0%, 96%, 100% { opacity: 0; }
  97% { opacity: 0.75; transform: translate(4px, 0); clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
