/* Stiluri comune pentru paginile legale statice (politică, termeni).
   Tokenii sunt copiați din @theme-ul aplicației — paginile astea sunt HTML
   simplu, servit direct de Vercel, deci nu trec prin build-ul Tailwind. */

:root {
  --void: #0a0a0f;
  --ink: #10101a;
  --electric: #4d6bff;
  --paper: #ededf2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--void);
  color: rgb(237 237 242 / 0.72);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.back {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--electric);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
}

.back:hover {
  text-decoration: underline;
}

h1 {
  margin: 0 0 0.75rem;
  color: var(--paper);
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  margin: 3rem 0 1rem;
  color: var(--paper);
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.updated {
  margin: 0 0 3rem;
  color: rgb(237 237 242 / 0.35);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.5rem;
}

strong {
  color: rgb(237 237 242 / 0.92);
  font-weight: 600;
}

a {
  color: var(--electric);
}

/* Tabelul de destinatari; scrollabil pe ecrane mici ca pagina să nu iasă lateral */
.table-scroll {
  overflow-x: auto;
  margin: 0 0 1rem;
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgb(237 237 242 / 0.1);
  text-align: left;
  vertical-align: top;
}

th {
  color: rgb(237 237 242 / 0.5);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card {
  margin: 0 0 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgb(237 237 242 / 0.12);
  border-radius: 12px;
  background: var(--ink);
}

.card p:last-child {
  margin-bottom: 0;
}

footer.legal-foot {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(237 237 242 / 0.1);
  color: rgb(237 237 242 / 0.3);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
