/* The <style> block of platform-landing.ejs, moved here when the policy stopped admitting inline CSS. */
.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  padding: 4rem 2rem 2rem;
}
.landing-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.landing-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  color: var(--color-text-muted, #888);
  margin-bottom: 2rem;
}
.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}
.landing-feature {
  background: var(--color-surface, #1e1e1e);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.landing-feature h3 { margin-top: 0; }
.request-section {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}
.request-section h2 { text-align: center; margin-bottom: 0.5rem; }
.request-section .subtitle {
  text-align: center;
  color: var(--color-text-muted, #888);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.slug-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.slug-row .slug-suffix {
  background: var(--color-surface-raised, #2a2a2a);
  border: 1px solid var(--color-border, #444);
  border-left: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0 0.375rem 0.375rem 0;
  color: var(--color-text-muted, #888);
  font-size: 0.95rem;
  white-space: nowrap;
}
.slug-row input { border-radius: 0.375rem 0 0 0.375rem; }
.success-banner {
  background: var(--color-success-bg, #1a3a2a);
  color: var(--color-success, #4caf50);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.error-banner {
  background: var(--color-danger-bg, #3a1a1a);
  color: var(--color-danger, #e55);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Rules that were style attributes on platform-landing.ejs; see util.css for why !important. */
.land-footer { text-align: center !important; padding: 2rem !important; color: var(--color-text-muted, #888) !important; font-size: 0.85rem !important; }
.land-header { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 1rem 2rem !important; border-bottom: 1px solid var(--color-border, #333) !important; }
