/* Index page styles — shared layout from low-gravitas-common.css */

h2 { color: var(--lgz-yellow); }

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}

.hero-icons {
  font-family: 'LowGravitasSymbols', monospace;
  font-size: 48px;
  letter-spacing: 12px;
  margin-bottom: 24px;
  color: var(--accent);
  display: flex;
  gap: 16px;
}

.hero-icons span {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.hero-icons span:nth-child(1) { animation-delay: 0s; }
.hero-icons span:nth-child(2) { animation-delay: 0.3s; }
.hero-icons span:nth-child(3) { animation-delay: 0.6s; }
.hero-icons span:nth-child(4) { animation-delay: 0.9s; }
.hero-icons span:nth-child(5) { animation-delay: 1.2s; }
.hero-icons span:nth-child(6) { animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

main h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.version {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 24px;
  font-family: monospace;
}

main p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

/* Override shared .btn for darker background */
.btn { background: var(--bg); }

/* Override shared .btn.primary for hover effect */
.btn.primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 18px var(--glow);
}

.btn .lg { font-size: 18px; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 800px;
  width: 100%;
  margin-bottom: 48px;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
}

.feature .icon {
  font-family: 'LowGravitasSymbols', monospace;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--accent);
}

.feature h2 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.feature p { font-size: 13px; color: var(--text-dim); margin-bottom: 0; line-height: 1.5; }

.sets-preview {
  max-width: 800px;
  width: 100%;
  margin-bottom: 48px;
}

.sets-preview h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.sets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.set-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.2s;
}

.set-pill:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--glow);
}

.set-pill .ct { color: var(--accent); font-family: monospace; margin-left: 4px; }

@media (prefers-reduced-motion: reduce) {
  .hero-icons span { animation: none; }
}
