/* PharmExa — vitrine */

:root {
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-hand: "Dancing Script", "Caveat", "Segoe Script", cursive;
  --font-body: "Sora", "Segoe UI", sans-serif;

  --ink: #142019;
  --ink-soft: #3a4a3e;
  --muted: #5f7164;
  --paper: #f3f7f4;
  --paper-2: #e8f0ea;
  --surface: rgba(255, 255, 255, 0.72);
  --line: rgba(20, 32, 25, 0.1);
  --accent: #2f6b3a;
  --accent-bright: #4cae5c;
  --accent-deep: #1a3d24;
  --glow: rgba(76, 174, 92, 0.22);
  --shadow: 0 24px 60px rgba(20, 32, 25, 0.12);
  --nav-h: 4.5rem;
  --banner-h: 3.15rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #eef5f0;
  --ink-soft: #c5d4c9;
  --muted: #93a699;
  --paper: #0d1510;
  --paper-2: #15211a;
  --surface: rgba(18, 30, 22, 0.78);
  --line: rgba(238, 245, 240, 0.1);
  --accent: #6dcf7d;
  --accent-bright: #8fe09c;
  --accent-deep: #245532;
  --glow: rgba(109, 207, 125, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: transparent;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: transparent;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

i[data-lucide] {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.2em;
  flex-shrink: 0;
  stroke-width: 2;
}

.ticker {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, var(--paper));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.7rem 0;
  animation: ticker 28s linear infinite;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.ticker__track span::before {
  content: "✦ ";
  color: var(--accent-bright);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ico--inline {
  width: 1em;
  height: 1em;
  margin-right: 0.25rem;
}

.ico-bubble {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: var(--accent);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent-bright) 22%, var(--surface)), var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  box-shadow: 0 8px 20px var(--glow);
  animation: icoFloat 4.5s var(--ease) infinite;
}

.ico-bubble .ico {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: 0;
}

.ico-bubble--sm {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.7rem;
  display: inline-grid;
  margin-right: 0.45rem;
  vertical-align: -0.45rem;
  animation-duration: 5.2s;
}

.ico-bubble--sm .ico {
  width: 1.05rem;
  height: 1.05rem;
}

#pgLiveCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, var(--glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(47, 107, 58, 0.12), transparent 50%),
    linear-gradient(165deg, var(--paper) 0%, var(--paper-2) 48%, var(--paper) 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: orbDrift 18s ease-in-out infinite;
}

.orb--1 {
  width: 22rem;
  height: 22rem;
  left: -6rem;
  top: 8%;
  background: color-mix(in srgb, var(--accent-bright) 45%, transparent);
}

.orb--2 {
  width: 16rem;
  height: 16rem;
  right: -4rem;
  top: 38%;
  background: color-mix(in srgb, var(--accent) 38%, transparent);
  animation-duration: 22s;
  animation-direction: reverse;
}

.orb--3 {
  width: 18rem;
  height: 18rem;
  left: 38%;
  bottom: 4%;
  background: color-mix(in srgb, #1f6f8b 28%, transparent);
  animation-duration: 26s;
}

html[data-theme="dark"] .atmosphere {
  background:
    radial-gradient(ellipse 70% 45% at 20% 0%, rgba(109, 207, 125, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 35% at 85% 15%, rgba(36, 85, 50, 0.35), transparent 50%),
    linear-gradient(165deg, #0a110d 0%, #121c15 45%, #0d1510 100%);
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Nav ——— */
.site-banner {
  margin: 0;
  padding: 0.65rem 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.85vw, 1.08rem);
  font-weight: 450;
  font-optical-sizing: auto;
  letter-spacing: 0.015em;
  line-height: 1.4;
  color: var(--ink-soft);
  background:
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 18%, transparent), transparent),
    color-mix(in srgb, var(--accent) 12%, var(--paper));
  background-size: 220% 100%, 100% 100%;
  animation: bannerShine 8s linear infinite;
  border-bottom: 1px solid var(--line);
}

.site-banner__key {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px) saturate(1.2);
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav__inner {
  position: relative;
  width: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.nav__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
}

.nav__center nav,
.nav__center .nav__links {
  pointer-events: auto;
}

.nav__actions {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-left: auto;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.nav__brand-frame {
  display: grid;
  place-items: center;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 1.05rem;
  overflow: hidden;
  background: #fefefe;
  border: 1px solid #f0f0f0;
  box-shadow:
    0 5px 12px rgba(15, 40, 30, 0.14),
    inset 0 10px 12px rgba(255, 255, 255, 0.95),
    inset 0 -7px 10px rgba(0, 0, 0, 0.08);
}

.nav__brand img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links li {
  white-space: nowrap;
}

.nav__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.45rem;
  min-width: 2.45rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.22s var(--ease),
    box-shadow 0.28s var(--ease);
}

.nav__chip-icon {
  display: grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  opacity: 1;
  transform: scale(1);
  overflow: hidden;
  transition:
    width 0.38s var(--ease),
    opacity 0.22s var(--ease),
    transform 0.38s var(--ease);
}

.nav__chip-icon i,
.nav__chip-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.nav__chip-text {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(0.35rem);
  transition:
    max-width 0.42s var(--ease),
    opacity 0.22s var(--ease),
    transform 0.38s var(--ease);
}

.nav__chip:hover,
.nav__chip:focus-visible {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--paper));
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 16%, transparent);
}

