:root {
  /* Brand tokens — these are what Context.dev-style enrichment would surface
     during UGP onboarding (theme-color + og:image + page copy). */
  --brand-primary: #0b6e8f;
  --brand-secondary: #06384a;
  --brand-accent: #58c0a8;
  --ink: #16211d;
  --muted: #5a6b64;
  --paper: #ffffff;
  --wash: #f4f7f5;
  --line: #e2e9e5;
  --radius: 14px;
  --maxw: 1040px;
  font-family: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: var(--brand-primary); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { height: 34px; width: 34px; }
.brand b { font-size: 18px; letter-spacing: -0.01em; }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--ink); }
.btn {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--brand-secondary);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
.btn.ghost { background: transparent; color: var(--brand-primary); border: 1px solid var(--line); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
}
.hero .wrap { padding: 84px 24px 92px; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; margin: 0 0 18px; letter-spacing: -0.02em; }
.hero p { font-size: 20px; max-width: 620px; color: #d9ece5; margin: 0 0 28px; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.4); }

/* Sections */
section { padding: 72px 0; }
section.wash { background: var(--wash); }
.eyebrow { color: var(--brand-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; margin: 0 0 10px; }
h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 16px; letter-spacing: -0.01em; }
.lead { font-size: 18px; color: var(--muted); max-width: 680px; }

.grid { display: grid; gap: 24px; margin-top: 36px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .nav a:not(.btn) { display: none; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); }
.card .icon { font-size: 28px; }

/* Stats */
.stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 36px; }
.stat .num { font-size: 40px; font-weight: 800; color: var(--brand-primary); line-height: 1; }
.stat .label { color: var(--muted); margin-top: 6px; }

/* Team */
.member { text-align: center; }
.member .avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--wash); color: var(--brand-primary);
  font-weight: 800; font-size: 26px;
  border: 2px solid var(--line);
}
.member h3 { margin: 0; font-size: 17px; }
.member .role { color: var(--brand-primary); font-weight: 600; font-size: 14px; }
.member p { color: var(--muted); font-size: 14px; margin: 10px 0 0; }

/* Footer */
.site-footer { background: var(--brand-secondary); color: #cfe0d8; padding: 48px 0; font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.site-footer a { color: #fff; }
.site-footer .legal { color: #8fb0a4; max-width: 360px; }

/* Contact / generic content */
.content { padding: 72px 0; }
.dl { display: grid; grid-template-columns: 160px 1fr; gap: 12px 24px; margin-top: 24px; }
.dl dt { font-weight: 700; color: var(--ink); }
.dl dd { margin: 0; color: var(--muted); }
.note {
  margin-top: 36px; padding: 18px 22px;
  background: var(--wash); border-left: 4px solid var(--brand-accent);
  border-radius: 8px; color: var(--muted); font-size: 15px;
}
