@font-face {
  font-family: Figtree;
  src: url("assets/figtree.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}
:root {
  --ink: #0f0d30;
  --soft: #4a4868;
  --action: #3d5ccb;
  --accent: #5779e4;
  --blue: #5a87fd;
  --peach: #febaa8;
  --lavender: #bdb9fc;
  --sky: #a6cff5;
  --cloud: #f7f6fd;
  --line: #e2e1eb;
  --field: #858399;
  --white: #fff;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(20px, 4vw, 64px);
  --header-height: 88px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Figtree,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(36px, 3.5vw, 52px);
}
h3 {
  font-size: 28px;
  letter-spacing: -0.025em;
}
p {
  text-wrap: pretty;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  border: 0;
}
a,
button,
input,
textarea,
summary {
  -webkit-touch-callout: default;
}
:focus-visible {
  outline: 3px solid var(--action);
  outline-offset: 5px;
}
::selection {
  background: var(--lavender);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(100% - var(--gutter) * 2, 1280px);
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.095em;
  line-height: 1.5;
  text-transform: uppercase;
}
.muted {
  color: var(--soft);
}
h2,
h3 {
  text-wrap: balance;
}
.icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 20;
  left: 16px;
  top: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 14px 22px;
  background: var(--action);
  color: white;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background-color 120ms ease-out,
    transform 200ms var(--ease);
  text-align: center;
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button:active {
  transform: scale(0.97);
  transition-duration: 70ms;
}
.button-small {
  min-height: 46px;
  padding: 12px 17px;
  font-size: 14px;
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button[aria-busy="true"] {
  cursor: progress;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 120ms ease-out;
}
.text-link .icon {
  transition: transform 150ms ease-out;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
/* En-tête sobre, menu de divulgation sur mobile. */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease-out;
}
.header.is-scrolled {
  border-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: var(--header-height);
}
.brand {
  display: flex;
  align-items: center;
  min-height: 56px;
  flex: none;
}
.brand img {
  width: 166px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav > a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  transition: color 120ms ease-out;
}
.menu-toggle {
  display: none;
  background: transparent;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.menu-close {
  display: none;
}
/* L’atelier : un titre ample, une note en marge et un outil à manipuler. */
.hero {
  position: relative;
  padding-top: 55px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px 88px;
  align-items: start;
}
.hero-heading {
  grid-column: 1 / -1;
}
.hero-heading > .eyebrow {
  font-size: 11px;
  letter-spacing: 0.09em;
}
.hero h1 {
  margin-top: 26px;
  font-size: clamp(68px, 7.4vw, 108px);
  line-height: 0.99;
  letter-spacing: -0.065em;
  font-weight: 600;
}
.hero h1 > span {
  display: block;
}
.hero h1 em {
  color: var(--action);
  font-style: normal;
}
.hero-copy {
  padding-top: 58px;
}
.hero-description {
  max-width: 350px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--soft);
}
.hero-note {
  margin-top: 30px;
  max-width: 330px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--soft);
}
.hero-stage {
  position: relative;
  min-width: 0;
  isolation: isolate;
  padding-block: 25px 36px;
}
.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.hero-actions .text-link {
  font-size: 14px;
}

.stage-band {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.band-peach {
  width: 68%;
  height: 178px;
  top: 0;
  right: -22px;
  background: var(--peach);
  border-radius: 64px 0 0 0;
}
.band-lavender {
  width: 80%;
  height: 167px;
  bottom: 10px;
  left: -22px;
  background: var(--lavender);
  border-radius: 0 0 64px 0;
}
.app-window {
  position: relative;
  z-index: 1;
  background: white;
  border: 1px solid rgba(15, 13, 48, 0.18);
  border-radius: 6px;
  box-shadow: 0 18px 36px -30px rgba(15, 13, 48, 0.35);
  overflow: hidden;
  transform-origin: center;
}
.app-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 46px;
  padding: 0 15px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.app-body {
  padding: 24px 22px 15px;
}
.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.app-eyebrow {
  font-size: 9px;
  letter-spacing: 0.09em;
  color: var(--soft);
}
.app-title {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.045em;
  margin-top: 6px;
}
.app-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 600;
  font-size: 13px;
}
.demo-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.demo-tabs button {
  position: relative;
  min-height: 44px;
  padding: 0 3px 9px;
  background: transparent;
  color: var(--soft);
  font-size: 12px;
  font-weight: 500;
}
.demo-tabs button::after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 2px;
  left: 0;
  right: 0;
  background: var(--action);
  transform: scaleX(0);
  transition: transform 150ms ease-out;
}
.demo-tabs button[aria-selected="true"] {
  color: var(--ink);
  font-weight: 600;
}
.demo-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}
.demo-tabs button:focus-visible {
  outline-offset: 0;
}
.demo-content {
  min-height: 284px;
}
.demo-panel {
  padding-top: 20px;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.panel-heading > strong {
  font-size: 12px;
  font-weight: 600;
}
.panel-heading > span {
  color: var(--soft);
  font-size: 10px;
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 194px;
}
.day {
  background: var(--cloud);
  padding: 8px 6px;
  border-radius: 5px;
}
.day > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.04em;
  color: var(--soft);
  padding: 0 2px 11px;
}
.day > p > span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.appointment {
  padding: 9px 7px;
  border-radius: 4px;
  margin-bottom: 8px;
  line-height: 1.45;
}
.appointment small {
  display: block;
  font-size: 6.8px;
  letter-spacing: 0.02em;
}
.appointment strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.appointment > span {
  display: block;
  font-size: 8px;
  margin-top: 5px;
}
.peach {
  background: var(--peach);
}
.lavender {
  background: var(--lavender);
}
.sky {
  background: var(--sky);
}
.appointment.outline {
  border: 1px solid var(--line);
  background: #fff;
}
.appointment.offset {
  margin-top: 38px;
}
.panel-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 9px;
  color: var(--soft);
}
.tiny-check {
  color: var(--action);
  font-size: 13px;
}
.demo-caption {
  font-size: 9px;
  color: var(--soft);
  text-align: right;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 18px;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  margin-top: 52px;
  color: var(--soft);
  font-size: 12px;
}
.hero-bottom > p:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-bottom .icon {
  width: 16px;
  height: 16px;
}
.scroll-link {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  color: var(--ink);
}
.scroll-link span {
  font-size: 21px;
}
/* Autres états de la démonstration : action locale et données fictives. */
.document-project {
  font-size: 12px;
  margin-bottom: 12px;
  color: var(--soft);
}
.quote-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
}
.quote-table th,
.quote-table td {
  padding: 8px 0;
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid var(--line);
}
.quote-table th:last-child,
.quote-table td:last-child {
  text-align: right;
  white-space: nowrap;
}
.quote-table thead th {
  font-size: 9px;
  color: var(--soft);
}
.quote-table tfoot th,
.quote-table tfoot td {
  font-weight: 600;
  border: 0;
}
.demo-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--action);
  color: #fff;
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  margin-top: 13px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  transition:
    background-color 120ms ease-out,
    transform 200ms var(--ease);
}
.demo-action .icon {
  width: 16px;
  height: 16px;
}
.demo-action:active {
  transform: scale(0.98);
  transition-duration: 70ms;
}
.demo-status {
  font-size: 9px;
  min-height: 15px;
  margin-top: 8px;
  color: var(--soft);
}
.client-list {
  list-style: none;
  padding: 0;
  margin: 3px 0 0;
}
.client-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.client-list li:last-child {
  border-bottom: 0;
}
.client-avatar {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 9px;
  flex: none;
}
.client-list strong {
  font-size: 11px;
  font-weight: 600;
  display: block;
}
.client-list div > span {
  font-size: 9px;
  color: var(--soft);
  display: block;
}
.client-state {
  margin-left: auto;
  font-size: 8px;
  white-space: nowrap;
  color: var(--soft);
}
/* Des récits métier, avec une mise en page éditoriale. */
.tools-section {
  background: var(--cloud);
  border-top: 1px solid var(--line);
}
.tools-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.section-intro {
  position: sticky;
  top: 130px;
}
.section-intro h2 {
  margin-top: 24px;
  font-size: clamp(34px, 3.3vw, 47px);
  line-height: 1.15;
}
.section-intro > p:not(.eyebrow) {
  max-width: 375px;
  margin-top: 27px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.8;
}
.section-intro > .text-link {
  margin-top: 23px;
}
.tools-signature {
  margin-top: 57px;
  display: flex;
  width: 125px;
  gap: 7px;
}
.tools-signature span {
  width: 36px;
  height: 5px;
  background: var(--peach);
}
.tools-signature span:nth-child(2) {
  background: var(--blue);
}
.tools-signature span:nth-child(3) {
  background: var(--lavender);
}
.tool-story {
  padding-bottom: 39px;
  margin-bottom: 36px;
  border-bottom: 1px solid #d9d7e5;
}
.tool-story:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.story-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 21px;
}
.story-top::before {
  content: "";
  width: 22px;
  height: 4px;
  background: var(--action);
}
.story-top p {
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.story-top .icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
}
.tool-story h3 {
  font-size: 29px;
  line-height: 1.2;
}
.tool-story > p {
  font-size: 15px;
  color: var(--soft);
  margin-top: 16px;
  line-height: 1.8;
}
.tool-story .story-aside {
  padding-left: 12px;
  border-left: 3px solid var(--blue);
  font-size: 12px;
  color: var(--ink);
}
.local-section {
  position: relative;
  background: var(--ink);
  color: white;
  overflow: clip;
}
.local-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: stretch;
  min-height: 620px;
}
.local-copy {
  padding-block: 100px 94px;
  position: relative;
  z-index: 2;
}
.local-copy .eyebrow {
  color: var(--lavender);
}
.local-copy h2 {
  font-size: clamp(34px, 3.25vw, 46px);
  line-height: 1.18;
  margin-top: 26px;
}
.local-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8;
  max-width: 470px;
  margin-top: 26px;
  color: #e0dfec;
}
.local-copy > .local-signoff {
  color: white !important;
  font-size: 15px !important;
  margin-top: 35px !important;
}
.local-landscape {
  position: relative;
  min-width: 0;
  overflow: clip;
  isolation: isolate;
}
.landscape-label {
  position: absolute;
  top: 84px;
  right: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--lavender);
}
.landscape-sun {
  position: absolute;
  width: 270px;
  height: 270px;
  object-fit: contain;
  left: 50%;
  margin-left: -135px;
  bottom: 183px;
  z-index: -1;
}
.horizon-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 187px;
  height: 1px;
  background: rgba(189, 185, 252, 0.4);
}
.landscape-grid {
  position: absolute;
  width: 100%;
  height: 120px;
  bottom: 67px;
  stroke: var(--lavender);
  stroke-width: 0.7;
  fill: none;
  opacity: 0.28;
}
.landscape-caption {
  position: absolute;
  bottom: 41px;
  right: 0;
  font-size: 12px;
  text-align: right;
  line-height: 1.55;
  color: #e0dfec;
  background: var(--ink);
  padding: 8px 0 8px 20px;
}

