/* ==========================================================================
   VALTIKA — Feuille de style statique
   Reproduit le design system institutionnel (bleu nuit / ambre cuivré)
   utilisé par l'application. Aucune dépendance, aucun build.
   ========================================================================== */

:root {
  --primary: 210 65% 12%;
  --primary-foreground: 210 20% 98%;
  --secondary: 220 6% 18%;
  --secondary-foreground: 210 20% 98%;
  --accent: 220 85% 56%;
  --accent-foreground: 210 20% 98%;
  --background: 216 33% 97%;
  --foreground: 210 65% 12%;
  --card: 0 0% 100%;
  --card-foreground: 210 65% 12%;
  --muted: 216 20% 94%;
  --muted-foreground: 220 6% 28%;
  --destructive: 38 65% 47%;
  --destructive-foreground: 210 20% 98%;
  --highlight: 30 70% 45%;
  --highlight-foreground: 0 0% 100%;
  --border: 216 20% 90%;
  --radius: 0.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid hsl(var(--border));
}

html {
  font-size: 110%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.625;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

strong {
  font-weight: 600;
  color: hsl(var(--foreground));
}

hr {
  border-top: 1px solid hsl(var(--border));
  margin: 0;
}

:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 2px;
}

/* --------------------------------------------------------------- Layout -- */

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
  max-width: 1280px;
}

.container--narrow {
  max-width: calc(48rem + 4rem);
}

.container--md {
  max-width: calc(64rem + 4rem);
}

.container--lg {
  max-width: calc(72rem + 4rem);
}

.section {
  padding-block: 5rem;
}

.section--hero {
  padding-block: 6rem;
}

.section--alt {
  background-color: hsl(var(--card));
}

.section--tight {
  padding-block: 2rem 2rem;
}

.text-center {
  text-align: center;
}

.measure {
  max-width: 48rem;
  margin-inline: auto;
}

/* ------------------------------------------------------------ Typographie -- */

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--highlight));
  margin-bottom: 1rem;
}

.page-title {
  font-size: clamp(2.125rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.accent {
  color: hsl(var(--highlight));
  font-style: italic;
}

.accent--solid {
  color: hsl(var(--highlight));
  font-style: normal;
  font-weight: 600;
}

.prose > * + * {
  margin-top: 1.5rem;
}

.prose p,
.prose li {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.prose h2 {
  color: hsl(var(--foreground));
  margin-top: 3rem;
}

.prose h3 {
  color: hsl(var(--foreground));
  font-size: 1.25rem;
  margin-top: 2rem;
}

.prose a {
  color: hsl(var(--accent));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bullets {
  list-style: disc;
  padding-left: 1.5rem;
}

.bullets > li {
  margin-top: 0.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.bullets::marker,
.bullets > li::marker {
  color: hsl(var(--highlight));
}

.numbered {
  list-style: decimal;
  padding-left: 1.5rem;
}

.numbered > li {
  margin-top: 0.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.dashed {
  list-style: none;
}

.dashed > li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.dashed > li::before {
  content: "\00B7";
  color: hsl(var(--highlight));
  font-weight: 600;
  transform: translateY(-0.35em);
}

.checklist {
  list-style: none;
}

.checklist > li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
}

.checklist > li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.3rem;
  background-color: currentColor;
  color: hsl(var(--highlight));
  -webkit-mask: var(--icon-check) center / contain no-repeat;
  mask: var(--icon-check) center / contain no-repeat;
}

.crosslist {
  list-style: none;
}

.crosslist > li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
}

.crosslist > li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.3rem;
  background-color: hsl(var(--destructive));
  -webkit-mask: var(--icon-cross) center / contain no-repeat;
  mask: var(--icon-cross) center / contain no-repeat;
}

:root {
  --icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  --icon-cross: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- Boutons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding-inline: 1rem;
  border-radius: calc(var(--radius) - 2px);
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn--lg {
  height: 2.75rem;
  padding-inline: 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--outline {
  background-color: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.btn--outline:hover {
  background-color: hsl(var(--muted));
}

.btn--on-dark {
  background-color: transparent;
  color: hsl(var(--primary-foreground));
  border: 1px solid hsl(var(--primary-foreground) / 0.3);
}

.btn--on-dark:hover {
  background-color: hsl(var(--primary-foreground));
  color: hsl(var(--primary));
}

/* ----------------------------------------------------------------- Grille -- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

.grid--6 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.grid--gap-lg {
  gap: 2rem;
}

/* ------------------------------------------------------------------ Cartes -- */

.card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  background-color: hsl(var(--card));
}

.card--pad {
  padding: 2rem;
}

.card--bg {
  background-color: hsl(var(--background));
}

.card--highlight {
  border-color: hsl(var(--highlight) / 0.4);
  box-shadow: 0 1px 2px hsl(var(--primary) / 0.05);
}

.card--flex {
  display: flex;
  flex-direction: column;
}

.card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--highlight));
  margin-bottom: 0.75rem;
}

.card__label--muted {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.card--plain p {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.card--plain p.card__note {
  font-size: 0.9375rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

.card__spacer {
  margin-top: auto;
  padding-top: 1.5rem;
}

.note {
  background-color: hsl(var(--muted));
  border-left: 2px solid hsl(var(--highlight));
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
}

.note p {
  font-size: 0.9375rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: hsl(var(--primary) / 0.05);
  color: hsl(var(--highlight));
  margin-bottom: 1rem;
}

.feature__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9375rem;
}

/* ------------------------------------------------------------------ Frise -- */

.journey {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.journey > li {
  position: relative;
}

.journey__step {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey__num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  color: hsl(var(--highlight));
  margin-bottom: 0.25rem;
}

.journey__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* --------------------------------------------------------------- Étapes -- */

.steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.step {
  border-left: 2px solid hsl(var(--highlight));
  padding-left: 2rem;
}

.step__meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--highlight));
}

.step h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.step p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ------------------------------------------------------------------ Hero -- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary) / 0.7);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}