.nav__chip:hover .nav__chip-icon,
.nav__chip:focus-visible .nav__chip-icon {
  width: 0;
  opacity: 0;
  transform: scale(0.55);
}

.nav__chip:hover .nav__chip-text,
.nav__chip:focus-visible .nav__chip-text {
  max-width: 13rem;
  opacity: 1;
  transform: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.theme-toggle:hover {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}

.theme-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
  margin: 0.2rem 0;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 28px var(--glow);
}

.btn--pulse {
  animation: ctaPulse 2.6s ease-in-out infinite;
}

html[data-theme="dark"] .btn--primary {
  color: #0d1510;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
}

.btn--ghost {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

/* Libellés courts (téléphone) — le texte long reste dans le DOM pour l’accessibilité. */
.btn__label-short {
  display: none;
}

.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

html.intro-on,
html.intro-on body {
  overflow: hidden;
  height: 100%;
}

html.intro-on .site-rest,
html.intro-on .footer {
  visibility: hidden;
  pointer-events: none;
}

/* ——— Intro plein écran ——— */
.intro {
  box-sizing: border-box;
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--banner-h) + var(--nav-h));
  bottom: 0;
  height: auto;
  min-height: 0;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding: clamp(1.2rem, 5vh, 3rem) clamp(1rem, 4vw, 2rem) clamp(1.4rem, 6vh, 3.4rem);
  z-index: 30;
}

.intro[hidden] {
  display: none !important;
}

.intro__stage {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  width: min(1120px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.2rem, 4vh, 2.4rem);
}

.intro__logo {
  width: clamp(6.5rem, 22vmin, 13rem);
  flex-shrink: 0;
}

.intro__claim {
  margin: 0;
  max-width: min(18em, 94vw);
  text-align: center;
  font-family: var(--font-hand);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.1rem, 7.4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  animation: introGrow 2.1s var(--ease) 0.2s both;
}

.intro__claim-line {
  display: inline-block;
  color: var(--accent-deep);
  transform-origin: center;
  animation: claimPulse 0.55s var(--ease);
}

.intro__claim-sub {
  display: block;
  margin-top: 0.28em;
  font-size: 0.38em;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--accent-deep);
}

.intro__claim:hover .intro__claim-line {
  animation: claimPulseHover 0.55s var(--ease);
}

@keyframes claimPulse {
  0%, 100% { transform: scale(1); }
  42% { transform: scale(0.9); }
}

@keyframes claimPulseHover {
  0%, 100% { transform: scale(1); }
  42% { transform: scale(0.9); }
}

.intro__essentiel {
  flex: 0 0 auto;
  width: min(1120px, 100%);
  margin: 0;
}

