:root {
  color-scheme: dark;
  --bg: #000;
  --text: #f2f2f2;
  --muted: #b0b0b0;
  --accent: #c20d0d;
  --accent-soft: rgba(194, 13, 13, 0.35);
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --glow: 0 0 24px rgba(194, 13, 13, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Archivo", "Segoe UI", sans-serif;
  line-height: 1.6;
  animation: pageReveal 1.2s ease both;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  inset: -20% 10% auto;
  height: 60vh;
  background: radial-gradient(circle at top, rgba(194, 13, 13, 0.2), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page::after {
  inset: auto -20% -10% auto;
  height: 50vh;
  background: radial-gradient(circle at bottom, rgba(194, 13, 13, 0.18), transparent 60%);
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: 80px 6vw;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.hero-portrait {
  width: min(58vw, 340px);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
  filter: grayscale(1) contrast(1.1);
  animation: fadeInSlow 2.2s ease forwards;
  opacity: 0;
}

.hero h1 {
  font-family: "Teko", sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 10px;
}

.hero h2 {
  font-size: clamp(18px, 3vw, 28px);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-lines {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  font-size: clamp(16px, 2.4vw, 22px);
}

.punchlines {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
  max-width: 720px;
  animation: fadeUp 1.4s ease 0.6s forwards;
  opacity: 0;
}

.section-title {
  font-family: "Teko", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.grid {
  display: grid;
  gap: 20px;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 22px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
  box-shadow: var(--glow);
}

.weapon {
  font-weight: 600;
  color: var(--text);
  display: block;
}

.weapon span {
  color: var(--accent);
  font-weight: 600;
}

.stat {
  font-size: 18px;
  color: var(--muted);
}

.villain-quote {
  text-align: center;
  font-family: "Teko", sans-serif;
  font-size: clamp(28px, 6vw, 64px);
  letter-spacing: 2px;
}

.villain-quote span {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  text-decoration: none;
  color: var(--text);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.btn.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0b0b;
}

footer {
  padding: 40px 6vw 60px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@keyframes fadeInSlow {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 8vw;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-lines {
    font-size: 16px;
  }
}
