/* Base styles for HG theme */
:root {
  --brand-primary: #0ea5e9;
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}

p { margin: 0.25rem 0 1rem; color: var(--muted); }

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem;
}

.site-header, .site-footer {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  border-bottom: 0;
}

/* Simple hero */
.hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(14,165,233,0.08), transparent 70%);
}
.hero .eyebrow { color: var(--brand-primary); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
.hero .lead { font-size: 1.125rem; max-width: 56ch; }
.hero .actions { margin-top: 1rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.button { background: var(--brand-primary); color:#fff; border:0; padding:.75rem 1rem; border-radius:.5rem; cursor:pointer; }
