:root {
  color-scheme: dark;
  --bg: #0b0c10;
  --grad: radial-gradient(125% 65% at 50% -12%, #191b28 0%, transparent 55%);
  --s1: #101218;
  --s2: #14161d;
  --s3: #1b1e27;
  --bd: #ffffff12;
  --bd2: #ffffff22;
  --tx: #e8eaf0;
  --tx2: #969bab;
  --tx3: #828a9d;
  --acc: #7b82f0;
  --acc2: #9ca1f7;
  --warn: #e7a24c;
  --warnbg: #e7a24c1c;
  --go: #46c68a;
  --gobg: #46c68a16;
  --sheet-sh: 0 1px 0 #ffffff08 inset, 0 30px 70px -34px #000;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #fafafb;
  --grad: radial-gradient(125% 60% at 50% -12%, #f0f1f6 0%, transparent 55%);
  --s1: #f5f6f8;
  --s2: #ffffff;
  --s3: #eeeff3;
  --bd: #11141b14;
  --bd2: #11141b24;
  --tx: #1a1c22;
  --tx2: #5a6070;
  --tx3: #6b7282;
  --acc: #5e6ad2;
  --acc2: #4e59c0;
  --warn: #b5751e;
  --warnbg: #e2972c1a;
  --go: #18935f;
  --gobg: #18935f12;
  --sheet-sh: 0 1px 2px #1114200a, 0 12px 32px -16px #11142022;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--tx);
  background-color: var(--bg);
  background-image: var(--grad);
  background-attachment: fixed;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: color-mix(in srgb, var(--acc) 38%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--tx);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.15rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--tx);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 940px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 720;
}

h2 {
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  font-weight: 680;
}

h3 {
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  font-weight: 640;
}

.site-header,
.site-footer,
main {
  width: min(1680px, calc(100% - clamp(2rem, 6vw, 6rem)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 50px;
  border-bottom: 1px solid var(--bd);
  background: linear-gradient(var(--s1), color-mix(in srgb, var(--s1) 30%, var(--bg)));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--tx);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  box-shadow: 0 6px 18px -10px var(--acc);
}

.dot {
  color: var(--acc);
}

.nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--tx2);
  font-size: 12px;
  font-weight: 500;
}

.nav a,
.site-footer nav a {
  padding: 5px 10px;
  border-radius: 7px;
  transition: background 0.12s, color 0.12s;
}

.nav a:hover,
.site-footer nav a:hover {
  color: var(--tx);
  background: color-mix(in srgb, var(--tx) 5%, transparent);
}

.nav a[aria-current="page"],
.nav a[aria-current="true"] {
  color: var(--tx);
  background: color-mix(in srgb, var(--tx) 7%, transparent);
}

.nav .nav-cta {
  margin-left: 6px;
  padding: 6px 12px;
  border-radius: 7px;
  color: #fff;
  background: var(--acc);
  font-weight: 600;
  box-shadow: 0 1px 0 #ffffff24 inset, 0 9px 24px -16px var(--acc);
}

.nav .nav-cta:hover {
  color: #fff;
  background: var(--acc2);
}

.theme-toggle {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--bd);
  border-radius: 8px;
  color: var(--tx2);
  background: color-mix(in srgb, var(--tx) 4%, transparent);
  cursor: pointer;
  transition: 0.12s;
}

.theme-toggle:hover {
  color: var(--tx);
  background: var(--s3);
}

.theme-toggle svg {
  width: 15px;
  height: 15px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: center;
  min-height: 560px;
  padding: 44px 0 54px;
}

.hero-copy {
  animation: rise 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}

.lead {
  max-width: 760px;
  color: var(--tx2);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}

.microcopy,
.muted {
  color: var(--tx3);
  font-size: 12.5px;
}

.eyebrow,
.card-kicker,
.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 7px;
  margin: 0 0 14px;
  border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
  border-radius: 7px;
  color: var(--acc2);
  background: color-mix(in srgb, var(--acc) 10%, transparent);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.status-pill {
  color: var(--go);
  background: var(--gobg);
  border-color: color-mix(in srgb, var(--go) 28%, transparent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 9px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.1s, transform 0.05s, background 0.12s, border-color 0.12s;
}

.button:hover {
  filter: brightness(1.07);
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  color: #fff;
  background: var(--acc);
  border: 0;
  box-shadow: 0 1px 0 #ffffff24 inset, 0 9px 28px -18px var(--acc);
}

.button.primary:hover {
  color: #fff;
}

.button.secondary {
  color: var(--tx);
  background: transparent;
  border: 1px solid var(--bd2);
}

.button.secondary:hover {
  background: color-mix(in srgb, var(--tx) 5%, transparent);
}

.hero-panel,
.panel-card,
.source-card,
.tool-preview,
.article-card,
.callout,
.score-panel,
.template-box,
.audit-purpose div,
.checklist-panel,
.article,
.toc,
details,
.card {
  border: 1px solid var(--bd2);
  border-radius: 16px;
  background: var(--s1);
  box-shadow: var(--sheet-sh);
}

.hero-panel {
  padding: 1px;
  border-color: var(--bd);
  background: linear-gradient(135deg, color-mix(in srgb, var(--acc) 24%, transparent), transparent 45%),
    var(--s1);
  animation: rise 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) 0.08s backwards;
}

