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

:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --accent: #c8ff00;
  --accent2: #7b5cff;
  --text: #f0eeea;
  --muted: #7a7880;
  --border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Noise overlay */
.noise {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* Header */
header {
  display: flex; justify-content: center; padding: 2rem;
}
.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .5rem 1.25rem;
  border-radius: 100px;
}

/* Hero */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem 8vw;
  flex-wrap: wrap;
}

.hero-text { flex: 1; min-width: 280px; }

.eyebrow {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff 30%, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 380px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,255,0,.3); }

/* Mascot */
.hero-mascot { flex: 1; min-width: 260px; display: flex; justify-content: center; }

.mascot-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 0 60px rgba(123,92,255,.15);
  transition: transform .3s;
}
.mascot-frame:hover { transform: translateY(-6px); }

#murk {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto 1rem;
}

.mascot-label {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Tribute cards */
.tribute { padding: 6rem 8vw; }

.tribute-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: var(--accent2); transform: translateY(-4px); }

.card-icon { font-size: 1.8rem; margin-bottom: 1rem; color: var(--accent); }
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .9rem; }

/* Quote */
.quote-section {
  padding: 5rem 8vw;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
blockquote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.4;
}
cite {
  display: block;
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: .08em;
}

/* Timeline */
.timeline { padding: 6rem 8vw; }
.timeline h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: -.02em;
}

.timeline-items { display: flex; flex-direction: column; gap: 0; }

.t-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.t-year {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 60px;
  letter-spacing: .04em;
}
.t-item p { color: var(--muted); font-size: .95rem; }

/* Footer */
footer {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--muted);
  font-size: .9rem;
}
.small { font-size: .75rem; margin-top: .5rem; opacity: .6; }
