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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  background: radial-gradient(1200px 640px at 20% 8%, #1c2342 0%, #0d1020 48%, #080a12 100%);
  color: #f4f6ff;
}

.shell {
  width: min(960px, 92%);
  margin: 0 auto;
  padding: 28px 0 36px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brand {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 800;
  background: linear-gradient(130deg, #ffe2b1, #f4ab42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.back-link {
  color: #f4ab42;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  border: 1px solid rgba(243, 168, 74, 0.35);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(243, 168, 74, 0.08);
  transition: background 0.2s ease;
}

.back-link:hover {
  background: rgba(243, 168, 74, 0.16);
}

.card {
  background: rgba(12, 15, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
}

.effective {
  margin: 8px 0 20px;
  color: #9daecc;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h2 {
  margin: 22px 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f4ab42;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

p,
li {
  color: #c8d2ed;
  line-height: 1.6;
  font-size: 0.88rem;
}

ul {
  margin: 0;
  padding-left: 18px;
}

a {
  color: #f4ab42;
}

.legal-nav {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: #b0bcd8;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, color 0.2s ease;
}

.legal-nav a:hover {
  color: #f4f6ff;
  background: rgba(255, 255, 255, 0.1);
}

.note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #9aabcc;
  font-style: italic;
}

