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

:root {
  --color-bg: #1A1A23;
  --color-blue: #2C1EFB;
  --color-white: #ffffff;
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 32px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  border-radius: 32px;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  width: 2102px;
  height: 1387px;
  left: 50%;
  top: -70%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(44, 30, 251, 0.9) 0%,
    rgba(44, 30, 251, 0.4) 25%,
    rgba(14, 10, 15, 0) 60%
  );
  pointer-events: none;
}

/* ===== HERO CONTENT ===== */
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Release badge */
.hero__release-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.02em;
}

/* Title */
.hero__title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
}

/* Subtitle */
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-white);
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero__title {
    font-size: 50px;
  }

  .hero__subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .hero {
    border-radius: 24px;
    min-height: 500px;
  }
}
