/* Yumlate legal pages — minimal static hosting */
:root {
  --navy: #0a192f;
  --surface: #112240;
  --coral: #ff5f3d;
  --text: #ccd6f6;
  --muted: #8b9bb4;
  --white: #fff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(165deg, #0a192f 0%, #132f4c 50%, #0a192f 100%);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: var(--coral); }
header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.brand img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}
nav a {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  margin-right: 0.85rem;
  text-decoration: none;
}
nav a:hover { text-decoration: underline; }
main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
h1 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.meta {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
h2 {
  color: var(--white);
  font-size: 1.25rem;
  margin-top: 2rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th, td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0.65rem;
  text-align: left;
  vertical-align: top;
}
th { background: var(--surface); color: var(--white); }
footer {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.draft {
  font-family: system-ui, sans-serif;
  background: var(--surface);
  border-left: 3px solid var(--coral);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
