/*
 * Shared by the legal and contact pages. The landing page keeps its own inline
 * CSS: it is one long-scrolling composition and nothing else reuses it, whereas
 * these four pages are the same document over and over and would otherwise be
 * four copies of the same rules.
 *
 * Tokens match apps/landing/src/index.html so the pages read as one product.
 */
:root {
  --paper: #f2f5f2;
  --surface: #ffffff;
  --ink: #1c2b28;
  --ink-2: #41544f;
  --muted: #697b76;
  --line: #dce4df;
  --line-soft: #e7ede9;
  --teal: #0f6e62;
  --teal-deep: #0b554c;
  --teal-soft: #e1efeb;
  --mint: #8fd6c9;
  --dark-1: #0b1815;
  --sage: #9ab3ac;
  --display: 'Bricolage Grotesque', sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover {
  color: var(--teal);
}
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* header ------------------------------------------------------------------ */
.top {
  background: var(--dark-1);
  padding: 18px 0;
}
.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #f4f8f6;
  text-decoration: none;
}
.wordmark .mark {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--teal), #15857a);
  color: #eaf4f1;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* document ---------------------------------------------------------------- */
main {
  padding: 56px 0 88px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.024em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 34px;
}
h2 {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  margin: 38px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 22px 0 8px;
}
p {
  margin-bottom: 14px;
  color: var(--ink-2);
}
ul {
  margin: 0 0 16px 20px;
  color: var(--ink-2);
}
li {
  margin-bottom: 7px;
}
strong {
  color: var(--ink);
  font-weight: 600;
}
.lede {
  font-size: 1.06rem;
  color: var(--ink-2);
  margin-bottom: 8px;
}

/* the company identity block, repeated on every page */
.entity {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 6px 0 20px;
  font-size: 0.97rem;
  line-height: 1.7;
}
.entity strong {
  display: block;
  font-size: 1rem;
}

.note {
  background: var(--teal-soft);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.95rem;
  color: var(--teal-deep);
  margin: 4px 0 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 4px 0 20px;
  font-size: 0.94rem;
}
th,
td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
th {
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
}
td {
  color: var(--ink-2);
}

/* footer ------------------------------------------------------------------ */
footer {
  background: var(--dark-1);
  color: #7e948e;
  padding: 34px 0 44px;
  font-size: 0.87rem;
}
footer .wrap {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
footer a {
  color: #9fb5af;
}
footer a:hover {
  color: #dceae5;
}
footer nav {
  margin-left: auto;
  display: flex;
  gap: 20px;
}
@media (max-width: 620px) {
  footer nav {
    margin-left: 0;
  }
}
