/* Azavea Inc. static business card — navy + lime, zero dependencies. */
* { box-sizing: border-box; margin: 0; }
:root { --navy: #052234; --navy2: #0A2A3F; --lime: #C3F43B; --dim: rgba(255,255,255,0.72); --line: rgba(255,255,255,0.14); }
body {
  min-height: 100svh; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--navy2), var(--navy));
  color: #fff; font: 18px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
header { padding: 22px 24px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; font-weight: 700; letter-spacing: 0.22em; font-size: 14px; }
.brand svg { width: 28px; height: 28px; }
main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.card { max-width: 640px; width: 100%; }
h1 { font-size: clamp(30px, 5vw, 42px); line-height: 1.2; margin-bottom: 22px; text-wrap: balance; }
p { color: var(--dim); margin-bottom: 18px; }
.btn { display: inline-block; margin-top: 10px; background: var(--lime); color: #0B0B0C; font-weight: 700; font-size: 18px; padding: 15px 30px; border-radius: 12px; text-decoration: none; }
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }
h2 { font-size: 22px; margin: 28px 0 8px; }
footer { padding: 22px 24px 30px; border-top: 1px solid var(--line); text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }
footer a { color: rgba(255,255,255,0.65); margin: 0 8px; }
