/* Eve — shared minimal styles */

:root {
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --line: #e4e4e4;
  --bg: #ffffff;
  --link: #0b5cad;
  --max: 680px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); }
a:hover { text-decoration: none; }

/* ---------- Holding page (/) ---------- */
.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.home .wordmark {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.home .tagline {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 440px;
}
.home .support {
  margin: 0 0 34px;
  font-size: 16px;
}
.home .home-foot {
  font-size: 15px;
  color: var(--muted);
}
.home .home-foot a { color: var(--muted); }

/* ---------- Legal pages ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 64px;
}

.page-head {
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.page-head .home {
  display: inline;
  min-height: 0;
  padding: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--ink);
}

h1 { font-size: 30px; line-height: 1.25; margin: 0.6em 0 0.3em; }
h2 { font-size: 21px; line-height: 1.3; margin-top: 1.9em; margin-bottom: 0.4em; }

p, li { color: var(--ink); }
ul, ol { padding-left: 1.4em; }
li { margin: 0.35em 0; }

.meta { color: var(--muted); font-size: 15px; margin-top: 0; }

/* ---------- Data table ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 15.5px;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px;
  border: 1px solid var(--line);
}
th { background: #fafafa; font-weight: 600; }

/* ---------- Footer ---------- */
.foot {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}
.foot a { color: var(--muted); }

.copyright {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--muted);
}

/* ---------- Mobile: stack the table into readable cards ---------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  table, thead, tbody, th, td, tr { display: block; }
  thead { position: absolute; left: -9999px; top: -9999px; }
  tr {
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
  }
  td {
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
  }
  tr td:last-child { border-bottom: none; }
  td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--muted);
  }
}