.workshop-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 110px;
}
.workshop-heading h2 {
  margin-top: 28px;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.workshop-heading h2 span {
  color: var(--action);
}
.workshop-heading .text-link {
  margin-top: 35px;
}
.workshop-copy {
  padding-top: 45px;
}
.workshop-copy > p {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.85;
}
.workshop-copy .workshop-lead {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.42;
  letter-spacing: -0.025em;
}
.workshop-copy > p + p {
  margin-top: 22px;
}
.workshop-copy .workshop-signoff {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}
.faq-section {
  border-top: 1px solid var(--line);
  padding-block: 88px 100px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.faq-layout h2 {
  font-size: clamp(32px, 3vw, 43px);
  margin-top: 23px;
  line-height: 1.18;
}
.faq-intro {
  margin-top: 28px;
  font-size: 15px;
  color: var(--soft);
}
.faq-intro a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--action);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  font-size: 16px;
  font-weight: 500;
  padding-block: 18px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > .icon {
  width: 19px;
  height: 19px;
  transition: transform 150ms ease-out;
}
.faq-list details[open] summary > .icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 36px 25px 0;
}
.faq-answer p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.8;
}
.contact-section {
  background: var(--cloud);
  border-top: 1px solid var(--line);
  padding-block: 96px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
}
.contact-copy h2 {
  margin-top: 25px;
  font-size: clamp(35px, 3.45vw, 48px);
  line-height: 1.16;
}
.contact-copy > p:not(.eyebrow) {
  margin-top: 25px;
  max-width: 380px;
  font-size: 16px;
  color: var(--soft);
  line-height: 1.8;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
  min-height: 44px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  border-bottom: 1px solid var(--ink);
}
.contact-mail > .icon {
  width: 20px;
  height: 20px;
}
.contact-copy > .contact-note {
  font-size: 13px !important;
  margin-top: 24px !important;
}
.contact-mark {
  width: 140px;
  height: auto;
  margin-top: 50px;
}
.contact-form {
  min-width: 0;
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 9px;
}
input,
textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--field);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  transition: border-color 120ms ease-out;
}
textarea {
  resize: vertical;
  min-height: 130px;
}
input::placeholder,
textarea::placeholder {
  color: #68667c;
  opacity: 1;
}
input:focus,
textarea:focus {
  border-color: var(--action);
}
.contact-form > .button {
  width: 100%;
  justify-content: space-between;
}
.form-note {
  font-size: 11px;
  line-height: 1.7;
  color: var(--soft);
  margin-top: 15px;
}
.form-status {
  font-size: 12px;
  color: var(--action);
  line-height: 1.5;
  margin-top: 10px;
}
.form-status:empty {
  margin: 0;
}
.footer {
  background: white;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
  font-size: 12px;
  color: var(--soft);
}
.footer-inner p > span {
  padding-inline: 8px;
}
.footer-inner > a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  color: var(--ink);
}
@media (hover: hover) {
  .button:hover,
  .demo-action:hover {
    background: var(--ink);
  }
  .nav > a:not(.button):hover,
  .text-link:hover,
  .scroll-link:hover,
  .footer a:hover {
    color: var(--action);
  }
  .menu-toggle:hover {
    background: var(--cloud);
  }
  .faq-list summary:hover {
    color: var(--action);
  }
  .demo-tabs button:hover {
    color: var(--action);
  }
}
/* Les contenus sont visibles sans JS. Le script ne masque que les blocs hors écran. */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  [data-reveal].reveal-pending {
    opacity: 0;
    transform: translateY(22px);
  }
  [data-reveal].reveal-ready {
    transition:
      opacity 600ms var(--ease),
      transform 600ms var(--ease);
  }
  .demo-panel.is-entering {
    animation: panel-in 220ms var(--ease) both;
  }
  @keyframes panel-in {
    from {
      opacity: 0.35;
      transform: translateY(5px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (min-width: 1500px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 1150px) {
  .nav {
    gap: 22px;
  }
  .hero {
    padding-top: 45px;
  }

  .app-body {
    padding: 21px 16px 14px;
  }
  .app-title {
    font-size: 23px;
  }
  .panel-heading > strong {
    font-size: 11px;
  }
  .tools-layout,
  .faq-layout,
  .contact-grid {
    gap: 60px;
  }
  .local-grid {
    gap: 45px;
  }
}
@media (max-width: 1150px) {
  .hero-grid {
    gap: 32px 55px;
  }
  .hero h1 {
    font-size: 8vw;
  }
  .hero-copy {
    padding-top: 35px;
  }
  .hero-description {
    font-size: 18px;
  }
  .workshop-layout {
    gap: 65px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }
  .brand img {
    width: 151px;
  }
  .nav {
    gap: 17px;
  }
  .nav > a:not(.button) {
    font-size: 12px;
  }
  .nav .button-small {
    font-size: 12px;
    padding: 11px 12px;
    gap: 8px;
  }
  .hero {
    padding-top: 35px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .hero-bottom {
    margin-top: 35px;
  }
  .app-body {
    padding: 24px;
  }
  .hero-stage .app-title {
    font-size: 27px;
  }
  .panel-heading > strong {
    font-size: 13px;
  }
  .appointment strong {
    font-size: 12px;
  }
  .appointment small {
    font-size: 8px;
  }
  .appointment > span {
    font-size: 10px;
  }
  .demo-content {
    min-height: 300px;
  }
  .week-grid {
    min-height: 210px;
  }
  .tools-layout {
    gap: 45px;
  }
  .section-intro h2 {
    font-size: 35px;
  }
  .tool-story h3 {
    font-size: 26px;
  }
  .local-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
  }
  .local-copy {
    padding-block: 80px;
  }
  .local-copy h2 {
    font-size: 34px;
  }
  .landscape-sun {
    width: 220px;
    height: 220px;
    margin-left: -110px;
    bottom: 192px;
  }

  .faq-layout,
  .contact-grid {
    gap: 40px;
  }
  .contact-form {
    padding: 26px;
  }
  .contact-copy h2 {
    font-size: 35px;
  }
  .contact-mail {
    font-size: 19px;
  }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 0.68fr 1fr;
    gap: 32px;
  }
  .hero h1 {
    font-size: 8.5vw;
  }
  .hero-copy {
    padding-top: 25px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-note {
    font-size: 11px;
  }
  .hero-stage {
    padding-block: 22px 30px;
  }
  .hero-stage .app-body {
    padding: 20px 12px 14px;
  }
  .workshop-layout {
    gap: 40px;
  }
  .workshop-heading h2 {
    font-size: 45px;
  }
  .workshop-copy .workshop-lead {
    font-size: 23px;
  }
  .workshop-copy > p {
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  :root {
    --header-height: 76px;
    --gutter: 24px;
  }
  .section {
    padding-block: 72px;
  }
  .header-inner {
    gap: 15px;
    position: relative;
    flex-wrap: wrap;
  }
  .brand img {
    width: 144px;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: calc(-1 * var(--gutter));
    right: calc(-1 * var(--gutter));
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 24px;
    box-shadow: 0 16px 18px -20px rgba(15, 13, 48, 0.35);
  }
  .header.menu-expanded .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .header.menu-expanded .menu-open {
    display: none;
  }
  .header.menu-expanded .menu-close {
    display: block;
  }
  .nav > a:not(.button) {
    font-size: 16px;
    padding-block: 8px;
  }
  .nav .button-small {
    font-size: 14px;
    min-height: 48px;
    margin-top: 8px;
    justify-content: space-between;
  }
  .hero {
    padding-top: 37px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 25px;
  }

  .band-peach {
    height: 140px;
    right: -12px;
    border-radius: 60px 12px 12px 12px;
  }
  .band-lavender {
    left: -12px;
    height: 125px;
    bottom: 24px;
    border-radius: 12px 12px 50px 12px;
  }
  .app-chrome {
    height: 39px;
    padding-inline: 12px;
    font-size: 9px;
  }
  .app-chrome img {
    width: 20px;
    height: 20px;
  }
  .app-body {
    padding: 18px 13px 13px;
  }
  .hero-stage .app-title {
    font-size: 24px;
  }
  .app-heading {
    margin-bottom: 13px;
  }
  .app-eyebrow {
    font-size: 8px;
  }
  .demo-tabs {
    gap: 26px;
  }
  .demo-tabs button {
    font-size: 12px;
  }
  .demo-content {
    min-height: 278px;
  }
  .demo-panel {
    padding-top: 17px;
  }
  .panel-heading {
    margin-bottom: 14px;
  }
  .panel-heading > strong {
    font-size: 11px;
  }
  .panel-heading > span {
    font-size: 9px;
  }
  .week-grid {
    gap: 6px;
    min-height: 199px;
  }
  .day {
    padding: 7px 4px;
  }
  .day > p {
    font-size: 7px;
  }
  .appointment {
    padding: 8px 5px;
  }
  .appointment small {
    font-size: 6px;
  }
  .appointment strong {
    font-size: 9px;
  }
  .appointment > span {
    font-size: 7px;
  }
  .panel-foot {
    font-size: 8px;
  }
  .demo-caption {
    font-size: 8px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .hero-bottom {
    padding-block: 18px;
    margin-top: 27px;
    gap: 15px;
    font-size: 10px;
  }
  .hero-bottom > p:nth-child(2) {
    display: none;
  }
  .hero-bottom .icon {
    width: 15px;
    height: 15px;
  }
  .tools-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .section-intro {
    position: static;
  }
  .section-intro h2 {
    font-size: 38px;
  }
  .section-intro > p:not(.eyebrow) {
    max-width: 440px;
    margin-top: 23px;
    font-size: 15px;
  }
  .tools-signature {
    margin-top: 26px;
  }
  .tool-story {
    padding-bottom: 30px;
    margin-bottom: 29px;
  }
  .tool-story h3 {
    font-size: 28px;
  }
  .story-top {
    margin-bottom: 17px;
  }
  .tool-story > p {
    font-size: 15px;
  }
  .local-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .local-copy {
    padding-block: 70px 20px;
  }
  .local-copy h2 {
    font-size: 35px;
  }
  .local-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .local-copy > .local-signoff {
    margin-top: 25px !important;
  }
  .local-landscape {
    height: 342px;
    min-height: 0;
    margin-bottom: 25px;
  }
  .landscape-label {
    top: 18px;
    font-size: 9px;
  }
  .landscape-sun {
    width: 210px;
    height: 210px;
    margin-left: -105px;
    bottom: 111px;
  }
  .horizon-line {
    bottom: 126px;
  }
  .landscape-grid {
    height: 95px;
    bottom: 31px;
  }
  .landscape-caption {
    bottom: 4px;
    font-size: 10px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .faq-layout h2 {
    font-size: 37px;
  }
  .faq-intro {
    margin-top: 21px;
  }
  .faq-list summary {
    font-size: 15px;
    min-height: 75px;
    gap: 18px;
  }
  .faq-answer {
    padding-right: 10px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-copy h2 {
    font-size: 39px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .contact-mark {
    display: none;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .field input,
  .field textarea {
    font-size: 16px;
  }
  .contact-mail {
    font-size: 21px;
  }
  .contact-copy > .contact-note {
    margin-top: 20px !important;
  }
  .footer-inner {
    min-height: 100px;
    font-size: 10px;
    gap: 15px;
  }
  .footer-inner > p {
    max-width: 215px;
  }
  .footer-inner p > span {
    padding-inline: 4px;
  }
  .footer-inner > a {
    gap: 8px;
    white-space: nowrap;
  }
  .client-state {
    font-size: 7px;
  }
  .client-list strong {
    font-size: 10px;
  }
  .client-list div > span {
    font-size: 8px;
  }
}
/* Navigation disponible aussi si JavaScript est désactivé. */
@media (max-width: 700px) {
  html:not(.js) .menu-toggle {
    display: none;
  }
  html:not(.js) .nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    width: 100%;
    padding: 0 0 15px;
    box-shadow: none;
  }
  html:not(.js) .nav > a:not(.button) {
    font-size: 13px;
  }
  html:not(.js) .nav .button {
    margin: 0;
  }
}
@media (max-width: 700px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-heading > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .hero h1 {
    margin-top: 24px;
    font-size: clamp(39px, 9.7vw, 66px);
    line-height: 1.06;
    letter-spacing: -0.055em;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero-description {
    max-width: 440px;
    font-size: 17px;
  }
  .hero-actions {
    margin-top: 23px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .hero-note {
    margin-top: 18px;
  }
  .hero-stage {
    width: 100%;
    margin-top: 12px;
    padding-block: 24px;
  }
  .band-peach {
    border-radius: 48px 0 0 0;
  }
  .band-lavender {
    bottom: 6px;
    border-radius: 0 0 48px 0;
  }
  .hero-bottom {
    margin-top: 14px;
  }
  .workshop-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .workshop-heading h2 {
    font-size: clamp(39px, 10vw, 55px);
  }
  .workshop-heading .text-link {
    margin-top: 20px;
  }
  .workshop-copy {
    padding-top: 0;
  }
  .workshop-copy .workshop-lead {
    font-size: 25px;
  }
}
@media (max-width: 360px) {
  :root {
    --gutter: 20px;
  }

  .app-body {
    padding-inline: 10px;
  }
  .app-heading {
    margin-bottom: 10px;
  }
  .app-title {
    font-size: 22px !important;
  }
  .appointment > span {
    display: none;
  }
  .appointment strong {
    font-size: 8px;
  }
  .appointment small {
    font-size: 5.5px;
  }
  .panel-heading > strong {
    font-size: 10px;
  }
  .day > p {
    font-size: 6px;
  }
  .hero-bottom {
    font-size: 9px;
  }
  .contact-copy h2,
  .section-intro h2 {
    font-size: 34px;
  }
  .contact-form {
    padding: 22px 16px;
  }
  .client-state {
    display: none;
  }
  .client-list {
    margin-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-parallax],
  [data-reveal],
  .button:active,
  .demo-action:active,
  .text-link .icon {
    transform: none !important;
  }
  [data-reveal] {
    opacity: 1 !important;
  }
}
@media print {
  .header,
  .hero-stage,
  .local-landscape,
  .contact-form,
  .scroll-link,
  .skip-link {
    display: none;
  }
  .section,
  .local-copy {
    padding-block: 25px;
  }
  body,
  .local-section {
    background: white;
    color: #000;
  }
  .local-copy > p:not(.eyebrow),
  .local-copy .eyebrow,
  .local-copy > .local-signoff {
    color: #000 !important;
  }
  .wrap {
    width: 100%;
  }
  .hero {
    padding: 0;
  }

  .hero-grid,
  .workshop-layout,
  .local-grid,
  .tools-layout,
  .contact-grid {
    display: block;
  }
  .section-intro {
    position: static;
  }
  .hero-bottom {
    margin-top: 20px;
  }
  .tool-stories {
    margin-top: 25px;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .button {
    background: white;
    color: #000;
    border: 1px solid #000;
  }
  details .faq-answer {
    display: block;
  }
  a[href^="mailto:"] {
    text-decoration: underline;
  }
}
