:root {
  --bg-blue: #06162b;
  --bg-blue-2: #0a2550;
  --card: #ffffff;
  --text: #0e0e12;
  --muted: #4a4f5a;
  --border: #e3e6ee;
  --shadow: rgba(6, 22, 43, 0.18);
}

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

body {
  font-family: "Source Serif 4", "Georgia", serif;
  background: radial-gradient(1200px 600px at 10% 0%, #0c2a59 0%, var(--bg-blue) 45%, #050b18 100%);
  color: var(--text);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 1.25rem 3rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e8eefc;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-weight: 600;
}

.logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.logo span {
  font-size: 1.05rem;
}

.card {
  width: min(980px, 92vw);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 30px 90px var(--shadow);
  padding: 2.25rem clamp(1.5rem, 3vw, 3rem) 2.75rem;
  max-height: 72vh;
  overflow: auto;
  scroll-behavior: smooth;
}

.card h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.65rem;
}

.card .meta {
  color: var(--muted);
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  letter-spacing: 0.01em;
  margin-bottom: 1.75rem;
}

.card h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  margin: 1.75rem 0 0.5rem;
}

.card p {
  margin: 0.5rem 0 0.85rem;
  line-height: 1.6;
}

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

.card li {
  margin: 0.4rem 0;
  line-height: 1.5;
}

.card strong {
  font-weight: 700;
}

.footer-note {
  color: #dbe6ff;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
}

.footer-note a {
  color: #00e5ff;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .card {
    max-height: none;
  }

  .logo img {
    width: 46px;
    height: 46px;
  }
}