@keyframes introGrow {
  from {
    opacity: 0;
    transform: scale(0.38);
    filter: blur(8px);
  }
  62% {
    opacity: 1;
    filter: blur(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* ——— Hero ——— */
.hero {
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: clip;
  background: transparent;
}

.hero__content {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 5rem) 0 clamp(1.5rem, 3vh, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.35rem;
  max-width: 40rem;
}

.hero__logo-frame {
  position: relative;
  align-self: center;
  width: clamp(7.2rem, 24vmin, 14rem);
  aspect-ratio: 1;
  border-radius: 0;
  overflow: visible;
  background: none;
  border: none;
  box-shadow: none;
}

.hero__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(15, 40, 30, 0.16));
}

.hero__headline {
  margin: 0;
  align-self: stretch;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  animation: fadeUp 1s var(--ease) 0.08s both;
}

.hero__essentiel {
  --glass-shine: rgba(255, 255, 255, 0.72);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  align-self: stretch;
  max-width: none;
  padding: 1.05rem 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--ink);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.16) 62%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(20, 32, 25, 0.12);
  border-right-color: rgba(20, 32, 25, 0.1);
  border-radius: 0.95rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    inset 1px 0 0 rgba(255, 255, 255, 0.35),
    0 10px 28px rgba(20, 32, 25, 0.08);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  animation: fadeUp 1s var(--ease) 0.14s both;
}

.hero__essentiel::before,
.hero__essentiel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero__essentiel::before {
  inset: -20% -10% auto auto;
  width: 55%;
  height: 70%;
  background: linear-gradient(
    125deg,
    transparent 18%,
    rgba(255, 255, 255, 0.55) 36%,
    rgba(255, 255, 255, 0.08) 48%,
    transparent 62%
  );
  transform: rotate(-18deg);
  opacity: 0.85;
}

.hero__essentiel::after {
  top: -35%;
  height: 170%;
  width: 32%;
  left: -40%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 22%,
    rgba(255, 255, 255, 0.78) 50%,
    rgba(255, 255, 255, 0.08) 78%,
    transparent 100%
  );
  filter: blur(12px);
  opacity: 0;
  transform: skewX(-16deg);
  animation: essentielHalo 3s ease-in-out infinite;
}

@keyframes essentielHalo {
  0% {
    left: -40%;
    opacity: 0;
  }
  8% {
    opacity: 0.95;
  }
  42% {
    left: 110%;
    opacity: 0.95;
  }
  50%,
  100% {
    left: 110%;
    opacity: 0;
  }
}

.hero__essentiel > span {
  position: relative;
  z-index: 1;
}

html[data-theme="dark"] .hero__essentiel::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 22%,
    rgba(255, 255, 255, 0.58) 50%,
    rgba(255, 255, 255, 0.1) 78%,
    transparent 100%
  );
}

html[data-theme="dark"] .hero__essentiel {
  --glass-shine: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(18, 30, 22, 0.12) 40%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(18, 30, 22, 0.18));
  border-color: rgba(255, 255, 255, 0.22);
  border-bottom-color: rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.22);
}

.hero__title {
  margin: 0;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  animation: fadeUp 1s var(--ease) 0.12s both;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
  animation: pillPop 0.7s var(--ease) both;
}

.hero__pill i[data-lucide] {
  width: 1rem;
  height: 1rem;
  vertical-align: 0;
}

.hero__pill--complet { animation-delay: 0.18s; }
.hero__pill--conforme { animation-delay: 0.28s; }
.hero__pill--connecte { animation-delay: 0.38s; }
.hero__pill--securise { animation-delay: 0.48s; }
.hero__pill--ia { animation-delay: 0.58s; }

.hero__pill--complet {
  background: #2f6b3a;
}

.hero__pill--conforme {
  background: #1f6f8b;
}

.hero__pill--connecte {
  background: #c47a1a;
}

.hero__pill--securise {
  background: #1e4d6b;
}

.hero__pill--ia {
  background: #7a3e2b;
}

