/* Landing (index) styles, aligned with docs.css */
:root {
  --start-font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  font-family: var(--start-font-family);
}

.start-hero {
  padding: 4.5rem 1.5rem 0;
  text-align: center;
}

.start-hero .starter-template {
  max-width: 980px;
  margin: 0 auto;
}

.start-hero h1 {
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.start-hero .lead {
  margin: 1.25rem auto 1.5rem;
  max-width: 820px;
}

.start-hero .lead p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.start-links {
  margin: 1.75rem 0 2.25rem;
}

.start-links .btn {
  border-radius: 14px;
  padding: 0.65rem 1rem;
  font-weight: 650;
}

.start-links .btn + .btn {
  margin-left: 0.75rem;
}

.start-stats {
  margin-top: 1.25rem;
}

.start-stats .grid {
  display: grid;
  gap: 0.25rem;
  font-size: 2rem;
  font-weight: 800;
}

.start-stats .grid span {
  color: var(--docs-muted);
  font-size: 1.05rem;
  font-weight: 650;
}

.feature-box {
  background: var(--docs-surface);
  border: 1px solid var(--docs-border);
  padding: 1.25rem;
  border-radius: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--docs-shadow);
  height: 100%;
}

.feature-box:hover {
  background: var(--docs-surface-hover);
  transform: translateY(-2px);
  border-color: rgba(20, 196, 255, 0.35);
}

.feature-box i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-box h4 {
  font-weight: 750;
}

.feature-box .text-secondary {
  color: var(--docs-muted) !important;
}

body.dark-theme .feature-box .text-secondary {
  color: rgba(255, 255, 255, 0.65) !important;
}

@media (max-width: 768px) {
  .start-hero {
    padding: 3.75rem 1rem 0;
  }

  .start-links .btn {
    width: 100%;
  }

  .start-links .btn + .btn {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .start-stats .grid {
    font-size: 1.6rem;
  }

  .start-stats .grid span {
    font-size: 1rem;
  }
}