:root {
  color-scheme: light;
  --bg: #f6f8f5;
  --surface: #ffffff;
  --ink: #14213d;
  --muted: #647084;
  --line: #dbe3ea;
  --accent: #0f766e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.legal-shell {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.legal-header,
.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #1d4e89 54%, var(--accent));
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--muted);
}

.legal-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.launch-badge {
  display: inline-flex;
  flex: 0 0 auto;
}

.launch-badge img {
  display: block;
  width: min(244px, 100%);
  height: auto;
}

.free-report-link {
  min-height: 42px;
  border: 1px solid rgba(245, 184, 65, 0.5);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--ink);
  background: #f5b841;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.free-report-link:hover {
  text-decoration: none;
}

.legal-card {
  margin-top: 30px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(20, 33, 61, 0.10);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
p,
ul {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

h2 {
  margin: 28px 0 10px;
  font-size: 1.28rem;
}

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

ul {
  padding-left: 22px;
}

.updated {
  color: var(--muted);
  font-weight: 700;
}

.legal-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 700px) {
  .legal-header,
  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
