/* ── HERO ── */
.hero {
  position: relative;
  z-index: 5;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acid);
  border: 1px solid rgba(200, 255, 0, 0.35);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-left  { animation: fadeUp 0.6s ease both; }
.hero-visual { animation: fadeUp 0.6s ease 0.15s both; }

/* ── SCHEDULE MOCKUP ── */
.hero-visual {
  background: var(--surface);
  border: 1px solid rgba(200, 255, 0, 0.12);
  border-radius: 2px;
  padding: 1rem;
  font-size: 0.7rem;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200, 255, 0, 0.1);
}

.schedule-title { color: var(--acid); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.schedule-date  { color: var(--muted); font-size: 0.65rem; }

.stage-row  { margin-bottom: 0.5rem; }
.stage-label {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.timeline { display: flex; gap: 3px; height: 28px; align-items: stretch; }

.slot {
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  font-size: 0.58rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}
.slot.mine     { background: var(--acid); color: var(--deep); font-weight: 500; }
.slot.other    { background: rgba(123, 47, 255, 0.25); color: #c4a8ff; border: 1px solid rgba(123, 47, 255, 0.4); }
.slot.conflict { background: rgba(255, 60, 172, 0.2); color: #ff9dd8; border: 1px solid rgba(255, 60, 172, 0.4); }
.slot.gap      { background: transparent; flex-shrink: 0; }

.clash-alert {
  margin-top: 0.75rem;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 60, 172, 0.1);
  border: 1px solid rgba(255, 60, 172, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ff9dd8;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ── FEATURES ── */
.features {
  position: relative;
  z-index: 5;
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(200, 255, 0, 0.07);
  border: 1px solid rgba(200, 255, 0, 0.07);
}

.feature-card {
  background: var(--deep);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.5s ease both;
}
.feature-card:hover { background: var(--surface); }
.feature-card:nth-child(2) { animation-delay: 0.08s; }
.feature-card:nth-child(3) { animation-delay: 0.16s; }

.feature-card.coming-soon { cursor: default; }
.feature-card.coming-soon:hover { background: var(--deep); }

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 16, 0.78);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.coming-soon-badge {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  border: 1px solid rgba(200, 255, 0, 0.35);
  padding: 0.35rem 0.85rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; }

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how {
  position: relative;
  z-index: 5;
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 2.5rem;
}

.step { padding: 2rem 1.5rem 2rem 0; position: relative; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 2.1rem;
  color: rgba(200, 255, 0, 0.3);
  font-size: 1.1rem;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200, 255, 0, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.step p { font-size: 0.75rem; color: var(--muted); line-height: 1.7; }

/* ── FOOTER CTA ── */
.footer-cta {
  position: relative;
  z-index: 5;
  padding: 5rem 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.footer-cta h2 { margin-bottom: 0.75rem; }
.footer-cta p  { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.25rem 2rem; }
  .features, .how { padding: 3rem 1.25rem; }
  .step:not(:last-child)::after { display: none; }
  .footer-cta { padding: 3rem 1.25rem; }
}