.panel-card,
.source-card,
.tool-preview,
.article-card,
.callout,
.score-panel,
.template-box,
.checklist-panel {
  padding: clamp(20px, 3vw, 30px);
}

.check-list,
.feature-list,
.source-list,
.page-list {
  display: grid;
  gap: 9px;
  padding-left: 0;
  list-style: none;
}

.check-list li,
.feature-list li,
.page-list li {
  position: relative;
  padding-left: 22px;
  color: var(--tx2);
}

.check-list li::before,
.feature-list li::before,
.page-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--go);
  box-shadow: 0 0 0 4px var(--gobg);
  content: "";
}

.feature-list strong,
.check-list strong,
.page-list strong {
  color: var(--tx);
  font-weight: 600;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--bd);
  border-radius: 12px;
  background: var(--s1);
}

.trust-strip div {
  padding: 17px 18px;
  border-right: 1px solid var(--bd);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--tx);
  font-size: 12.5px;
  font-weight: 600;
}

.trust-strip span {
  color: var(--tx2);
  font-size: 12px;
}

.section {
  padding: clamp(40px, 5vw, 70px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  color: var(--tx2);
}

.demo-section {
  scroll-margin-top: 76px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.demo-pane {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 330px;
  border: 1px solid var(--bd2);
  border-radius: 16px;
  background: var(--s1);
  box-shadow: var(--sheet-sh);
  overflow: hidden;
}

.demo-label {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--bd);
  color: var(--tx2);
  background: color-mix(in srgb, var(--tx) 3%, transparent);
  font-size: 12px;
  font-weight: 600;
}

.demo-pane textarea,
.demo-pane pre {
  width: 100%;
  min-height: 286px;
  margin: 0;
  border: 0;
  color: var(--tx);
  background: transparent;
  padding: 16px;
  font: 12.5px/1.65 var(--mono);
  resize: vertical;
  white-space: pre-wrap;
}

.demo-pane textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--acc) 45%, transparent);
}

.demo-pane pre {
  color: var(--tx2);
}

.demo-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  align-self: center;
  border: 1px solid var(--bd);
  border-radius: 9px;
  color: var(--acc2);
  background: color-mix(in srgb, var(--acc) 10%, transparent);
  font-family: var(--mono);
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.assurance-section .card-grid {
  align-items: stretch;
}

.assurance-card {
  min-height: 210px;
}

.assurance-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
  border-radius: 8px;
  color: var(--acc2);
  background: color-mix(in srgb, var(--acc) 10%, transparent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.split.reversed {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.card-grid {
  display: grid;
  gap: 12px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.article-card {
  display: block;
  min-height: 196px;
  padding: 20px;
  border-color: var(--bd);
  transition: transform 0.12s, border-color 0.12s, background 0.12s;
}

.article-card {
  min-height: 220px;
}

.card:hover,
.article-card:hover {
  color: inherit;
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--acc) 42%, transparent);
  background: var(--s2);
}

.card h2,
.article-card h2,
.card h3,
.article-card h3 {
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  letter-spacing: -0.03em;
}

.card p,
.article-card p,
.callout p,
.source-card p,
.tool-preview p,
.article p {
  color: var(--tx2);
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  padding: 0 16px;
  border-color: var(--bd);
  box-shadow: none;
}

summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--tx);
  font-weight: 600;
}

details p {
  color: var(--tx2);
}

.page-hero {
  max-width: 900px;
  padding: 46px 0 30px;
  animation: rise 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--tx3);
  font-size: 12px;
}

.breadcrumb a {
  color: var(--tx2);
}

.breadcrumb a:hover {
  color: var(--tx);
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
  padding-bottom: 64px;
}

.article {
  padding: clamp(24px, 4vw, 44px);
  border-color: var(--bd);
  font-size: 15px;
  line-height: 1.68;
}

.article p,
.article li {
  font-size: 15px;
  line-height: 1.68;
}

