/* StartFoundry — minimales Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #0f172a;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.site-header h1 { font-size: 2.2rem; margin-bottom: 0.4rem; }
.tagline { color: #94a3b8; font-size: 1.1rem; }

main {
  flex: 1;
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section { margin-bottom: 2.5rem; }

h2 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.3rem;
}

p { margin-bottom: 0.8rem; }

ul { margin: 0 0 0.8rem 1.4rem; }
li { margin-bottom: 0.3rem; }

a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

.cta { font-size: 1.15rem; font-weight: 600; }

footer {
  background: #0f172a;
  color: #94a3b8;
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.9rem;
}

footer a { color: #cbd5e1; }
