:root {
  --ink: #172033;
  --muted: #687386;
  --line: #dfe5ed;
  --paper: #ffffff;
  --wash: #f4f7fb;
  --accent: #225ee8;
  --accent-dark: #1748b8;
  --rainier: #2f7d4f;
  --steilacoom: #9a3f34;
}
* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #eef5ff 0, transparent 40%),
    var(--wash);
}
.shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 32px;
}
.hero {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 6vw, 64px);
  box-shadow: 0 18px 55px rgba(28, 52, 93, .10);
}
.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--accent);
}
h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.25rem, 7vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  line-height: 1.55;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}
.button.primary {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}
.button.primary:hover { background: var(--accent-dark); }
.button.subtle { color: var(--muted); }
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}
.card h2 { margin: 14px 0 8px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }
.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}
.tag.rainier { color: var(--rainier); background: #eaf6ef; }
.tag.steilacoom { color: var(--steilacoom); background: #f9ece9; }
.note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.8);
}
code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
}
button {
  border: 0;
  border-radius: 10px;
  padding: 9px 12px;
  background: #e9eef8;
  color: var(--ink);
  font-weight: 700;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 4px 0;
  color: var(--muted);
  font-size: .9rem;
}
@media (max-width: 700px) {
  .shell { padding-top: 20px; }
  .hero { border-radius: 22px; }
  .grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .note { grid-template-columns: 1fr auto; }
  .note strong { grid-column: 1 / -1; }
}
