/* COMING SOON - SCOPED STYLES */

/* ===== Hero (migrated from old inline style block) ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 var(--page-padding);
  padding-top: var(--nav-height);
  overflow: hidden;
  background: linear-gradient(135deg, var(--g-850) 0%, var(--g-900) 40%, var(--g-950) 100%);
}
.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--g-900) 0%, rgba(18,18,21,0.7) 40%, rgba(18,18,21,0.2) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--g-900) 0%, transparent 30%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: var(--space-3xl) 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-xl);
}
.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero-eyebrow-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--g-400);
}
.hero-title { margin-bottom: var(--space-lg); }
.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: var(--g-300);
  font-weight: 300;
  margin-bottom: var(--space-2xl);
  max-width: 460px;
}
.drop-subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--g-400);
  margin-bottom: var(--space-2xl);
}

/* ===== Hero notify form ===== */
.hero-notify {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin-top: var(--space-2xl);
  position: relative;
}
.notify-input {
  flex: 1;
  background: rgba(11, 11, 13, 0.6);
  border: 1px solid var(--g-600);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--duration-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.notify-input:focus { border-color: var(--accent); }
.notify-input::placeholder { color: var(--g-500); }
.hero-notify .btn { border: none; }

/* Honeypot - hidden from humans, visible to dumb bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Status messages */
.notify-status {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--g-300);
  min-height: 18px;
}
.notify-status.is-error { color: var(--accent); }
.notify-status.is-success { color: var(--success); }

/* Newsletter form needs status positioned in flow */
#newsletter-form { position: relative; }
#newsletter-form .notify-status {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: left;
}

/* ===== The Lineup grid - 4 col desktop, 3 tablet, 2 small, 1 mobile ===== */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--g-700);
}
.lineup-card {
  background: var(--g-800);
  position: relative;
  overflow: hidden;
  transition: background var(--duration-med);
}
.lineup-card:hover { background: var(--g-750); }
.lineup-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.lineup-card-img.is-suppressor img {
  object-fit: contain;
  padding: 8%;
}
.lineup-card:hover .lineup-card-img img { transform: scale(1.02); }
.lineup-card-meta {
  padding: 20px 24px;
}
.lineup-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.lineup-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--duration-med);
  transform-origin: left;
}
.lineup-card:hover::after { transform: scaleX(1); }

/* ===== Drop section variant ===== */
.drop-copy {
  font-size: 16px;
  color: var(--g-400);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}
.drop-notify {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}
.drop-notify .notify-input { flex: 1; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .lineup-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-bg { width: 100%; opacity: 0.3; }
  .hero-content { padding: var(--space-3xl) 0; }
  .hero-notify { flex-direction: column; gap: 8px; }
  .hero-notify .btn { width: 100%; }
  .drop-notify { flex-direction: column; gap: 8px; }
  .drop-notify .btn { width: 100%; }
}
@media (max-width: 480px) {
  .lineup-grid { grid-template-columns: 1fr; }
}

/* Reduced-motion guard */
@media (prefers-reduced-motion: reduce) {
  .lineup-card,
  .lineup-card-img img,
  .lineup-card::after { transition: none; }
  .lineup-card:hover .lineup-card-img img { transform: none; }
}
