/* Clean, modern styling (larger sizes for readability) */

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0
}

:root {
  font-size: 18px
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: linear-gradient(180deg, #071025 0%, #071827 100%);
  color: #e8eef8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
}

.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px
}

.hero {
  width: min(100%, 1700px);
  display: flex;
  gap: 36px;
  align-items: stretch;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.hero-copy {
  flex: 1;
  padding: 12px
}

.hero-poster {
  width: 480px;
  flex: 0 0 480px;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1220
}

.hero-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.12);
  color: #cfcfff;
  font-weight: 700;
  font-size: 0.95rem
}

h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.03;
  color: #ffffff;
  font-weight: 800
}

.hero-text {
  margin: 12px 0 18px;
  color: #c6d2e6;
  max-width: 60rem;
  font-size: 1.05rem
}

.hero-stack {
  display: flex;
  gap: 18px;
  margin: 20px 0
}

.hero-card {
  flex: 1;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03)
}

.hero-card strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.05rem
}

.hero-card span {
  color: #b8c4da;
  font-size: 1rem
}

.hero-info {
  margin-top: 20px;
  color: #dfe9ff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem
}

.hero-info div::before {
  content: '• ';
  color: #7c5cff
}

.hero-note {
  margin-top: 16px;
  color: #98a7c6;
  font-size: 1rem
}

.poster-overlay {
  position: relative
}

.poster-action {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  padding: 14px 20px;
  border-radius: 999px;
  background: #7c5cff;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none
}

@media (max-width:980px) {
  .hero {
    flex-direction: column;
    padding: 22px
  }

  .hero-poster {
    width: 100%;
    flex: auto
  }

  .poster-action {
    bottom: 16px;
    padding: 12px 16px;
    font-size: 1rem
  }
}

@media (max-width:520px) {
  :root {
    font-size: 16px
  }

  h1 {
    font-size: 1.6rem
  }

  .hero-stack {
    flex-direction: column;
    gap: 12px
  }

  .hero-poster {
    border-radius: 10px
  }
}

/* Utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}