:root {
  --purple: #663799;
  --purple-lift: #a275db;
  --ai: #7c3adc;
  --ink: #2e0569;
  --green: #4cbb17;

  --green-text: #2c730d;

  --badge-bg: #ece7f3;
  --badge-edge: #d9cfe8;

  --on-purple: #ffffff;

  --bg: #faf8f4;
  --bg-2: #f1ede6;
  --bg-3: #e7e1d7;

  --text: #2c2a28;
  --text-dim: #5e5560;
  --rule: #e4ded2;

  --hero-wash: #f4f0e8;

  --maxw: 1120px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --gap: clamp(1rem, 3vw, 1.75rem);
  --radius: 24px;
  --tap: 44px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --purple: #a275db;
    --ai: #b68cf0;
    --ink: #efe8fb;
    --green: #4cbb17;
    --green-text: #7ed957;

    --bg: #0a0a0c;
    --bg-2: #141218;
    --bg-3: #1c1822;
    --text: #e8e4ee;
    --text-dim: #a9a1b6;
    --rule: #2b2533;
    --badge-bg: #231d2b;
    --badge-edge: #362c42;
    --on-purple: #17111f;

    --hero-wash: #1a1420;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 1.0625rem/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: ui-serif, Georgia, "Times New Roman", serif;

  line-height: 1.18; letter-spacing: -0.015em; font-weight: 600;
  margin: 0 0 .5em;
}
p, ul, ol { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: .4em; }
strong { color: var(--ink); font-weight: 650; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 2.5rem 0; }

a { color: var(--purple); text-decoration: underline; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible { outline: 3px solid var(--ai); outline-offset: 3px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--tint { background: var(--bg-2); }

.section--fade { background: linear-gradient(to bottom, var(--bg-2) 0%, var(--bg-2) 45%, var(--bg) 100%); }
.section--rule { border-top: 1px solid var(--rule); }
.narrow { max-width: 42rem; }

.grid { display: grid; gap: var(--gap); }

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--purple); color: #fff; padding: .75rem 1.25rem;
  text-decoration: none; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

.eyebrow {

  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--purple); margin: 0 0 .75rem;
  font-family: inherit;
}
h1, .h1 { font-size: clamp(2.25rem, 1.2rem + 4.4vw, 4rem); }
h2, .h2 { font-size: clamp(1.65rem, 1.1rem + 2.2vw, 2.5rem); }

.narrow h2 { margin-top: 2.5rem; }
.narrow h2:first-child, .narrow .eyebrow + h2 { margin-top: 0; }

.narrow .note + h2,
.narrow .table-scroll + h2 { margin-top: 3.75rem; }
h3, .h3 { font-size: clamp(1.15rem, 1rem + .7vw, 1.4rem); }
.lede { font-size: clamp(1.0625rem, 1rem + .45vw, 1.3rem); color: var(--text-dim); }
.small { font-size: .875rem; }
.dim { color: var(--text-dim); }

.site-header { border-bottom: 1px solid var(--rule); background: var(--bg); }
.site-header .wrap { display: flex; align-items: center; gap: 1rem; min-height: 64px; }

.wordmark {
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; min-height: var(--tap);
}
.wordmark i { color: var(--ai); font-style: normal; }
.wordmark:hover { text-decoration: none; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: clamp(.5rem, 2vw, 1.5rem); list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a {
  display: inline-flex; align-items: center; min-height: var(--tap);
  padding-inline: .35rem; text-decoration: none;
  color: var(--text-dim); font-size: .9375rem; font-weight: 550;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--purple); }
.nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: .3em; }

.nav--lang { margin-left: 0; padding-left: 1rem; border-left: 1px solid var(--rule); }

.lang { font-weight: 650; }

