@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-latin-ext-vf.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-latin-vf.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-latin-ext-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-latin-ext-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --paper: #f3efe6;
  --paper-deep: #e8e2d8;
  --ink: #101820;
  --muted: #56616b;
  --cobalt: #101820;
  --cobalt-hover: #2a333a;
  --cobalt-pressed: #05090c;
  --wash: #ded5c8;
  --sand-deep: #75624d;
  --vermillion: #7a4938;
  --green: #006b58;
  --line: #c6c4be;
  --control: #7b7c79;
  --duration-fast: 120ms;
  --duration-medium: 220ms;
  --duration-slow: 420ms;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --header-height: 60px;
  --gutter: 16px;
  --content-width: 1248px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 720;
  letter-spacing: -.04em;
  line-height: .98;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--paper);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.wrap {
  width: min(100% - (2 * var(--gutter)), var(--content-width));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.folio {
  margin-bottom: 0;
  color: var(--sand-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--cobalt);
  border-radius: 4px;
  background: var(--cobalt);
  color: #fff;
  font-weight: 680;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color var(--duration-fast) linear,
    border-color var(--duration-fast) linear,
    transform var(--duration-medium) var(--ease);
}

.button:active {
  border-color: var(--cobalt-pressed);
  background: var(--cobalt-pressed);
  transform: translateY(0);
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-weight: 620;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  transition: color var(--duration-fast) linear, text-decoration-color var(--duration-fast) linear;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.header-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-brand {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.header-brand .brand {
  min-height: 0;
}

.brand-tagline {
  margin-top: 2px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 0;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 143px;
  height: auto;
  max-width: 100%;
}

.brand-name {
  display: none;
}

.desktop-nav,
.desktop-actions {
  display: none;
}

.compact-navigation {
  height: 44px;
}

.compact-navigation > summary {
  display: flex;
  min-width: 84px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-weight: 680;
}

.menu-lines {
  position: relative;
  width: 22px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: border-color var(--duration-fast) linear;
}

.menu-lines::before,
.menu-lines::after {
  transition: transform var(--duration-fast) var(--ease);
}

.menu-lines::after {
  position: absolute;
  top: 5px;
  right: 0;
  width: 14px;
  border-top: 2px solid currentColor;
  content: "";
}

.compact-navigation[open] .menu-lines {
  border-color: transparent;
}

.compact-navigation[open] .menu-lines::before,
.compact-navigation[open] .menu-lines::after {
  position: absolute;
  top: 5px;
  right: 0;
  width: 20px;
  border-top: 2px solid currentColor;
  content: "";
}

.compact-navigation[open] .menu-lines::before {
  transform: rotate(45deg);
}

.compact-navigation[open] .menu-lines::after {
  transform: rotate(-45deg);
}

.compact-panel {
  position: fixed;
  z-index: 101;
  top: var(--header-height);
  right: 0;
  width: 100%;
  max-height: calc(100dvh - var(--header-height));
  padding: 20px var(--gutter) max(24px, env(safe-area-inset-bottom));
  overflow-y: auto;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.compact-nav ul,
.footer-links ul,
.language-panel ul,
.comparison-sources,
.legal-toc ol,
.language-landing-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.compact-nav li {
  border-top: 1px solid var(--line);
}

.compact-nav li:last-child {
  border-bottom: 1px solid var(--line);
}

.compact-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 650;
  text-decoration: none;
  transition: color var(--duration-fast) linear, transform var(--duration-medium) var(--ease);
}

.compact-nav a[aria-current="page"] {
  color: var(--cobalt);
}

.compact-login,
.compact-register {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

.compact-login {
  text-decoration-color: currentColor;
  text-underline-offset: .18em;
}

.language-switcher {
  position: relative;
}

.language-switcher > summary {
  display: flex;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  gap: 9px;
}

.language-switcher-header > summary {
  justify-content: center;
  padding-inline: 7px;
}

.language-summary-name {
  display: none;
  font-weight: 650;
}

.language-current,
.language-option-code,
.language-panel-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.language-chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--duration-fast) var(--ease);
}

details[open] > summary .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-flag {
  display: inline-block;
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  border-radius: 0;
  background-color: #fff;
}

.flag-fr {
  background: linear-gradient(to right, #0055a4 0 33.333%, #fff 33.333% 66.666%, #ef4135 66.666%);
}

.flag-en {
  background:
    linear-gradient(27deg, transparent 43%, #fff 43% 48%, #c8102e 48% 52%, #fff 52% 57%, transparent 57%),
    linear-gradient(153deg, transparent 43%, #fff 43% 48%, #c8102e 48% 52%, #fff 52% 57%, transparent 57%),
    linear-gradient(to right, transparent 42%, #fff 42% 46%, #c8102e 46% 54%, #fff 54% 58%, transparent 58%),
    linear-gradient(to bottom, transparent 36%, #fff 36% 42%, #c8102e 42% 58%, #fff 58% 64%, transparent 64%),
    #012169;
}

.flag-es {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.flag-de {
  background: linear-gradient(to bottom, #000 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666%);
}

.flag-nl {
  background: linear-gradient(to bottom, #ae1c28 0 33.333%, #fff 33.333% 66.666%, #21468b 66.666%);
}

.language-panel {
  position: absolute;
  z-index: 110;
  top: calc(100% + 8px);
  right: 0;
  width: 224px;
  padding: 8px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(16, 24, 32, .12);
}

.language-panel-label {
  padding: 8px 8px 10px;
  margin-bottom: 0;
  color: var(--muted);
  text-transform: uppercase;
}

.language-option {
  display: grid;
  min-height: 44px;
  align-items: center;
  padding: 7px 8px;
  grid-template-columns: 24px minmax(0, 1fr) 28px 16px;
  gap: 9px;
  border-radius: 4px;
  text-decoration: none;
}

.language-option-code {
  color: var(--muted);
}

.language-check {
  color: var(--green);
  font-weight: 800;
}

.language-switcher-compact {
  border-bottom: 1px solid var(--line);
}

.language-switcher-compact > summary {
  min-height: 56px;
  justify-content: flex-start;
}

.language-switcher-compact .language-summary-name {
  display: inline;
  margin-right: auto;
}

.language-switcher-compact .language-panel {
  position: static;
  width: 100%;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.language-switcher-compact .language-panel-label {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  border-bottom: 1px solid var(--ink);
}

.hero-cut {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
  background: var(--ink);
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  padding-block: 44px 52px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
}

.hero h1 {
  max-width: 8ch;
  margin-top: 20px;
  font-size: clamp(2.875rem, 14.5vw, 3.875rem);
  font-weight: 760;
  letter-spacing: -.06em;
  line-height: .89;
  grid-column: 1 / -1;
}

.hero h1 span {
  display: block;
}

.hero-price {
  min-width: 0;
  margin-top: 28px;
  grid-column: 1 / -1;
}

.hero-price p,
.hero-commitment {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.hero-price p {
  display: flex;
  margin-bottom: 4px;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: .32em;
  row-gap: 3px;
  font-size: clamp(1.72rem, 8.6vw, 2.35rem);
}

.hero-commitment {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.52rem, 7.6vw, 2.07rem);
}

.hero-price-amount,
.hero-price-prefix,
.hero-price-terms,
.hero-price-cadence {
  white-space: nowrap;
}

.hero-price-amount {
  color: var(--cobalt);
}

.hero-price-terms,
.hero-price-prefix,
.hero-price-cadence {
  font-size: .76em;
  letter-spacing: -.035em;
}

.hero-tax {
  display: block;
  max-width: 34ch;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 560;
  line-height: 1.45;
}

.hero-decision {
  min-width: 0;
  margin-top: 28px;
  grid-column: 1 / -1;
}

.hero-actions {
  display: flex;
  margin-top: 0;
  flex-direction: column;
  gap: 4px;
}

.hero-actions .button,
.comparison-link {
  width: 100%;
}

.comparison-link {
  justify-content: center;
  text-decoration-color: currentColor;
}

/* Comparison */
.comparison-section {
  padding-block: 72px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper-deep);
}

.comparison-intro {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
}

.comparison-heading,
.comparison-note {
  grid-column: 1 / -1;
}

.comparison-heading h2 {
  max-width: 11ch;
  margin-top: 0;
  font-size: clamp(2.4rem, 11vw, 3.75rem);
}

.comparison-positioning {
  max-width: 36ch;
  margin: 22px 0 0;
  font-size: clamp(1.125rem, 4.8vw, 1.375rem);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.3;
}

.comparison-note {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--muted);
}

.comparison-note time {
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: .9em;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-desktop {
  display: none;
}

.comparison-mobile {
  margin-top: 48px;
}

.criterion-group {
  border-top: 1px solid var(--ink);
}

.criterion-group:last-child {
  border-bottom: 1px solid var(--ink);
}

.criterion-group > header {
  display: grid;
  padding-block: 18px;
  align-items: start;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px;
}

.criterion-number {
  color: var(--sand-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.5;
}

.criterion-group h3 {
  font-size: 1.18rem;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.criterion-group dl {
  margin-bottom: 18px;
}

.criterion-provider {
  display: grid;
  min-width: 0;
  padding: 13px 12px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
}

.criterion-provider.is-primary {
  padding-left: 13px;
  border-left: 3px solid var(--sand-deep);
  background: var(--wash);
}

.criterion-provider dt,
.criterion-provider dd {
  min-width: 0;
  margin: 0;
}

.criterion-provider dt {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: .86rem;
  font-weight: 680;
}

.criterion-provider dt small {
  color: var(--muted);
  font-size: .8125rem;
  font-weight: 500;
}

.criterion-provider dd {
  font-size: .94rem;
  line-height: 1.4;
}

.provider-value strong,
.criterion-provider dd strong {
  display: block;
  font-weight: 690;
}

.provider-value small,
.criterion-provider dd small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .8125rem;
  line-height: 1.35;
}

.comparison-sources {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 6px 24px;
}

.comparison-decision {
  display: flex;
  margin-top: 36px;
}

.comparison-decision .button {
  width: 100%;
}

.comparison-sources a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--cobalt);
  font-size: .88rem;
  font-weight: 620;
  text-decoration-line: underline;
}

/* Colophon footer */
.site-footer {
  padding-block: 48px 28px;
  border-top: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
}

.site-footer a,
.site-footer summary {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
}

.footer-brand,
.footer-links,
.footer-language,
.footer-meta {
  grid-column: 1 / -1;
}

.footer-brand p {
  max-width: 30ch;
  margin: 12px 0 24px;
  color: var(--muted);
}

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

.footer-links li {
  border-bottom: 1px solid var(--line);
}

.footer-links a {
  display: flex;
  min-height: 48px;
  position: relative;
  align-items: center;
  font-weight: 590;
  text-decoration: none;
  transition: color var(--duration-fast) linear, transform var(--duration-medium) var(--ease);
}

.footer-links a[aria-current="page"] {
  color: var(--cobalt);
}

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

.language-switcher-footer > summary {
  min-height: 52px;
}

.language-switcher-footer .language-summary-name {
  display: inline;
  margin-right: auto;
}

.language-switcher-footer .language-panel {
  position: static;
  width: 100%;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.language-switcher-footer .language-panel-label {
  display: none;
}

.footer-meta {
  padding-top: 24px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  line-height: 1.7;
}

.footer-meta span {
  color: var(--muted);
}

/* Legal documents */
.legal-masthead {
  display: grid;
  padding-block: 64px 56px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
}

.legal-masthead .folio,
.legal-masthead h1,
.legal-lead {
  grid-column: 1 / -1;
}

.legal-masthead h1 {
  max-width: 13ch;
  margin-top: 20px;
  font-size: clamp(2.65rem, 12vw, 4.5rem);
  letter-spacing: -.055em;
}

.legal-lead {
  max-width: 64ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-lead time {
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: .9em;
  font-weight: 600;
  white-space: nowrap;
}

.legal-layout {
  display: grid;
  padding-bottom: 88px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
}

.legal-toc-compact,
.legal-document {
  grid-column: 1 / -1;
}

.legal-toc-desktop {
  display: none;
}

.legal-toc-compact {
  margin-bottom: 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.legal-toc-compact > summary {
  display: flex;
  min-height: 56px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font-weight: 690;
}

.legal-toc ol {
  padding-bottom: 12px;
}

.legal-toc a {
  display: grid;
  min-height: 44px;
  align-items: center;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 590;
  line-height: 1.3;
  text-decoration: none;
}

.legal-toc a span {
  color: var(--sand-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: .7rem;
  font-weight: 600;
}

.legal-document {
  width: 100%;
  max-width: 64ch;
}

.legal-section {
  display: grid;
  padding-block: 36px;
  border-top: 1px solid var(--ink);
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
}

.legal-document > .legal-section:first-child {
  border-top: 0;
}

.legal-number {
  padding-top: 4px;
  color: var(--sand-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  font-weight: 600;
}

.legal-section h2 {
  font-size: clamp(1.55rem, 7vw, 2rem);
  letter-spacing: -.035em;
  line-height: 1.1;
}

.legal-section p {
  margin: 18px 0 0;
  color: var(--muted);
}

.legal-notice {
  padding: 20px 20px 20px 22px;
  margin-top: 36px;
  border-left: 3px solid var(--sand-deep);
  border-radius: 0;
  background: var(--wash);
  color: var(--muted);
}

.legal-notice strong {
  color: var(--ink);
}

.legal-related {
  padding-top: 30px;
  margin: 0;
  border-top: 1px solid var(--line);
  margin-top: 36px;
  color: var(--muted);
}

.legal-related a {
  color: var(--cobalt);
  font-weight: 620;
}

/* Language landing */
.language-landing {
  min-height: 100svh;
}

.language-landing-header {
  height: 60px;
  border-bottom: 1px solid var(--ink);
}

.language-landing-header .wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-static {
  cursor: default;
}

.language-landing-main {
  display: grid;
  padding-block: 56px 72px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
}

.language-landing-copy,
.language-landing-list {
  grid-column: 1 / -1;
}

.language-landing-copy h1 {
  max-width: 9ch;
  margin-top: 20px;
  font-size: clamp(3rem, 14vw, 5rem);
  letter-spacing: -.06em;
}

.language-landing-copy > p:not(.folio) {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--muted);
}

.language-landing-list {
  margin-top: 44px;
  border-top: 1px solid var(--ink);
}

.language-landing-list li {
  border-bottom: 1px solid var(--ink);
}

.language-landing-list a {
  display: grid;
  min-height: 64px;
  align-items: center;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  gap: 8px;
  text-decoration: none;
}

.language-landing-list a > span:first-child {
  color: var(--sand-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  font-weight: 600;
}

.language-landing-list strong {
  font-size: 1.1rem;
}

.language-arrow {
  color: var(--sand-deep);
  font-size: 1.1rem;
}

@media (max-width: 479px) {
  .brand-tagline {
    display: none;
  }
}

@media (min-width: 480px) {
  .criterion-provider {
    align-items: start;
    grid-template-columns: minmax(120px, 2fr) minmax(0, 3fr);
    gap: 16px;
  }

  .criterion-provider dd {
    text-align: left;
  }

  .comparison-decision .button {
    width: auto;
  }

}

@media (min-width: 700px) {
  :root {
    --gutter: 32px;
  }

  .compact-panel {
    width: min(400px, 100%);
    border-left: 1px solid var(--ink);
  }

  .hero-grid,
  .comparison-intro,
  .footer-grid,
  .legal-masthead,
  .legal-layout,
  .language-landing-main {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    column-gap: 20px;
  }

  .hero-grid {
    padding-block: 64px 72px;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: clamp(4.5rem, 10vw, 6.5rem);
    grid-column: 1 / 6;
  }

  .hero-price {
    align-self: end;
    margin-top: 32px;
    grid-column: 4 / -1;
  }

  .hero-price p {
    font-size: clamp(2rem, 4.7vw, 3rem);
  }

  .hero-commitment {
    font-size: clamp(1.76rem, 4.14vw, 2.64rem);
  }

  .hero-decision {
    display: grid;
    margin-top: 38px;
    align-items: start;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    column-gap: 20px;
  }

  .hero-actions {
    margin-top: 0;
    grid-column: 6 / -1;
  }

  .comparison-section {
    padding-block: 88px;
  }

  .comparison-heading {
    grid-column: 1 / 6;
  }

  .comparison-note {
    align-self: end;
    margin-bottom: 2px;
    grid-column: 6 / -1;
  }

  .criterion-group > header {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .criterion-provider {
    grid-template-columns: minmax(0, 3fr) minmax(0, 5fr);
  }

  .footer-brand {
    grid-column: 1 / 4;
  }

  .footer-links {
    border-top: 0;
    grid-column: 4 / 7;
  }

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

  .footer-language {
    margin-top: 0;
    border-top: 1px solid var(--line);
    grid-column: 7 / -1;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }

  .legal-masthead .folio,
  .legal-masthead h1,
  .legal-lead {
    grid-column: 2 / 8;
  }

  .legal-toc-compact {
    grid-column: 2 / 8;
  }

  .legal-document {
    grid-column: 2 / 8;
  }

  .language-landing-copy {
    grid-column: 1 / 5;
  }

  .language-landing-list {
    margin-top: 0;
    grid-column: 5 / -1;
  }
}

@media (min-width: 1100px) {
  :root {
    --header-height: 68px;
    --gutter: 40px;
  }

  .header-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(24px, 3vw, 48px);
  }

  .header-brand {
    justify-self: start;
  }

  .desktop-nav {
    display: block;
    min-width: 0;
    margin-left: 0;
    justify-self: center;
  }

  .desktop-nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: clamp(12px, 1.6vw, 24px);
    list-style: none;
  }

  .desktop-nav a {
    position: relative;
    display: flex;
    min-height: 44px;
    align-items: center;
    font-size: .88rem;
    font-weight: 590;
    text-decoration: none;
    transition: color var(--duration-fast) linear;
    white-space: nowrap;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    background: var(--vermillion);
    content: "";
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--duration-medium) var(--ease);
  }

  .desktop-nav a[aria-current="page"] {
    color: var(--cobalt);
  }

  .desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .desktop-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    justify-self: end;
  }

  .desktop-actions > .text-action {
    font-size: .88rem;
  }

  .button-header {
    min-height: 44px;
    padding: 8px 14px;
    font-size: .84rem;
    white-space: nowrap;
  }

  .compact-navigation {
    display: none;
  }

  .hero-cut {
    width: min(12vw, 160px);
  }

  .hero-grid,
  .comparison-intro,
  .footer-grid,
  .legal-masthead,
  .legal-layout,
  .language-landing-main {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
  }

  .hero-grid {
    padding-block: 70px 78px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(5.8rem, 8vw, 7.5rem);
    grid-column: 1 / 7;
  }

  .hero-price {
    padding-right: 22px;
    align-self: center;
    grid-column: 7 / -1;
  }

  .hero-price p {
    font-size: clamp(2.25rem, 3.3vw, 3.25rem);
  }

  .hero-commitment {
    font-size: clamp(1.98rem, 2.9vw, 2.86rem);
  }

  .hero-decision {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    grid-column: 7 / -1;
  }

  .hero-actions .button,
  .comparison-link {
    width: auto;
  }

  .comparison-section {
    padding-block: 112px;
  }

  .comparison-heading {
    grid-column: 1 / 8;
  }

  .comparison-heading h2 {
    font-size: clamp(3.75rem, 5vw, 5rem);
  }

  .comparison-note {
    grid-column: 9 / -1;
  }

  .comparison-mobile {
    display: none;
  }

  .comparison-desktop {
    display: block;
    margin-top: 56px;
  }

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

  .comparison-desktop caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .comparison-desktop th,
  .comparison-desktop td {
    min-width: 0;
    padding: 17px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    font-size: .875rem;
    line-height: 1.42;
    transition: background-color var(--duration-medium) linear;
  }

  .comparison-desktop thead th {
    border-top: 1px solid var(--ink);
    border-bottom-color: var(--ink);
    text-align: left;
  }

  .comparison-desktop .criterion-heading,
  .comparison-desktop tbody th {
    width: 21%;
  }

  .comparison-desktop tbody th {
    color: var(--muted);
    font-weight: 620;
    text-align: left;
  }

  .provider-heading span,
  .provider-heading small {
    display: block;
  }

  .provider-heading span {
    font-size: 1.02rem;
    font-weight: 720;
  }

  .provider-heading small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .8125rem;
    font-weight: 500;
  }

  .comparison-desktop .is-primary {
    background: var(--wash);
  }

  .comparison-desktop thead .is-primary {
    border-top: 3px solid var(--sand-deep);
  }

  .footer-brand {
    grid-column: 1 / 5;
  }

  .footer-links {
    grid-column: 6 / 9;
  }

  .footer-language {
    grid-column: 10 / -1;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }

  .language-switcher-footer .language-panel {
    position: absolute;
    top: auto;
    right: 0;
    bottom: calc(100% + 8px);
    width: 224px;
    padding: 8px;
    border: 1px solid var(--ink);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(16, 24, 32, .12);
  }

  .language-switcher-footer .language-panel-label {
    display: block;
  }

  .legal-masthead {
    padding-block: 84px 72px;
  }

  .legal-masthead .folio {
    grid-column: 1 / 4;
  }

  .legal-masthead h1,
  .legal-lead {
    grid-column: 4 / 11;
  }

  .legal-masthead h1 {
    margin-top: 0;
    font-size: clamp(4.4rem, 5.6vw, 5.8rem);
  }

  .legal-layout {
    padding-bottom: 120px;
  }

  .legal-toc-compact {
    display: none;
  }

  .legal-toc-desktop {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    display: block;
    align-self: start;
    grid-column: 1 / 4;
  }

  .legal-toc-desktop > p {
    padding-bottom: 14px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--ink);
    font-family: "IBM Plex Mono", monospace;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .legal-document {
    max-width: 64ch;
    grid-column: 4 / 11;
  }

  .legal-section {
    padding-block: 44px;
    border-top: 1px solid var(--ink);
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .language-landing-main {
    min-height: calc(100svh - 60px);
    padding-block: 96px;
    align-items: start;
  }

  .language-landing-copy {
    grid-column: 1 / 7;
  }

  .language-landing-list {
    grid-column: 8 / -1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    border-color: var(--cobalt-hover);
    background: var(--cobalt-hover);
    transform: translateY(-1px);
  }

  .text-action:hover,
  .desktop-nav a:hover {
    color: var(--vermillion);
    text-decoration-color: currentColor;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .language-switcher-header > summary:hover,
  .language-switcher-footer > summary:hover {
    color: var(--vermillion);
  }

  .language-option:hover {
    background: var(--wash);
  }

  .compact-nav a:hover {
    color: var(--vermillion);
    transform: translateX(4px);
  }

  .legal-toc a:hover,
  .language-landing-list a:hover {
    color: var(--cobalt);
  }

  .footer-links a:hover {
    color: var(--vermillion);
    transform: translateX(4px);
  }

  .site-footer .language-option:hover {
    background: var(--wash);
    color: var(--ink);
  }

  .comparison-desktop tbody tr:hover > *:not(.is-primary) {
    background: var(--paper-deep);
  }

}

@media (prefers-reduced-motion: no-preference) {
  .hero-cut {
    animation: hero-cut-reveal var(--duration-slow) var(--ease) both;
    transform-origin: right center;
  }

  .language-switcher[open] > .language-panel,
  .compact-navigation[open] > .compact-panel {
    animation: disclosure-in var(--duration-medium) var(--ease) both;
  }
}

@keyframes hero-cut-reveal {
  from {
    opacity: .4;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes disclosure-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (forced-colors: active) {
  .hero-cut,
  .brand-logo {
    display: none;
  }

  .brand-name {
    display: inline;
    color: CanvasText;
    font-size: 1.03rem;
    font-weight: 760;
    letter-spacing: -.03em;
  }

  .button,
  .criterion-provider.is-primary,
  .comparison-desktop .is-primary,
  .legal-notice {
    border: 2px solid ButtonText;
    background: Canvas;
    color: CanvasText;
  }

  .language-flag {
    border: 1px solid CanvasText;
  }

  .language-check,
  .folio,
  .criterion-number,
  .legal-number {
    color: CanvasText;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .legal-masthead,
  .legal-layout {
    display: block;
    width: 100%;
    padding: 0;
  }

  .legal-document {
    max-width: none;
  }
}
