/* adj.info — page de fermeture. Palette et typo reprises du site. */

:root {
  --bg: #1e0037;        /* primary */
  --bg-deep: #0d0217;   /* fond sombre */
  --text: #ffffff;
  --muted: #dedede;
  --accent: #99fc01;    /* vert du logo */
  --accent-2: #46fdfe;  /* cyan du logo */
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: 'Quicksand', -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-deep);
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.card {
  width: 100%;
  max-width: 620px;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 32px;
}

h1 {
  margin: 0 0 24px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 3px;
  background: var(--accent-2);
}

p {
  margin: 0 0 20px;
  color: var(--muted);
}

strong { color: var(--text); }

.signature {
  margin-top: 32px;
  font-weight: 500;
  color: var(--accent-2);
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  h1 { font-size: 1.4rem; }
}
