:root {
  color-scheme: light;
  --bg: #eef3f7;
  --ink: #101827;
  --muted: #566173;
  --line: #d8e0ea;
  --surface: rgba(255, 255, 255, 0.92);
  --dark: #111827;
  --accent: #0f766e;
  --warn: #b45309;
  --radius: 8px;
  --max: 920px;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.65;
  margin: 0;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

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

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

h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
}

h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.header,
.footer {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 2;
}

.nav,
.footer-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 16px 22px;
}

.brand,
.button {
  text-decoration: none;
}

.brand {
  font-weight: 800;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.link-button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button {
  background: var(--dark);
  border: 1px solid var(--dark);
  border-radius: var(--radius);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  min-height: 42px;
  padding: 9px 14px;
}

.main {
  margin: 0 auto;
  max-width: var(--max);
  padding: 74px 22px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.lede {
  font-size: 18px;
  max-width: 760px;
}

.stack {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  min-width: 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 80px rgba(15, 23, 42, 0.08);
  min-width: 0;
  padding: 24px;
}

.warning {
  border-left: 4px solid var(--warn);
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

th,
td {
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 14px;
}

ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.footer {
  border-top: 1px solid var(--line);
}

.footer p {
  margin-bottom: 0;
}

.cookie-banner {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  bottom: 18px;
  box-shadow: 0 28px 100px rgba(2, 6, 23, 0.22);
  display: none;
  gap: 18px;
  left: 18px;
  max-width: 720px;
  padding: 20px;
  position: fixed;
  right: 18px;
  z-index: 4;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner h2 {
  font-size: 20px;
  margin-bottom: 0;
}

.cookie-banner p {
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 8px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  cursor: pointer;
  flex: 1 1 160px;
  justify-content: center;
}

@media (max-width: 680px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .main {
    padding-top: 48px;
  }

  .card {
    padding: 18px;
  }

  .cookie-banner {
    bottom: 10px;
    left: 10px;
    padding: 16px;
    right: 10px;
  }
}
