:root {
  color-scheme: dark;
  --bg: #060709;
  --surface: #111723;
  --text: #f6f4ef;
  --muted: #96a0b6;
  --accent: #74d7c4;
  --warm: #f0c07d;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(116, 215, 196, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(240, 192, 125, 0.1), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: "SF Pro Display", "Inter", system-ui, sans-serif;
}

.page {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 80px;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero h1,
.details h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  margin: 12px 0 0;
}

.lede {
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 18px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--text);
  color: var(--bg);
  border-color: transparent;
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.poster {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.38);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-main {
  inset: 0 0 72px 46px;
}

.poster-small {
  width: 42%;
  right: 0;
  bottom: 0;
  height: 42%;
  border: 1px solid var(--border);
}

.details {
  margin-top: 84px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.detail-grid article,
.health-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
}

.detail-grid h3 {
  margin: 0;
  font-size: 1.2rem;
}

.detail-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.health-panel {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

pre {
  padding: 16px;
  margin: 0;
  border-radius: 18px;
  background: #09111a;
  color: var(--warm);
  overflow-x: auto;
}

@media (max-width: 900px) {
  .page {
    width: min(100vw - 24px, 100%);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 16px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .poster-main {
    inset: 0 24px 54px 0;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

