:root {
  --background: #f5f9ff;
  --foreground: #07143d;
  --card: #fff;
  --card-foreground: #07143d;
  --primary: #006ad6;
  --primary-foreground: #fff;
  --secondary: #eaf0fc;
  --secondary-foreground: #07143d;
  --muted: #edf3fb;
  --muted-foreground: #68758e;
  --accent: #e0f6ee;
  --accent-foreground: #008a68;
  --border: #dde5f0;
  --input: #dde5f0;
  --ring: #0076ee;
  --radius: 1rem;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
a {
  color: var(--primary);
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 5px;
  border-radius: 4px;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1060px;
  margin: auto;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.brand img {
  width: 38px;
  height: 38px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav,
.languages {
  display: flex;
  gap: 22px;
}
nav a,
.languages a {
  font-size: 0.925rem;
  text-decoration: none;
  color: var(--muted-foreground);
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}
a[aria-current='page'] {
  color: var(--foreground);
}
.languages {
  gap: 12px;
}
.languages a[aria-current='page'] {
  color: var(--primary);
}
main {
  max-width: 790px;
  margin: 0 auto;
  padding: 56px 28px 72px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #007c5e;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  font-weight: 800;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2.15rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -1.3px;
  margin: 0 0 16px;
  font-weight: 800;
}
.intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin: 0 0 36px;
  max-width: 600px;
}
.document {
  padding: 10px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
}
.document section {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.document section:last-child {
  border-bottom: 0;
}
h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.25px;
  font-weight: 700;
}
p {
  margin: 0 0 12px;
}
section p:last-child {
  margin-bottom: 0;
}
.document p {
  color: #52617c;
}
.date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 24px;
}
.site-footer {
  max-width: 1060px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 24px 28px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
.site-footer a {
  color: var(--muted-foreground);
}
.skip {
  position: absolute;
  top: -80px;
  left: 20px;
  padding: 8px;
  background: #fff;
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
@media (max-width: 600px) {
  .header-inner {
    padding: 18px 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  main {
    padding: 36px 20px 48px;
  }
  .document {
    padding: 0 22px;
  }
  .intro {
    font-size: 1.05rem;
  }
  .site-footer {
    padding: 24px 22px;
  }
  .brand {
    font-size: 1.2rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  a {
    transition: color 0.15s ease;
  }
}
