/* ==========================================================================
   Home page (index.html)
   ========================================================================== */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--space-16) 0 var(--space-20);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle at center, rgba(199, 153, 255, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle at center, rgba(74, 248, 227, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-12);
  align-items: center;
}

.hero__content {
  gap: var(--space-5);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero__accent {
  color: var(--primary);
  font-style: italic;
}

.hero__lede {
  font-size: 1.125rem;
  max-width: 34rem;
}

.hero__cta {
  margin-top: var(--space-2);
}

.hero__meta {
  margin-top: var(--space-4);
  gap: var(--space-2);
}

.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: var(--surface-low);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.hero__art-frame {
  position: absolute;
  inset: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-mid);
}

.hero__art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
}

.hero__sticker {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--tertiary);
  color: var(--on-tertiary);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.hero__art > pixel-accent {
  top: var(--space-6);
  right: var(--space-6);
  width: 12px;
  height: 12px;
  z-index: 2;
}

/* ---------- Section heading shared ---------- */
.home__section-head {
  margin-bottom: var(--space-10);
  align-items: flex-end;
}

.home__section-head .section__title {
  margin-bottom: 0;
  margin-top: var(--space-2);
}

/* ---------- Editorial split ---------- */
.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-12);
  align-items: center;
}

.editorial__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-low);
}

.editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
}

.editorial__media > pixel-accent {
  top: var(--space-4);
  right: var(--space-4);
  z-index: 2;
}

.editorial__title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.editorial__list {
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.editorial__bullet {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- Platforms chips ---------- */
.platforms {
  gap: var(--space-3);
}

.platforms .chip {
  padding: var(--space-2) var(--space-5);
  background: var(--surface-highest);
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease;
}

.platforms .chip:hover {
  background: var(--secondary-container);
  color: var(--on-secondary-container);
}

/* ---------- Newsletter ---------- */
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
  padding: var(--space-10);
}

.newsletter__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.newsletter__form {
  display: flex;
  gap: var(--space-3);
  align-items: flex-end;
}

.newsletter__field {
  flex: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner,
  .editorial,
  .newsletter {
    grid-template-columns: 1fr;
  }
  .hero__art,
  .editorial__media {
    max-width: 32rem;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero { padding: var(--space-10) 0 var(--space-12); }
  .home__section-head { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .newsletter__form { flex-direction: column; align-items: stretch; }
  .newsletter__form .btn { width: 100%; }
}
