/* ------------------------------
   Global Typography & Layout
--------------------------------*/
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #111;
  margin: 0;
  padding: 0;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

/* Remove Minima header completely */
.site-header {
  display: none !important;
}

/* ------------------------------
   Headings & Text
--------------------------------*/
h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.tagline {
  font-size: 1.0rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* ------------------------------
   Content List
--------------------------------*/
.feature-list {
  margin: 40px auto;
  max-width: 600px;
  padding-left: 20px;
  font-size: 1.0rem;
}

/* ------------------------------
   CTA Button
--------------------------------*/
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #0078D7;
  color: #ffffff !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.1s ease;
  text-align: center;
}

.btn-primary:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

.btn-primary:active {
  background: #004b82;
  transform: translateY(0);
}

/* Center CTA */
.cta-container {
  text-align: center;
  margin-top: 40px;
}
/* Remove extra top spacing on landing page */
.page-content .wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Remove default top margin on first heading */
.page-content h1:first-child,
.page-content p:first-child,
.page-content div:first-child {
  margin-top: 0 !important;
}