.article .comparison th,
.article .comparison td {
  font-size: 13.5px;
}

.article h2 {
  margin-top: 2rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.article h3 {
  margin-top: 1.5rem;
}

.article a,
.source-list a {
  color: var(--acc2);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--acc2) 30%, transparent);
  text-underline-offset: 3px;
}

.toc {
  position: sticky;
  top: 66px;
  padding: 16px;
  border-color: var(--bd);
  box-shadow: none;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--tx);
  font-weight: 600;
}

.toc a {
  display: block;
  margin: 8px 0;
  color: var(--tx2);
  font-size: 12.5px;
}

.toc a:hover {
  color: var(--tx);
}

.comparison {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--bd);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
}

.comparison th,
.comparison td {
  padding: 12px;
  border-bottom: 1px solid var(--bd);
  color: var(--tx2);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--tx);
  background: var(--s2);
  font-weight: 600;
}

.comparison tr:last-child td,
.comparison tr:last-child th {
  border-bottom: 0;
}

.callout {
  margin: 22px 0;
  border-color: color-mix(in srgb, var(--acc) 28%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--acc) 12%, transparent), var(--s1));
}

.callout.warn {
  border-color: color-mix(in srgb, var(--warn) 34%, transparent);
  background: linear-gradient(135deg, var(--warnbg), var(--s1));
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.audit-purpose {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 4px 0 14px;
}

.audit-purpose div {
  padding: 16px;
  border-color: var(--bd);
  box-shadow: none;
}

.audit-purpose strong,
.audit-purpose span {
  display: block;
}

.audit-purpose strong {
  margin-bottom: 4px;
  color: var(--tx);
  font-weight: 600;
}

.audit-purpose span,
.checklist-panel > p {
  color: var(--tx2);
  font-size: 12.5px;
}

.checklist-panel h2,
.score-panel h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.checklist-form {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--bd);
  border-radius: 10px;
  background: var(--s2);
}

.check-item input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--acc);
}

.check-item strong,
.check-item span {
  display: block;
}

.check-item strong {
  color: var(--tx);
  font-weight: 600;
}

.check-item span {
  color: var(--tx2);
  font-size: 12.5px;
}

.score-panel {
  position: sticky;
  top: 66px;
  border-color: color-mix(in srgb, var(--go) 24%, var(--bd));
}

.score-panel .button {
  width: 100%;
}

.score-number {
  display: block;
  margin: 10px 0;
  color: var(--tx);
  font-family: var(--mono);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.meter {
  overflow: hidden;
  height: 8px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--tx) 8%, transparent);
}

.meter > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--warn), var(--go));
  transition: width 0.2s ease;
}

.template-box {
  white-space: pre-wrap;
  color: var(--tx2);
  font-family: var(--mono);
  font-size: 12px;
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--bd);
}

.site-footer p {
  max-width: 560px;
  margin-top: 10px;
  color: var(--tx3);
  font-size: 12px;
}

mark.ent {
  padding: 0 0.15em;
  border-radius: 3px;
  background: color-mix(in srgb, var(--warn) 34%, transparent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .split.reversed,
  .content,
  .tool-layout,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .trust-strip,
  .audit-purpose {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--bd);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .toc,
  .score-panel {
    position: static;
  }

  .score-panel {
    order: -1;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
    flex-flow: row wrap;
    align-items: center;
    height: auto;
    gap: 9px;
    padding: 12px 0;
  }

  .site-header .brand {
    margin-right: auto;
  }

  .site-header .theme-toggle {
    margin-left: auto;
  }

  .nav,
  .site-footer nav {
    margin-left: 0;
    font-size: 11.5px;
  }

  .site-header .nav {
    order: 3;
    flex-basis: 100%;
  }

  .nav a,
  .site-footer nav a {
    padding: 5px 8px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 38px;
  }

  .hero-panel {
    padding: 1px;
  }

  .panel-card,
  .source-card,
  .tool-preview,
  .article-card,
  .callout,
  .score-panel,
  .template-box,
  .checklist-panel {
    padding: 18px;
  }

  .card {
    min-height: auto;
  }

  .page-hero {
    padding-top: 30px;
  }

  .cta-row .button {
    width: 100%;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }
}

/* ── v2 : composants produit ─────────────────────────────────────────── */

.hero.product {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(28px, 3vw, 56px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 17px;
  color: var(--tx3);
  font-size: 12.5px;
}

.hero-points li::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--go);
  box-shadow: 0 0 0 3px var(--gobg);
  content: "";
}

