
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}

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

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: #022c22;
}

.site-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.site-tagline {
  font-size: 0.8rem;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: #e5e7eb;
  border: 1px solid transparent;
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.2);
  border-color: rgba(148, 163, 184, 0.4);
}

.nav-link.active {
  background: #22c55e;
  color: #022c22;
  border-color: #22c55e;
}

main {
  flex: 1;
}

.hero {
  padding: 3.5rem 1.5rem 3rem;
  background: radial-gradient(circle at top left, #a5b4fc 0, transparent 50%),
              radial-gradient(circle at top right, #6ee7b7 0, transparent 55%),
              #020617;
  color: #e5e7eb;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.hero-content h2 {
  font-size: clamp(2rem, 3.2vw + 1rem, 2.8rem);
  margin-bottom: 0.75rem;
}

.hero-content p {
  color: #d1d5db;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.hero-subtext {
  font-size: 0.9rem;
  color: #c4c4d4;
}

.hero-card-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.info-card h3 {
  margin-bottom: 0.35rem;
}

.section {
  padding: 2.75rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section.light {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.section.highlight {
  background: linear-gradient(145deg, #ecfdf5, #eff6ff);
  border-top: 1px solid #bfdbfe;
  border-bottom: 1px solid #bbf7d0;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.two-column.center-vert {
  align-items: center;
}

.card-grid-3 {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.feature-card,
.resource-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.section.light .feature-card,
.section.light .resource-card {
  background: #ffffff;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.checklist li {
  font-size: 0.95rem;
}

.numbered-list {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
}

.numbered-list li {
  margin-left: 0.25rem;
}

.pill-grid {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 0.85rem;
}

.highlight-box,
.cta-panel {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.1s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5f5;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover {
  background: #e5e7eb;
}

.btn-secondary.small,
.resource-card .btn-secondary.small {
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
}

.btn-secondary.small.disabled {
  opacity: 0.6;
  cursor: default;
  box-shadow: none;
}

.full-width {
  width: 100%;
  text-align: center;
}

.small-note {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.inline-form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
}

.inline-form input:focus {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
}

.page-hero {
  padding: 2.5rem 1.5rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #4b5563;
}

.blog-list {
  display: grid;
  gap: 1.25rem;
}

.blog-item {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.blog-item h3 {
  margin-bottom: 0.35rem;
}

.blog-meta {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #6b7280;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label span {
  display: block;
  font-size: 0.87rem;
  margin-bottom: 0.2rem;
  color: #374151;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
}

.contact-block {
  margin-bottom: 0.75rem;
}

.site-footer {
  margin-top: 2.5rem;
  background: #020617;
  color: #e5e7eb;
  padding: 2rem 1.5rem 1.2rem;
}

.footer-columns {
  max-width: 1120px;
  margin: 0 auto 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: #d1d5db;
}

.footer-links a:hover {
  color: #22c55e;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

@media (max-width: 840px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3rem;
  }
}
