:root {
  --bg: #040404;
  --bg-soft: #0b0b0b;
  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.08);
  --text: #f5f5f5;
  --muted: #d2d2d2;
  --red: #8f090f;
  --red-deep: #540307;
  --gold: #c8a145;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.94)),
    url('assets/red-texture.jpg') center top / cover fixed no-repeat;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 10%, rgba(183,15,24,.32), transparent 28%),
    radial-gradient(circle at 24% 24%, rgba(255,255,255,.05), transparent 18%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 24px 18px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 45%, rgba(0,0,0,.48) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 10px;
  align-items: center;
  min-height: 88vh;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .76rem;
  color: rgba(255,255,255,.72);
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  margin: 14px 0 0;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.07em;
}

.lead {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  font-size: .92rem;
}

.portal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.portal-buttons a,
.platform-card {
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.portal-buttons a {
  padding: 14px 22px;
}

.portal-buttons a:hover,
.platform-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.34);
  background: linear-gradient(180deg, rgba(200,161,69,.22), rgba(143,9,15,.18));
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
}

.hero-art {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-backdrop {
  position: absolute;
  z-index: 0;
  width: min(820px, 86%);
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  opacity: .9;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.3));
}

.artist-glow {
  position: absolute;
  width: 58%;
  height: 58%;
  bottom: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,18,28,.54) 0%, rgba(191,18,28,.16) 36%, transparent 70%);
  filter: blur(24px);
}

.artist-photo {
  position: relative;
  z-index: 1;
  width: min(470px, 64%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 90px rgba(0,0,0,.78));
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 22px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.panel,
.about-card,
.platforms-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel {
  padding: 32px;
}

.panel-dark {
  background: linear-gradient(180deg, rgba(12,12,12,.9), rgba(20,20,20,.8));
}

.panel-red,
.about-card,
.platforms-shell {
  background: linear-gradient(180deg, rgba(143,9,15,.46), rgba(24,3,4,.86));
}

.panel h2,
.about-card h2,
.platforms h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.02;
}

.panel p,
.about-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.aliases {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.aliases li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.1);
  line-height: 1.5;
  color: #f1e2e2;
}

.aliases span {
  display: block;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.about-card {
  padding: 38px;
}

.compact-platforms {
  padding-top: 8px;
  padding-bottom: 52px;
}

.platforms-shell {
  padding: 22px;
}

.platforms-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.platforms-head h2 {
  margin: 0;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.platform-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 16px;
  min-height: 72px;
  text-align: center;
}

.platform-card strong {
  font-size: 1rem;
}

.footer {
  padding: 0 24px 40px;
}

.footer-line {
  max-width: 1280px;
  margin: 0 auto 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy p,
.copyright {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.footer-right {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-logo {
  margin-top: 12px;
  width: min(360px, 70vw);
}

@media (max-width: 1100px) {
  .hero-inner,
  .split,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    gap: 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-art {
    min-height: 620px;
    margin-top: 12px;
  }

  .signature-backdrop {
    width: min(700px, 92%);
    top: 10%;
  }

  .artist-photo {
    width: min(420px, 72%);
  }

  .split {
    margin-top: 0;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-inline: 18px;
  }

  .section,
  .footer {
    padding-inline: 18px;
  }

  .panel,
  .about-card,
  .platforms-shell {
    padding: 22px;
  }

  .portal-buttons a {
    width: 100%;
    text-align: center;
  }

  .hero-art {
    min-height: 500px;
  }

  .signature-backdrop {
    top: 12%;
    width: 100%;
  }

  .artist-photo {
    width: min(330px, 72%);
  }

  .platforms-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