.shot {
  overflow: hidden;
  border: 1px solid var(--bd2);
  border-radius: 14px;
  background: var(--s1);
  box-shadow: 0 1px 0 #ffffff10 inset, 0 36px 80px -38px rgb(0 0 0 / 0.55);
}

.shot-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--bd);
  background: color-mix(in srgb, var(--tx) 3%, transparent);
}

.shot-bar i {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--tx) 13%, transparent);
}

.shot-url {
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  color: var(--tx3);
  background: color-mix(in srgb, var(--tx) 5%, transparent);
  font-family: var(--mono);
  font-size: 10.5px;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot img.theme-light {
  display: none;
}

html[data-theme="light"] .shot img.theme-dark {
  display: none;
}

html[data-theme="light"] .shot img.theme-light {
  display: block;
}

.shot-caption {
  margin: 10px 2px 0;
  color: var(--tx3);
  font-size: 12.5px;
}

.hero .shot {
  animation: rise 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) 0.08s backwards;
}

.flow {
  display: grid;
  gap: 18px;
}

.flow-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--bd);
}

.flow-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.step-num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid color-mix(in srgb, var(--acc) 32%, transparent);
  border-radius: 9px;
  color: var(--acc2);
  background: color-mix(in srgb, var(--acc) 10%, transparent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}

.flow-step h3 {
  margin-bottom: 0.5rem;
}

.flow-step > div > p {
  max-width: 720px;
  color: var(--tx2);
  font-size: 14px;
  line-height: 1.6;
}

.flow-step .shot {
  margin-top: 16px;
  max-width: 880px;
}

.authority {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.authority blockquote {
  margin: 0;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--bd);
  border-radius: 14px;
  background: var(--s1);
  box-shadow: var(--sheet-sh);
}

.authority blockquote > p {
  margin-bottom: 0;
  color: var(--tx);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
}

.authority cite {
  display: block;
  margin-top: 12px;
  color: var(--tx3);
  font-size: 12.5px;
  font-style: normal;
}

.authority cite a {
  color: var(--acc2);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--acc2) 30%, transparent);
  text-underline-offset: 3px;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid color-mix(in srgb, var(--acc) 26%, var(--bd));
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--acc) 10%, transparent), var(--s1));
  box-shadow: var(--sheet-sh);
}

.pricing h2 {
  margin-bottom: 0.4rem;
}

.pricing p {
  margin-bottom: 0;
  color: var(--tx2);
}

.price-block {
  text-align: right;
}

.price-line {
  display: block;
  color: var(--tx);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.price-line small {
  color: var(--tx2);
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
}

.price-block .button {
  margin-top: 12px;
}

.price-note {
  margin-top: 8px;
  color: var(--tx3);
  font-size: 12px;
}

mark.alias {
  padding: 0 0.18em;
  border-radius: 4px;
  color: var(--go);
  background: var(--gobg);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--go) 28%, transparent);
  font-weight: 500;
}

.site-footer.columns {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(120px, 1fr));
  gap: 28px 40px;
}

.site-footer.columns nav {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: start;
  margin-left: 0;
}

.site-footer.columns nav strong {
  margin-bottom: 2px;
  color: var(--tx);
  font-size: 12px;
}

.site-footer.columns nav a {
  padding: 0;
  border-radius: 0;
  color: var(--tx2);
  font-size: 12.5px;
  font-weight: 500;
}

.site-footer.columns nav a:hover {
  color: var(--tx);
  background: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--bd);
  color: var(--tx3);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero.product,
  .authority,
  .pricing,
  .site-footer.columns {
    grid-template-columns: 1fr;
  }

  .price-block {
    text-align: left;
  }

  .flow-step {
    grid-template-columns: 30px minmax(0, 1fr);
  }
}

/* ── Layout large mais lisible (moderne + responsive) ────────────────── */

/* Pages de lecture (.content) : chrome pleine largeur, colonne centrée. */
main.reading {
  max-width: 1080px;
}

/* .content sans table des matières → colonne unique bornée (pas de vide). */
.content:not(:has(.toc)) {
  grid-template-columns: minmax(0, 1fr);
  max-width: 780px;
}

/* Accueil : le hero et les grilles s'élargissent (pleine largeur), mais les
   blocs de texte restent bornés pour rester lisibles. Tous alignés à gauche. */
.microcopy {
  max-width: 760px;
}
.flow {
  max-width: 1080px;
}
.demo-grid {
  max-width: 1160px;
}
.authority {
  max-width: 1240px;
}
.pricing {
  max-width: 1280px;
}
.faq {
  max-width: 860px;
}
.section > .callout {
  max-width: 880px;
}
