
/* styles.css - minimal, clean, responsive */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f9fafb;
  color: #111827;
  line-height: 1.6;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem;
}

header {
  padding: 1.5rem 0 1rem 0;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.site-tagline {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.1rem;
}

nav {
  margin-top: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding-bottom: 0.75rem;
}

nav a {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

nav a.active {
  color: #2563eb;
}

main {
  padding: 1.5rem 0 2.5rem 0;
}

.hero {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.hero p {
  color: #4b5563;
  max-width: 40rem;
}

.hero-cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.btn-primary {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.btn-secondary {
  background: white;
  color: #111827;
  border-color: #e5e7eb;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.card-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.4rem;
}

article h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

article h2 {
  font-size: 1.2rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

article p {
  margin-bottom: 0.6rem;
  color: #374151;
}

article ul {
  margin: 0.4rem 0 0.8rem 1.2rem;
}

article li {
  margin-bottom: 0.3rem;
}

.meta-line {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

footer a {
  color: #6b7280;
}

.page-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-intro {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-field textarea {
  min-height: 120px;
}

@media (max-width: 768px) {
  .site-wrapper {
    padding: 1rem;
  }

  .hero {
    padding: 1.1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}
