/* Ownship static template — clean, readable defaults the agent restyles per the plan. */
:root {
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --paper: #ffffff;
  --accent: #2e7d5b;
  --border: #00000014;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

.site-header,
.site-footer,
main {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
}

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.site-header h1 {
  font-size: 1.25rem;
  margin: 0;
}

.hero h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 2rem 0 0.75rem;
}

.hero p {
  color: var(--ink-soft);
  max-width: 38rem;
}

a {
  color: var(--accent);
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 7px;
  padding: 0.6rem 1.1rem;
  text-decoration: none;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.875rem;
}