.hero__content {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 8px hsl(var(--primary) / 0.4);
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 34rem;
  line-height: 1.7;
}

.hero .eyebrow {
  margin-bottom: 0;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-row--center {
  justify-content: center;
}

/* -------------------------------------------------------------- Diagnostic -- */

.diagnostic {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2.5rem;
  background-color: hsl(var(--card));
}

.diagnostic__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.diagnostic__visual {
  display: flex;
  justify-content: center;
}

.diagnostic__circle {
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--highlight));
}

.diagnostic__circle svg {
  width: 5rem;
  height: 5rem;
}

/* ---------------------------------------------------------------- CTA dark -- */

.cta-dark {
  position: relative;
  overflow: hidden;
  padding-block: 6rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary)) 55%, hsl(var(--secondary)));
  color: hsl(var(--primary-foreground));
}

.cta-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--highlight) / 0.4), transparent);
}

.cta-dark .container {
  position: relative;
  z-index: 1;
}

.cta-dark h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.cta-dark p {
  color: hsl(var(--primary-foreground) / 0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------------- FAQ -- */

.faq {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq details {
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 1.5rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

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

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ----------------------------------------------------------------- Header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
}

.site-header__bar {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand img {
  height: 2rem;
  width: auto;
}

.brand span {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.site-nav a,
.site-nav button {
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav button:hover {
  color: hsl(var(--foreground));
}

.site-nav a[aria-current="page"] {
  color: hsl(var(--foreground));
}

.dropdown {
  position: relative;
}

.dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown > button svg {
  width: 1rem;
  height: 1rem;
}

.dropdown__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  z-index: 50;
}

.dropdown:hover .dropdown__panel,
.dropdown:focus-within .dropdown__panel {
  display: block;
}

.dropdown__panel > div {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.1), 0 4px 6px -4px hsl(var(--primary) / 0.1);
  padding: 1rem;
  min-width: 260px;
}

.dropdown__panel a {
  display: block;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.dropdown__panel a:hover {
  color: hsl(var(--highlight));
}

.site-header__cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0.5rem;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open,
.nav-toggle[aria-expanded="false"] .nav-toggle__close {
  display: none;
}

.mobile-nav {
  display: none;
  background-color: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
}

.mobile-nav[data-open="true"] {
  display: block;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1rem;
}

.mobile-nav a {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.mobile-nav__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
}

.mobile-nav__sub {
  padding-left: 0.75rem;
}

.mobile-nav hr {
  margin-top: 0.5rem;
}

/* ---------------------------------------------------------------- Bandeau -- */

.tool-banner {
  background-color: hsl(var(--primary) / 0.05);
  border-bottom: 1px solid hsl(var(--border));
}

.tool-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
}

.tool-banner span {
  color: hsl(var(--muted-foreground));
}

.tool-banner a {
  color: hsl(var(--highlight));
  font-weight: 500;
  white-space: nowrap;
}

.tool-banner a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------------- Footer -- */

.site-footer {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding-block: 4rem;
}

.site-footer__cols {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.site-footer .brand img {
  height: 1.75rem;
  filter: brightness(2);
}

.site-footer .brand span {
  color: hsl(var(--primary-foreground));
}

.site-footer__tagline {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: italic;
  color: hsl(var(--primary-foreground) / 0.6);
  line-height: 1.7;
}

.site-footer h2 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__cols ul {
  margin-top: 1rem;
}

.site-footer li a {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  transition: color 0.2s;
}

.site-footer li a:hover {
  color: hsl(var(--primary-foreground));
}

.site-footer__statement {
  margin-top: 4rem;
  max-width: 48rem;
}

.site-footer__statement p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: hsl(var(--primary-foreground) / 0.8);
}

.site-footer__statement p + p {
  margin-top: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.6);
}

.site-footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__bottom p {
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.5);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer__legal a {
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.5);
  transition: color 0.2s;
}

.site-footer__legal a:hover {
  color: hsl(var(--primary-foreground) / 0.7);
}

/* --------------------------------------------------------- Bandeau cookies -- */

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  pointer-events: auto;
  margin-inline: auto;
  max-width: 56rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsl(var(--background) / 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.15);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.cookie-banner__text p {
  font-size: 0.875rem;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.cookie-banner__text a {
  color: hsl(var(--accent));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  min-width: 7rem;
}

/* ---------------------------------------------------------------- Fondateur -- */

.founder {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.founder figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.founder img {
  width: 11rem;
  height: 11rem;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.2);
}

.founder figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}

.founder figcaption a {
  color: hsl(var(--muted-foreground));
}

.founder figcaption a:hover {
  color: hsl(var(--highlight));
}

.founder figcaption svg {
  width: 1.25rem;
  height: 1.25rem;
}

.founder h1 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.2;
}

/* ------------------------------------------------------------ Utilitaires -- */

.stack-sm > * + * {
  margin-top: 0.75rem;
}

.mt-lg {
  margin-top: 2.5rem;
}

.mt-md {
  margin-top: 1.5rem;
}

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

/* ------------------------------------------------------------ Breakpoints -- */

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    padding: 1.5rem;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .cookie-banner__text {
    flex: 1;
  }

  .cookie-banner__actions {
    flex-direction: row;
    align-items: center;
  }

  .founder {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .section--hero {
    padding-block: 8rem;
  }

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

  .grid--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .journey {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .journey > li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.7rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-color: hsl(var(--highlight));
    -webkit-mask: var(--icon-arrow) center / contain no-repeat;
    mask: var(--icon-arrow) center / contain no-repeat;
    z-index: 1;
  }

  .diagnostic {
    grid-template-columns: 3fr 2fr;
    padding: 3.5rem;
  }

  .diagnostic__circle {
    width: 13rem;
    height: 13rem;
  }

  .diagnostic__circle svg {
    width: 6rem;
    height: 6rem;
  }

  .site-nav {
    display: flex;
  }

  .site-header__cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .site-footer__cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer__bottom {
    flex-direction: row;
  }

  .tool-banner .container {
    flex-direction: row;
  }

  .founder img {
    width: 13.2rem;
    height: 13.2rem;
  }
}

@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

:root {
  --icon-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
