:root {
  /* Hopeful theme - lighter, warmer palette */
  --bg: #fdfbf7;
  --bg-secondary: #f5f2ed;
  --text: rgba(45,45,45,0.92);
  --muted: rgba(75,75,75,0.85);
  --faint: rgba(100,100,100,0.70);
  --border: rgba(120,100,80,0.15);
  --shadow: 0 8px 24px rgba(120,100,80,0.12);
  --radius: 16px;
  --maxw: 1100px;

  /* Hopeful color palette */
  --color-primary: #3498db;        /* Calm blue */
  --color-secondary: #2ecc71;      /* Hopeful green */
  --color-accent: #f39c12;         /* Warm gold */
  --color-coral: #e74c3c;          /* Warm coral/red for emphasis */
  --color-teal: #1abc9c;           /* Fresh teal */
  --color-lavender: #9b59b6;       /* Soft purple */

  /* fixed header height */
  --header-h: 64px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg); /* light, warm base */
  line-height: 1.55;
  position: relative;

  /* make room for fixed header */
  padding-top: var(--header-h);
}

/* Smooth, seam-free background layer (fixed) - hopeful gradients */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(1200px 700px at 20% -10%,
      rgba(52, 152, 219, 0.08) 0%,
      rgba(52, 152, 219, 0.04) 35%,
      rgba(52, 152, 219, 0.00) 78%),
    radial-gradient(1100px 650px at 100% 0%,
      rgba(46, 204, 113, 0.06) 0%,
      rgba(46, 204, 113, 0.03) 35%,
      rgba(46, 204, 113, 0.00) 78%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 70%);
}

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

.container {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fixed header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(253, 251, 247, 0.85);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(120,100,80,0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.brand-name { font-size: 15px; }

.nav { position: relative; }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
}
.nav-list a { padding: 8px 10px; border-radius: 10px; }
.nav-list a:hover { text-decoration: none; background: rgba(52,152,219,0.10); color: var(--color-primary); }

.header-cta { display: flex; justify-content: flex-end; }

/* Make anchor jumps land below fixed header */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Sections */
.hero { padding: 76px 0 48px; }
.section {
  padding: 76px 0;
  border-top: 1px solid rgba(120,100,80,0.08);
}
.hero + .section { border-top: 1px solid rgba(120,100,80,0.08); }

.eyebrow {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}
.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.badge {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 12px;
}
.badge-icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.badge-title { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.badge-text { color: var(--faint); font-size: 12px; }

.hero-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 280px;
  display: block;
}
.hero-banner {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  display: block;
}
.panel-card { padding: 20px; }
.panel-title { margin: 0 0 8px; font-size: 18px; }
.panel-text { margin: 0 0 14px; color: var(--muted); }
.panel-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.panel-list li { margin: 8px 0; }

.section-head h2 {
  margin: 0 0 10px;
  font-size: 28px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 820px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  margin-bottom: 12px;
}
.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); }

.callout {
  margin-top: 22px;
  border: 1px solid rgba(52,152,219,0.30);
  background: linear-gradient(135deg, rgba(52,152,219,0.10), rgba(46,204,113,0.08));
  border-radius: var(--radius);
  padding: 16px;
}
.callout-title { color: var(--muted); font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.callout-text { font-weight: 700; font-size: 18px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.workflow-container {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  align-items: center;
}

.workflow-diagram svg {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 400px;
}

.workflow-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workflow-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.workflow-item p {
  margin: 0 0 12px;
  color: var(--muted);
}

h3 { margin-top: 0; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--muted);
}
.checklist li {
  margin: 10px 0;
  padding-left: 26px;
  position: relative;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-weight: 800;
}

.note {
  margin-top: 18px;
  color: var(--muted);
  border-left: 3px solid var(--color-secondary);
  padding: 10px 12px;
  background: rgba(46,204,113,0.08);
  border-radius: 12px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.work-item {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.work-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.work-icon {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  margin-bottom: 12px;
}
.work-item h3 { margin: 0 0 8px; font-size: 16px; }
.work-item p { margin: 0; color: var(--muted); }

.quote {
  margin-top: 22px;
  border: 1px solid var(--border);
  background: rgba(243,156,18,0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 18px;
}
.quote p { margin: 0 0 8px; color: var(--text); }
.quote-attrib { color: var(--faint); font-size: 13px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.contact-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  margin-bottom: 12px;
}

.fineprint { color: var(--faint); font-size: 12px; margin-top: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--color-primary);
  background: linear-gradient(135deg, rgba(52,152,219,0.15), rgba(46,204,113,0.12));
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.button:hover { 
  text-decoration: none; 
  border-color: var(--color-primary); 
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}
.button-secondary {
  border-color: var(--border);
  background: rgba(255,255,255,0.5);
}
.button-secondary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}
.button-ghost {
  border-color: var(--border);
  background: transparent;
}
.button-ghost:hover {
  background: rgba(52,152,219,0.10);
  border-color: var(--color-primary);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-secondary);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand { font-weight: 800; }
.footer-links { display: flex; gap: 14px; color: var(--muted); font-size: 14px; }
.footer-links a { padding: 8px 10px; border-radius: 10px; }
.footer-links a:hover { text-decoration: none; background: rgba(52,152,219,0.10); color: var(--color-primary); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .workflow-container { grid-template-columns: 1fr; }
  .workflow-diagram { max-width: 400px; margin: 0 auto; }
  .work-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }

  .nav-toggle { display: inline-flex; }
  .nav-list {
    display: none;