html[data-theme="dark"] .hero__pill--complet { background: #4cae5c; color: #0d1510; }
html[data-theme="dark"] .hero__pill--conforme { background: #4db3d1; color: #0d1510; }
html[data-theme="dark"] .hero__pill--connecte { background: #e0a84a; color: #0d1510; }
html[data-theme="dark"] .hero__pill--securise { background: #6aa8c9; color: #0d1510; }
html[data-theme="dark"] .hero__pill--ia { background: #d08a6a; color: #0d1510; }

.hero__lead {
  margin: 0;
  align-self: stretch;
  max-width: none;
  text-align: center;
  font-size: 1.08rem;
  color: var(--muted);
  animation: fadeUp 1s var(--ease) 0.22s both;
}

.hero__rule {
  align-self: stretch;
  width: 100%;
  height: 2px;
  margin-top: 0.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 12%,
    var(--accent-bright) 50%,
    var(--accent) 88%,
    transparent 100%
  );
  box-shadow: 0 0 18px var(--glow);
  animation: fadeUp 1s var(--ease) 0.32s both;
}

.hero__visual {
  position: relative;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto clamp(2rem, 5vh, 3.5rem);
  animation: fadeIn 1.2s var(--ease) 0.2s both;
}

.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper-2);
}

/* ——— Sections ——— */
.section {
  padding: clamp(4.5rem, 10vh, 7.5rem) 0;
}

.section__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.section__text {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Promise */
.promise {
  display: grid;
  gap: 2.5rem;
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.promise__item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.promise__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.promise__num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

/* Showcase */
.showcase {
  display: grid;
  gap: 4.5rem;
}

.showcase__row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}

.showcase__row--reverse {
  grid-template-columns: 1.15fr 1fr;
}

.showcase__row--reverse .showcase__copy {
  order: 2;
}

.showcase__row--reverse .showcase__media {
  order: 1;
}

.showcase__copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.showcase__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.showcase__media {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.showcase__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}

.showcase__media:hover img {
  transform: scale(1.035);
}

.showcase__media--sm {
  max-width: 72%;
  justify-self: center;
}

.showcase__media--xs {
  max-width: 48%;
  justify-self: center;
}

.zoomable-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
}

.zoomable-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Document carte fonctionnelle */
.doc-frame {
  margin: 2.25rem 0 0;
  padding: 0;
}

.doc-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

html[data-theme="dark"] .doc-frame img {
  background: #101814;
}

/* Lightbox zoom */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(8, 14, 12, 0.92);
  backdrop-filter: blur(6px);
}

.img-lightbox[hidden] {
  display: none !important;
}

.img-lightbox__close {
  justify-self: end;
  margin: 0.75rem 1rem 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.img-lightbox__close:hover,
.img-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.img-lightbox__stage {
  overflow: auto;
  display: grid;
  place-items: center;
  padding: 0.5rem 1rem 1rem;
  cursor: grab;
  overscroll-behavior: contain;
}

.img-lightbox__stage.is-dragging {
  cursor: grabbing;
}

.img-lightbox__img {
  max-width: min(96vw, 1100px);
  max-height: 78vh;
  width: auto;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.08s linear;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 0.5rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.img-lightbox__hint {
  margin: 0 0 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.doc-frame figcaption {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.doc-frame figcaption a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ——— Pourquoi PharmExa ——— */
.why {
  position: relative;
}

.why::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent) 45%, transparent),
    transparent
  );
  pointer-events: none;
}

.why__intro .section__title {
  max-width: 18ch;
}

.why__needs {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why__needs > li {
  padding: 1.6rem 1.5rem 1.6rem 0;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.why__needs > li:nth-child(2) .ico-bubble { animation-delay: 0.4s; }
.why__needs > li:nth-child(3) .ico-bubble { animation-delay: 0.8s; }

.why__needs > li + li {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.why__need-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.why__need-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 28ch;
}

.why__pillars {
  margin-top: 3.5rem;
  display: grid;
  gap: 0;
}

.why-pillar {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  gap: clamp(1.15rem, 3vw, 2.25rem);
  padding: 2.35rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: background 0.45s var(--ease);
}

.why-pillar:last-child {
  border-bottom: 1px solid var(--line);
}

/* Badge numéro — cadre 3D (profondeur, biseau, reflet) */
.why-pillar__badge {
  --why-badge-size: 4.35rem;
  position: relative;
  width: var(--why-badge-size);
  height: var(--why-badge-size);
  margin-top: 0.15rem;
  perspective: 520px;
  transform-style: preserve-3d;
}

.why-pillar__badge-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f4faf5;
  border-radius: 0.95rem;
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--accent-bright) 88%, #fff) 0%,
      var(--accent) 42%,
      var(--accent-deep) 100%
    );
  border: 1px solid color-mix(in srgb, #fff 28%, transparent);
  box-shadow:
    0 1px 0 color-mix(in srgb, #fff 35%, transparent) inset,
    0 -10px 18px rgba(0, 0, 0, 0.18) inset,
    0 14px 0 color-mix(in srgb, var(--accent-deep) 88%, #000),
    0 18px 28px rgba(20, 32, 25, 0.28),
    0 4px 10px rgba(47, 107, 58, 0.35);
  transform: rotateX(12deg) rotateY(-8deg) translateZ(0);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.why-pillar__badge-face i[data-lucide] {
  width: 1.55rem;
  height: 1.55rem;
  vertical-align: 0;
}

.why-pillar__badge-face::after {
  content: "";
  position: absolute;
  inset: 0.35rem 0.4rem auto 0.4rem;
  height: 38%;
  border-radius: 0.55rem 0.55rem 40% 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.38),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

html[data-theme="dark"] .why-pillar__badge-face {
  color: #0d1510;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -10px 18px rgba(0, 0, 0, 0.35) inset,
    0 14px 0 color-mix(in srgb, var(--accent-deep) 70%, #000),
    0 18px 32px rgba(0, 0, 0, 0.55),
    0 0 24px var(--glow);
}

.why-pillar__body h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.why-pillar__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.why-pillar__body li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 52rem;
}

/* Puce moderne (losange accent) — visible light + dark */
.why-pillar__body li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.55em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 2px;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--accent) 22%, transparent),
    0 1px 2px rgba(20, 32, 25, 0.18);
  transform: rotate(45deg);
}

.why-pillar__body strong {
  color: var(--ink);
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .why-pillar:hover {
    background: color-mix(in srgb, var(--accent) 4%, transparent);
  }

  .why-pillar:hover .why-pillar__badge-face {
    transform: rotateX(6deg) rotateY(-4deg) translateY(-3px) translateZ(8px);
    box-shadow:
      0 1px 0 color-mix(in srgb, #fff 40%, transparent) inset,
      0 -10px 18px rgba(0, 0, 0, 0.16) inset,
      0 18px 0 color-mix(in srgb, var(--accent-deep) 88%, #000),
      0 26px 36px rgba(20, 32, 25, 0.32),
      0 6px 14px rgba(47, 107, 58, 0.4);
  }
}

/* Liste fonctionnalités (fidèle au document) */
.feat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border-top: 0;
}

.feat {
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 10px 28px rgba(20, 32, 25, 0.05);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feat:hover {
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: 0 18px 40px var(--glow);
}

.feat:nth-child(odd),
.feat:nth-child(even) {
  padding: 1.4rem 1.35rem;
  border-right: 0;
}

.feat__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.feat__ico {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.feat__ico i[data-lucide] {
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: 0;
}

.feat:hover .feat__ico {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 8px 18px var(--glow);
}

.feat__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.feat__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.feat ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feat li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.feat li::before {
  content: "";
  position: absolute;
  left: 0.12rem;
  top: 0.72rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 2px;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 20%, transparent);
  transform: rotate(45deg);
}

.legal-band {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-band h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.legal-band p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  max-width: 52rem;
  font-size: 0.98rem;
}

.legal-band__goal {
  color: var(--ink-soft) !important;
  font-weight: 500;
}

@media (max-width: 800px) {
  .feat-list {
    grid-template-columns: 1fr;
  }

  .feat,
  .feat:nth-child(odd),
  .feat:nth-child(even) {
    padding: 1.5rem 0;
    border-right: 0;
  }
}

/* Cloud band */
.cloud-band {
  position: relative;
  padding: clamp(4rem, 9vh, 6.5rem) 0;
  overflow: clip;
}

.cloud-band__inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.cloud-band__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--accent-deep) 88%, #000) 0%, color-mix(in srgb, var(--accent) 70%, var(--accent-deep)) 100%);
  z-index: -1;
}

html[data-theme="dark"] .cloud-band__bg {
  background: linear-gradient(120deg, #163221 0%, #1f4a2d 55%, #245532 100%);
}

.cloud-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08), transparent 35%);
}

