:root {
  --bg: #ecf5fb;
  --text: #132636;
  --muted: #486374;
  --line: rgba(19, 38, 54, 0.12);
  --primary: #2f7398;
  --surface: rgba(255, 255, 255, 0.92);
  --shadow: 0 14px 34px rgba(10, 32, 50, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    linear-gradient(160deg, rgba(74, 166, 188, 0.08), transparent 40%),
    linear-gradient(340deg, rgba(47, 115, 152, 0.1), transparent 45%),
    var(--bg);
}

.container {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 252, 255, 0.9);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: inherit;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand img {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.6rem;
}

main {
  padding: 2.2rem 0 3rem;
}

.hero {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 0.7rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

h2 {
  font-size: 1.2rem;
  margin-top: 1.4rem;
}

h3 {
  font-size: 1.06rem;
  margin-top: 1rem;
}

p,
li {
  color: var(--muted);
}

ul {
  margin: 0.35rem 0 0.85rem 1.1rem;
  padding: 0;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.45rem 1.55rem;
}

.legal-document {
  color: var(--muted);
}

.legal-document h2 {
  margin: 1.4rem 0 0.6rem;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: "Space Grotesk", sans-serif;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document h3 {
  margin: 1rem 0 0.35rem;
  color: #1e3a4b;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.legal-document p {
  margin: 0 0 0.75rem;
  line-height: 1.68;
}

.legal-document ul {
  margin: 0.25rem 0 0.85rem 1.05rem;
  color: var(--muted);
}

.legal-document li {
  margin: 0.2rem 0;
}