@media (max-width: 32rem) {
  .nav:not(.nav--lang):lang(fr) ul { flex-direction: column; flex-wrap: nowrap; row-gap: 0; }

  .nav:lang(fr) li { margin: 0; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: var(--tap); padding: .7rem 1.35rem;
  border-radius: 999px; border: 1.5px solid transparent;
  font-size: 1rem; font-weight: 650; text-decoration: none; cursor: pointer;
}
.btn--primary { background: var(--purple); color: var(--on-purple); }
.btn--primary:hover { background: var(--ai); }
.btn--ghost { border-color: var(--rule); color: var(--ink); background: var(--bg); }
.btn--ghost:hover { border-color: var(--purple); color: var(--purple); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.hero {

  background: linear-gradient(180deg, var(--hero-wash) 0%, var(--bg) 88%);

  padding-block: clamp(3rem, 8vw, 5rem) clamp(2rem, 4vw, 3rem);
}
.hero h1 { max-width: 18ch; }
.hero .lede { max-width: 50ch; }

.badge-free {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--badge-bg); color: var(--purple);
  border: 1px solid var(--badge-edge);
  font-size: .8125rem; font-weight: 650; letter-spacing: .01em;
  padding: .3rem .75rem; border-radius: 999px; margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.card {
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: clamp(1.1rem, 3vw, 1.6rem);
}
.section--tint .card { background: var(--bg); }
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.steps > li { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; }
.steps b { color: var(--purple); font-variant-numeric: tabular-nums; font-size: .95rem; }
.steps h3 { font-size: 1.0625rem; margin-bottom: .25rem; }
.steps p { margin: 0; color: var(--text-dim); }

.pills { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 1.5rem 0 0; }
.pills li {
  display: inline-flex; align-items: center; gap: .45rem; margin: 0;
  border: 1px solid var(--rule); border-radius: 999px;
  padding: .45rem .9rem; font-size: .875rem; font-weight: 600;
  background: var(--bg);
}
.pills li::before { font-weight: 700; }
.pills .yes::before { content: "\2713"; color: var(--green-text); }
.pills .no::before { content: "\2715"; color: var(--purple); }

.pills--promise { --promise-gap: .6rem; margin: 1.5rem 0 0; gap: var(--promise-gap); }

.pills .pills__break {
  flex-basis: 100%; height: 0; padding: 0; border: 0; background: none;
  margin-bottom: calc(-1 * var(--promise-gap, .5rem));
}
.pills--promise li {
  background: var(--badge-bg); border-color: var(--badge-edge);
  color: var(--purple); font-size: 1rem; font-weight: 700;
  padding: .55rem 1.05rem;
}

.proof { display: grid; gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
.proof > li { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; }
.proof h3 { font-size: 1.0625rem; margin-bottom: .3rem; }
.proof p { margin: 0; color: var(--text-dim); }
.proof .mark { color: var(--purple); font-size: 1.15rem; line-height: 1.4; }

.product {
  display: grid; gap: var(--gap); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: clamp(1.25rem, 4vw, 2.25rem);
}
.section--tint .product { background: var(--bg); }
.product__status {
  display: inline-block; font-size: .8125rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--purple); background: var(--bg-3);
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: .9rem;
}

.stats { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); list-style: none; padding: 0; margin: 0; }
.stats > li { margin: 0; }
.stats b { display: block; color: var(--ink); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stats span { color: var(--text-dim); font-size: .9375rem; }

.table-scroll { overflow-x: auto; margin-bottom: 1.25rem; }

.table-scroll:focus-visible { outline: 3px solid var(--ai); outline-offset: 2px; }

.table-notes {
  margin-block: .25rem 3.75rem;
  color: var(--text-dim); font-size: .8125rem; line-height: 1.6;
}

.table-notes p { margin: 0 0 .6em; }
.table-notes p:last-child { margin-bottom: 0; }
table { border-collapse: collapse; width: 100%; font-size: .9375rem; }
caption { text-align: left; color: var(--text-dim); font-size: .875rem; padding-bottom: .75rem; }
th, td { text-align: left; padding: .7rem .85rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { color: var(--ink); font-weight: 650; white-space: nowrap; }

td.num { white-space: nowrap; font-variant-numeric: tabular-nums; }

li:target {
  background: var(--bg-3);
  border-radius: 8px;
  box-shadow: 0 0 0 6px var(--bg-3);
  scroll-margin-top: 2rem;
}
tbody tr:hover { background: var(--bg-2); }

details { border-bottom: 1px solid var(--rule); }
summary {
  cursor: pointer; padding: 1.05rem 2rem 1.05rem 0; position: relative;
  font-weight: 650; color: var(--ink); min-height: var(--tap);
  display: flex; align-items: center; list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: .25rem;
  font-weight: 400; font-size: 1.5rem; color: var(--purple); line-height: 1;
}
details[open] summary::after { content: "\2212"; }
details > :not(summary) { margin-bottom: 1.1rem; color: var(--text-dim); }

.note {
  border-left: 3px solid var(--purple); background: var(--bg-2);
  padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0;

  margin-block: 1.75rem;
}
.note :last-child { margin-bottom: 0; }
.section--tint .note { background: var(--bg-3); }

.site-footer { border-top: 1px solid var(--rule); background: var(--bg-2); padding-block: 3rem 2.5rem; }
.site-footer .cols { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); }

.site-footer .cols > div {
  display: grid; grid-template-rows: subgrid; grid-row: span 2; row-gap: 0;
}

.site-footer h2 { font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .25rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .1rem; }
.site-footer a { display: inline-flex; align-items: center; min-height: var(--tap); color: var(--text-dim); text-decoration: none; font-size: .9375rem; }
.site-footer a:hover { color: var(--purple); text-decoration: underline; }
.colophon { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); color: var(--text-dim); font-size: .8125rem; }
.colophon p { margin: 0 0 .35em; }

.phone {
  width: min(280px, 72vw);
  margin-inline: auto; padding: 10px;
  background: var(--bg); border: 2px solid var(--rule);
  border-radius: 40px; box-shadow: 0 18px 44px -18px rgba(46, 5, 105, .30);
}
.phone img {
  display: block; width: 100%; height: auto;

  border-radius: 30px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.stack > * + * { margin-top: clamp(2rem, 5vw, 3rem); }
.mt-0 { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

@media print {
  .site-header, .site-footer, .skip, .btn-row { display: none; }
  body { background: #fff; color: #000; }
}

.chooser { text-align: center; padding-block: clamp(2rem, 10vh, 6rem); }

.wordmark--lg { font-size: clamp(1.8rem, 6vw, 2.6rem); margin: 0; }

.chooser__list {
  list-style: none; margin: 2.5rem auto 0; padding: 0;
  width: 66.667vw;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.chooser__list li {
  display: grid; grid-template-rows: auto 1fr auto; gap: 1rem; justify-items: center;
}
.chooser__list .lede { margin: 0; }
.chooser__list .btn { min-width: 11rem; }

@media (max-width: 44rem) {
  .chooser__list { width: 100%; grid-template-columns: 1fr; }
}