.cloud-band,
.cloud-band .section__eyebrow,
.cloud-band .section__title,
.cloud-band .section__text {
  color: #f4faf5;
}

.cloud-band .section__eyebrow {
  color: rgba(232, 255, 236, 0.78);
}

.cloud-band .section__text {
  color: rgba(236, 247, 239, 0.82);
}

.cloud-band__visual {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.cloud-band__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.12);
}

/* Final CTA */
.final {
  text-align: center;
  padding-bottom: clamp(5rem, 12vh, 8rem);
}

.final .section__title {
  margin-inline: auto;
  max-width: 18ch;
}

.final .section__text {
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.final__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
}

.footer__inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.footer__brand img {
  height: 2.25rem;
  width: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.footer__meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(8, 16, 12, 0.55);
  backdrop-filter: blur(8px);
}

.site-modal[hidden] {
  display: none !important;
}

.site-modal__card {
  width: min(28rem, 100%);
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: pillPop 0.35s var(--ease);
}

.site-modal__card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.site-modal__card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-modal__card form {
  display: grid;
  gap: 0.75rem;
}

.site-modal__card label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.site-modal__card input,
.site-modal__card textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.65rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.site-modal__close {
  float: right;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
}

.site-modal__msg {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Animations */
@keyframes logoRise {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pillPop {
  from { opacity: 0; transform: translateY(12px) scale(0.86); }
  to { opacity: 1; transform: none; }
}

@keyframes icoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, -6%) scale(1.12); }
}

