/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ── Utilities ────────────────────────────────── */
.red { color: #b91c1c; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.divider {
  width: 60px;
  height: 4px;
  background: #b91c1c;
  margin: 16px auto 32px;
  border-radius: 2px;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80')
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(185, 28, 28, 0.6);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: #ccc;
  margin-bottom: 36px;
  font-weight: 400;
}

.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #b91c1c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #b91c1c;
  box-shadow: 0 0 30px rgba(185, 28, 28, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(185, 28, 28, 0.7);
  border-bottom: 2px solid rgba(185, 28, 28, 0.7);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

.chevron:nth-child(2) { animation-delay: 0.15s; }
.chevron:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 60%, 100% { opacity: 0; transform: rotate(45deg) translate(-4px, -4px); }
  30%           { opacity: 1; transform: rotate(45deg) translate(4px, 4px); }
}

/* ── Sections ─────────────────────────────────── */
.section {
  padding: 100px 0;
  background: #000;
}

.section-dark {
  background: #0a0a0a;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 3px;
}

.section p {
  font-size: 1.05rem;
  color: #bbb;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── Features ─────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.feature-card {
  background: #111;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 36px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #b91c1c;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: #b91c1c;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
  color: #999;
  margin-bottom: 0;
}

/* ── Coming Soon Pipeline ─────────────────────── */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.countdown-item {
  position: relative;
  background: #111;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.glow-ring {
  position: absolute;
  top: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,28,28,0.25), transparent 70%);
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.3); opacity: 1; }
}

.countdown-label {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.status {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}

.status.complete    { background: rgba(185,28,28,0.2); color: #ef4444; }
.status.in-progress { background: rgba(234,179,8,0.15); color: #eab308; }
.status.upcoming    { background: rgba(255,255,255,0.06); color: #666; }

/* ── Subscribe Form ───────────────────────────── */
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: #111;
  border: 2px solid #222;
  color: #fff;
  border-radius: 6px 0 0 6px;
  outline: none;
  transition: border-color 0.3s;
}

.subscribe-form input:focus {
  border-color: #b91c1c;
}

.subscribe-form button {
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: #b91c1c;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.subscribe-form button:hover {
  background: #991b1b;
  box-shadow: 0 0 20px rgba(185,28,28,0.4);
}

.form-message {
  margin-top: 16px;
  font-size: 0.9rem;
  min-height: 24px;
}

/* ── Footer ───────────────────────────────────── */
footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #151515;
  color: #444;
  font-size: 0.85rem;
}

/* ── Scroll Reveal Animations ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Fade-in for hero */
.fade-in {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 600px) {
  .subscribe-form {
    flex-direction: column;
    gap: 12px;
  }
  .subscribe-form input,
  .subscribe-form button {
    border-radius: 6px;
    width: 100%;
  }
}
