:root {
  --bg: #f6efe4;
  --paper: #fffdf8;
  --ink: #171417;
  --muted: #6b5c66;
  --lime: #d8ff3e;
  --sky: #7ad7ff;
  --peach: #ffc2a0;
  --violet: #8b6cff;
  --blue: #3163ff;
  --line: 3px solid var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 8px; background: var(--lime); padding: 8px 12px; border: var(--line); }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: var(--line);
  background: var(--blue);
  object-fit: cover;
}
.brand strong { display: block; font-size: 18px; letter-spacing: -0.03em; }
.brand small { color: var(--muted); font-weight: 600; }
nav { display: flex; gap: 18px; align-items: center; font-weight: 700; }
nav a { text-decoration: none; }
.btn {
  display: inline-block;
  background: var(--lime);
  border: var(--line);
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
}
.btn.ghost { background: var(--paper); }
.btn.lime { background: var(--lime); }

.hero, .roles, .legal { padding: 48px 22px; max-width: 980px; margin: 0 auto; }
.kicker {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px;
  color: var(--muted);
}
.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
.lede { font-size: 18px; max-width: 62ch; color: var(--muted); }
.lede strong { color: var(--ink); }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 22px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  border: var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 4px 4px 0 var(--ink);
  min-height: 180px;
}
.card h2 { margin: 0 0 8px; font-size: 22px; }
.card p { margin: 0; color: var(--ink); }
.card.lime { background: var(--lime); }
.card.sky { background: var(--sky); }
.card.peach { background: var(--peach); }
.card.violet { background: var(--violet); color: #fff; }
.card.violet p { color: #fff; }

.roles { background: var(--paper); border-block: var(--line); max-width: none; }
.roles h2, .legal h2 { font-size: 28px; letter-spacing: -0.03em; }
.roles ul, .roles h2 { max-width: 980px; margin-left: auto; margin-right: auto; }
.roles ul { padding: 0; list-style: none; display: grid; gap: 10px; }
.roles li {
  border: var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--bg);
}

.legal-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  border: var(--line);
  border-radius: 22px;
  padding: 22px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}
.legal-card img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: var(--line);
  background: var(--blue);
}
dl { margin: 0; display: grid; grid-template-columns: 140px 1fr; gap: 8px 16px; }
dt { color: var(--muted); font-weight: 700; font-size: 13px; }
dd { margin: 0; font-weight: 800; }

footer {
  border-top: var(--line);
  padding: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
footer p { margin: 4px 0; }

@media (max-width: 900px) {
  .grid4 { grid-template-columns: 1fr 1fr; }
  nav a:not(.btn) { display: none; }
  dl { grid-template-columns: 1fr; gap: 2px; }
  dt { margin-top: 8px; }
  .legal-card { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid4 { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
}