@keyframes bannerShine {
  0% { background-position: 120% 0, 0 0; }
  100% { background-position: -120% 0, 0 0; }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 28px var(--glow); }
  50% { box-shadow: 0 14px 40px color-mix(in srgb, var(--accent-bright) 55%, transparent); }
}

.reveal.is-visible {
  transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .intro__claim {
    animation: none !important;
  }
  .orb,
  .ico-bubble,
  .btn--pulse,
  .site-banner {
    animation: none !important;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
    width: min(100% - 1.5rem, 1120px);
    margin-inline: auto;
    padding: 0;
  }

  .nav__center {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    overflow: visible;
  }

  .nav__actions {
    margin-left: auto;
  }

  .promise__grid,
  .showcase__row,
  .showcase__row--reverse,
  .cloud-band__inner,
  .why__needs {
    grid-template-columns: 1fr;
  }

  .why__needs > li + li {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .why__need-text {
    max-width: none;
  }

  .why-pillar {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .why-pillar__badge {
    --why-badge-size: 3.85rem;
  }

  .showcase__row--reverse .showcase__copy,
  .showcase__row--reverse .showcase__media {
    order: unset;
  }

  .section__title {
    max-width: none;
  }

  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: color-mix(in srgb, var(--paper) 94%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open .nav__links {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__chip {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0.85rem 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    background: transparent;
  }

  .nav__chip-icon {
    width: 1.2rem;
    opacity: 1;
    transform: none;
    margin-right: 0.65rem;
  }

  .nav__chip-text {
    max-width: none;
    opacity: 1;
    transform: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }
  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }
}

@media (max-width: 560px) {
  .wrap,
  .nav__inner,
  .hero__content,
  .cloud-band__inner,
  .footer__inner {
    width: min(100% - 1.5rem, 1120px);
  }

  .hero__cta .btn,
  .final__actions .btn {
    width: 100%;
  }

  .nav__actions .btn {
    min-height: 2.4rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
  }

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

  .nav__actions .btn__label-short {
    display: inline;
  }
}
