:root {
  --ink: #1a2733;
  --ink-soft: #4a5a68;
  --bg: #ffffff;
  --bg-alt: #f4f6f8;
  --accent: #0a5f6b;
  --accent-soft: #e4eeee;
  --border: #dfe4e8;
  --max-width: 780px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

header.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

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

.site-header .title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.site-header nav a {
  margin-left: 1.25rem;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink-soft);
}

.site-header nav a:hover {
  color: var(--accent);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.hero {
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
}

.hero p.tagline {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0;
}

section {
  margin-bottom: 2.75rem;
}

h2 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--accent-soft);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.meta {
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
}

ol.steps {
  padding-left: 1.25rem;
}

ol.steps li {
  margin-bottom: 0.85rem;
}

table.datasets {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

table.datasets th,
table.datasets td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

table.datasets th {
  background: var(--bg-alt);
  font-weight: 600;
}

.placeholder {
  color: var(--ink-soft);
  font-style: italic;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}

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

.button:hover {
  background: #084d57;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

footer.site-footer .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

footer.site-footer a {
  color: var(--ink-soft);
}
