* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f8fc;
  color: #121c2f;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

a {
  color: #714b67;
}

.container {
  width: min(980px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f5;
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #121c2f;
  font-size: 1.02rem;
  font-weight: 800;
}

.brand img {
  height: 30px;
  width: auto;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  flex-wrap: wrap;
}

.top-actions a {
  color: #3b4b69;
  font-weight: 800;
  text-decoration: none;
}

.top-actions a:hover {
  color: #714b67;
}

.hero {
  padding: 1.2rem 0 0.7rem;
}

.eyebrow {
  margin: 0;
  color: #714b67;
  font-weight: 700;
  font-size: 0.9rem;
}

h1 {
  margin: 0.35rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 0.95;
  font-weight: 400;
}

.lead {
  margin: 0.8rem 0 0;
  color: #627089;
  max-width: 72ch;
}

.meta {
  margin: 0.55rem 0 0;
  color: #3f5577;
  font-size: 0.95rem;
}

.legal-content {
  padding: 0.2rem 0 1.5rem;
}

section {
  margin-bottom: 1rem;
}

h2 {
  margin: 1rem 0 0.2rem;
  font-size: 1.18rem;
}

p {
  margin: 0.45rem 0;
}

ul {
  margin: 0.35rem 0 0.28rem 1.2rem;
  padding: 0;
}

.footer {
  border-top: 1px solid #e2e8f5;
  background: #fff;
}

.footer-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 720px) {
  .container {
    width: min(980px, calc(100% - 1rem));
  }

  .topbar-inner {
    min-height: 60px;
  }
}
