:root {
  --primary: #1e58e8;
  --primary-deep: #1849c4;
  --ink: #0f172a;
  --muted: #64748b;
  --canvas: #f8fafc;
  --line: #e2e8f0;
  --primary-soft: #dce7fb;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink);
  background:
    radial-gradient(820px 380px at 12% -8%, rgb(30 88 232 / 0.16) 0%, transparent 58%),
    var(--canvas);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-deep);
  font-weight: 600;
  text-underline-offset: 2px;
}

.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip:focus {
  transform: none;
}

.wrap {
  width: min(100% - 32px, 720px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  display: block;
}

.header-cta {
  color: var(--primary-deep);
  font-weight: 600;
  text-decoration: none;
}

.legal {
  padding: 36px 0 48px;
}

h1 {
  margin: 0 0 12px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.effective {
  margin: 0 0 24px;
  color: var(--muted);
}

h2,
#cookies {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

p,
li {
  margin: 0 0 12px;
  color: var(--ink);
}

ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 6px;
}

.legal-caps {
  font-size: 0.95rem;
}

.tbd {
  display: inline;
  padding: 0.05em 0.4em;
  border-radius: 4px;
  background: rgb(30 88 232 / 0.1);
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  padding: 0 0 48px;
  color: var(--muted);
  font-size: 0.92rem;
}

.role-strip {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.platform-role,
.platform-role-inline {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 12px;
}

.footer-legal a {
  color: var(--ink);
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--primary-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact {
  margin: 0;
  font-size: 0.82rem;
}

.header-cta:focus-visible,
.brand:focus-visible,
.skip:focus,
.legal a:focus-visible,
.footer-legal a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
