/* ===========================
   SpiritWorks Modern CSS
   Full Verified Copy
   =========================== */

:root {
  --bg: #ffffff;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --accent: #2563eb;
  --accent-soft: #e0ecff;
  --border: #e5e7eb;
  --radius: 10px;
  --maxw: 1200px;
  --shadow: 0 8px 28px rgba(0,0,0,.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* ===========================
   Header
   =========================== */

.site-header {
  background: #1f4fd8;  /* Royal Blue */
  color: #fff;
}

.site-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-title {
  margin: 0;
  font-size: 1.4rem;
}

.site-tagline {
  margin: 0;
  font-size: .85rem;
  color: #e0e7ff;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
}

/* ===========================
   Layout
   =========================== */

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

section { margin-bottom: 3rem; }

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

ul {
  padding-left: 1.25rem;
}

li { margin-bottom: .4rem; }

/* ===========================
   Hero
   =========================== */

.hero {
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid var(--accent);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

/* ===========================
   Highlight Sections
   =========================== */

.highlights,
.accessibility,
.giving,
.platform {
  background: #f9fafb;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ===========================
   Products
   =========================== */

.products {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.product-tagline {
  font-weight: 600;
  color: var(--muted);
  font-size: .95rem;
}

.testimonial {
  font-style: italic;
  background: var(--accent-soft);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
}

/* ===========================
   Footer
   =========================== */

.site-footer {
  background: #1f4fd8;
  color: #e0e7ff;
}

.site-footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  text-align: center;
}

.site-footer a {
  color: #e0e7ff;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 900px) {
  h2 { font-size: 1.7rem; }
  .hero { padding: 2rem 1.5rem; }
}

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

  .hero {
    text-align: left;
    padding: 1.75rem 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }
}
