/* MIO — Shared Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  background: linear-gradient(160deg, #0a0a1a 0%, #111827 40%, #1a1a3e 100%);
  color: #d1d5db;
  line-height: 1.7;
}

/* ─── Navigation ─── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

nav a { text-decoration: none; }

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #e94560, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-back {
  font-size: .85rem;
  color: #6b7280;
  transition: color .2s;
}
.nav-back:hover { color: #e94560; }

/* ─── Container ─── */

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  animation: fadeUp .5s ease-out both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Document Card ─── */

.doc {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(8px);
}

/* ─── Typography ─── */

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}

.date {
  font-size: .8rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-top: 2rem;
  margin-bottom: .5rem;
}

p { margin-bottom: 1rem; font-size: .92rem; }

ul {
  margin: 0 0 1rem 1.25rem;
  font-size: .92rem;
}

li { margin-bottom: .35rem; }

a { color: #e94560; }

/* ─── Footer ─── */

footer {
  text-align: center;
  padding: 2rem;
  font-size: .75rem;
  color: #4b5563;
}

footer a {
  color: #6b7280;
  text-decoration: none;
}
footer a:hover { color: #e94560; }
