:root {
  --bg: #070C12;
  --bg-soft: #0F141A;
  --card: #111419;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --accent: #ffffff;
  --border: #2a2a2a;
  --highlight: #e8e8e8;
  --max: 1120px;
  --header-max: 1320px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 12, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  width: min(var(--header-max), calc(100% - 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 116px;
  padding: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-wordmark {
  color: var(--text);
  font-weight: 600;
}

.logo-wordmark > span { color: var(--muted); font-weight: 400; }

.brand-sigil {
  width: 32px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo--art {
  align-self: flex-end;
  width: 392px;
  height: 116px;
  gap: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.2s ease;
}

.logo--art:hover {
  opacity: 0.94;
}

.logo--art:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.brand-header-art {
  display: block;
  width: 392px;
  height: 116px;
  object-fit: cover;
  object-position: center top;
}

.logo--cat-wordmark {
  height: 116px;
  gap: 8px;
  font-size: 22px;
}

.brand-header-cat {
  display: block;
  width: auto;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Marque inline (footers, texte) — même rendu que .logo */
.brand-mark {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: inherit;
}
.brand-mark span { color: var(--muted); font-weight: 400; }

.site-footer .brand-mark { font-size: 14px; }

.site-nav--desktop {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 1;
  min-width: 0;
}

.site-nav--desktop a:not(.btn) {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav--desktop a:not(.btn):hover { color: var(--text); }

.site-nav--desktop a:not(.btn)[aria-current="page"] {
  color: var(--text);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-nav__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

.btn-sm {
  padding: 12px 22px;
  font-size: 14px;
}

.site-nav--desktop a.site-nav__console--auth {
  color: var(--text);
  font-weight: 500;
}

/* Bouton hamburger (mobile / tablette étroite) */
.site-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.site-nav-toggle:hover { background: var(--bg-soft); }

.site-nav-toggle__bar {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
}

.site-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.site-header.is-nav-open ~ .site-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.site-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: min(280px, 84vw);
  height: 100%;
  height: 100dvh;
  padding: 20px 24px 24px;
  box-sizing: border-box;
  background: var(--bg-soft);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.site-header.is-nav-open ~ .site-nav-drawer {
  transform: translateX(0);
}

.site-nav-drawer__close {
  display: block;
  margin: 0 0 24px auto;
  padding: 4px;
  border: none;
  background: none;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.site-nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-nav-drawer__links a:not(.btn) {
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
}

.site-nav-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.site-nav-drawer__actions .btn {
  width: 100%;
  justify-content: center;
}

.site-nav-drawer a.site-nav__console--auth {
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: #d4d4d4;
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover { border-color: var(--muted); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 40px 48px;
  align-items: start;
}

.hero-content,
.hero-chat,
.hero-stats {
  position: relative;
  z-index: 2;
}

.hero-content { min-width: 0; }

.hero-scroll-cat {
  --hero-cat-x: 0px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  filter: blur(5px);
  transform: translate3d(var(--hero-cat-x), 0, 0);
  transform-origin: left bottom;
  will-change: transform, opacity, filter;
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-scroll-cat.is-ready {
  opacity: var(--hero-cat-opacity, 1);
  filter: blur(0);
}

.hero-scroll-cat.is-traveling {
  transition: opacity 0.12s linear, filter 0.2s ease;
}

.hero-scroll-cat.is-complete {
  opacity: 0;
  filter: blur(3px);
}

.hero-scroll-cat img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Fondu doux sur tous les bords → plus de cadre rectangulaire */
  -webkit-mask-image: radial-gradient(
    ellipse 68% 72% at 50% 48%,
    #000 18%,
    rgba(0, 0, 0, 0.85) 42%,
    rgba(0, 0, 0, 0.35) 62%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 68% 72% at 50% 48%,
    #000 18%,
    rgba(0, 0, 0, 0.85) 42%,
    rgba(0, 0, 0, 0.35) 62%,
    transparent 78%
  );
}

.hero-stats--wide {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero h1 { max-width: none; }
  .hero-chat { order: -1; }
  .hero-scroll-cat { display: none; }
}

/* Hero chat démo */
.hero-chat {
  --hero-chat-accent: #ffffff;
  min-height: 480px;
}

.hero-chat--loading .hero-chat-card {
  opacity: 0.6;
  pointer-events: none;
}

.hero-chat-card {
  display: flex;
  flex-direction: column;
  height: min(520px, calc(100vh - 140px));
  min-height: 420px;
  background: linear-gradient(165deg, rgba(15, 20, 26, 0.95) 0%, rgba(7, 12, 18, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 80px color-mix(in srgb, var(--hero-chat-accent) 12%, transparent);
  overflow: hidden;
}

.hero-chat-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.hero-chat-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-chat-header-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.hero-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hero-chat-expand,
.hero-chat-tts {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.hero-chat-expand:hover,
.hero-chat-tts:hover {
  border-color: color-mix(in srgb, var(--hero-chat-accent) 50%, var(--border));
  background: color-mix(in srgb, var(--hero-chat-accent) 10%, transparent);
}

.hero-chat-tts.active {
  color: var(--hero-chat-accent);
  border-color: color-mix(in srgb, var(--hero-chat-accent) 50%, var(--border));
}

.hero-chat-card--expanded {
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: 20px;
}

.hero-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hero-chat-modal.hidden { display: none; }

.hero-chat-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.hero-chat-modal__panel {
  position: relative;
  z-index: 1;
  width: 70vw;
  height: 70vh;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
}

body.hero-chat-modal-open { overflow: hidden; }

.hero-chat-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  flex-shrink: 0;
  animation: hero-chat-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-chat-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}

.hero-chat-title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-chat-disclaimer {
  margin: 0;
  line-height: 1.45;
  padding: 0 20px 12px;
  font-size: 11.5px;
}

.hero-chat-disclaimer--top {
  padding: 0 20px 12px;
  border-bottom: 1px solid var(--border);
}

.hero-chat-disclaimer--bottom {
  font-size: 10px;
  line-height: 1.35;
  padding: 2px 20px 10px;
  border-top: none;
  opacity: 0.85;
}

.hero-chat-card:has(.hero-chat-disclaimer--bottom:not([hidden])) .hero-chat-input-zone {
  padding-bottom: 8px;
}

.hero-chat-disclaimer[hidden] { display: none !important; }

.hero-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.hero-chat-msg {
  max-width: 92%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.hero-chat-msg--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.hero-chat-msg--user {
  align-self: flex-end;
  background: color-mix(in srgb, var(--hero-chat-accent) 18%, var(--card));
  border: 1px solid color-mix(in srgb, var(--hero-chat-accent) 35%, var(--border));
}

.hero-chat-attach-chip {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 11.5px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-chat-msg p { margin: 0 0 0.5em; }
.hero-chat-msg p:last-child { margin-bottom: 0; }
.hero-chat-msg ul { margin: 0.4em 0; padding-left: 1.2em; }
.hero-chat-msg a { color: var(--hero-chat-accent); text-decoration: underline; text-underline-offset: 2px; }
.hero-chat-msg--bot a {
  color: #7eb8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-chat-msg--bot a:hover { color: #a5d4ff; }
.hero-chat-msg--user a { color: var(--hero-chat-accent); }

.hero-chat-welcome { font-size: 13.5px; }

.hero-chat-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  height: 1em;
}

.hero-chat-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: hero-chat-dot 1.2s ease-in-out infinite;
}

.hero-chat-dots i:nth-child(2) { animation-delay: 0.15s; }
.hero-chat-dots i:nth-child(3) { animation-delay: 0.3s; }

@keyframes hero-chat-dot {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.hero-chat-stopped {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.hero-chat-sources {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.hero-chat-sources summary {
  cursor: pointer;
  user-select: none;
}

.hero-chat-sources ul {
  margin: 6px 0 0;
  padding-left: 1.1em;
}

.hero-chat-sources a { color: var(--muted); }
.hero-chat-sources a:hover { color: var(--text); }

.hero-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.hero-chat-suggestion {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 12px;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}

.hero-chat-suggestion:hover {
  border-color: color-mix(in srgb, var(--hero-chat-accent) 50%, var(--border));
  background: color-mix(in srgb, var(--hero-chat-accent) 8%, transparent);
}

.hero-chat-input-zone {
  border-top: 1px solid color-mix(in srgb, var(--hero-chat-accent) 35%, var(--border));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--hero-chat-accent) 7%, transparent),
    rgba(0, 0, 0, 0.38)
  );
  padding: 12px 16px 16px;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--hero-chat-accent) 14%, transparent);
}

.hero-chat-try-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--hero-chat-accent) 80%, var(--text));
}

.hero-chat-try-hint__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hero-chat-accent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--hero-chat-accent) 65%, transparent);
  animation: hero-chat-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-chat-attach-preview {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  font-size: 12.5px;
  color: var(--muted);
}

.hero-chat-attach-chip--preview {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  margin-top: 0;
}

.hero-chat-attach-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
}

.hero-chat-attach-remove:hover { color: var(--text); }

.hero-chat-form {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 0;
  border-top: none;
  background: transparent;
}

.hero-chat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--hero-chat-accent) 32%, var(--border));
  background: rgba(255, 255, 255, 0.04);
  color: color-mix(in srgb, var(--hero-chat-accent) 65%, var(--muted));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.hero-chat-icon:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--hero-chat-accent) 50%, var(--border));
  color: var(--text);
}

.hero-chat-icon:disabled { opacity: 0.45; cursor: not-allowed; }

.hero-chat-mic.listening {
  color: #ef4444;
  border-color: color-mix(in srgb, #ef4444 45%, var(--border));
  animation: hero-chat-mic-pulse 1.2s ease-in-out infinite;
}

@keyframes hero-chat-mic-pulse {
  50% { opacity: 0.45; }
}

.hero-chat-input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--hero-chat-accent) 42%, var(--border));
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}

.hero-chat-input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.hero-chat-input:focus {
  outline: none;
  border-color: var(--hero-chat-accent);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hero-chat-accent) 20%, transparent);
}

.hero-chat-send,
.hero-chat-stop {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--hero-chat-accent);
  color: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.hero-chat-send:disabled { opacity: 0.45; cursor: not-allowed; }
.hero-chat-send:hover:not(:disabled) { opacity: 0.9; }

.hero-chat-stop {
  background: #ef4444;
  color: #fff;
  font-size: 14px;
}

.hero-chat-error {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.muted { color: var(--muted); }
.small { font-size: 13px; }
.hidden { display: none !important; }

.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 0 0 28px;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 24px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  min-width: 0;
}

.stat-value {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* Sections */
section { padding: 88px 0; }

.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 20ch;
}

.section-intro {
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 48px;
  font-size: 1.05rem;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: #444; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-card .feature-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.hero-chat-card--placeholder .hero-chat-input-zone {
  display: flex;
  justify-content: center;
}

.hero-chat-card--placeholder .hero-chat-input-zone .btn {
  width: auto;
}

.hero-chat-error,
.hero-chat-consent-msg {
  padding: 24px;
  color: var(--muted);
  font-size: 14px;
}

/* Compare */
.compare {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 1179px) {
  .site-nav--desktop { display: none; }

  .site-nav-toggle { display: inline-flex; }

  body.site-nav-open { overflow: hidden; }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-header .inner {
    width: min(var(--header-max), calc(100% - 32px));
    min-height: 88px;
    padding: 0;
  }

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

  .logo {
    font-size: 13px;
    gap: 8px;
    min-width: 0;
  }

  .brand-sigil {
    width: 28px;
    height: 35px;
  }

  .logo--art,
  .brand-header-art {
    width: 296px;
    height: 88px;
  }

  .logo--cat-wordmark {
    height: 88px;
    gap: 7px;
    font-size: 18px;
  }

  .brand-header-cat {
    height: 52px;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero-chat {
    display: none !important;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .stat-value { font-size: 1.65rem; }

  section { padding: 64px 0; }

  .compare-col { padding: 24px 20px; }

  .pricing-billing-toggle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .pricing-billing-toggle__btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .cta { padding: 72px 0; }
}

.compare-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.compare-col h3 {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 500;
}

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

.compare-col li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.compare-col li:last-child { border-bottom: none; }

.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.compare-col.highlight li::before { background: var(--accent); }

.compare-col.highlight li { color: var(--text); }

.compare-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

/* Use cases */
.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.use-case {
  padding: 24px;
  border-left: 2px solid var(--border);
}

.use-case h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
}

.use-case p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  padding: 0 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 18px 0;
  list-style: none;
}

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

.faq-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 0;
  margin-top: 36px;
  padding: 0;
  min-height: 152px;
  overflow: hidden;
  text-align: center;
  border-radius: 16px;
  border: 2px solid var(--highlight);
  background: #0F1620;
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.12);
}
.faq-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 28px 32px 28px 12px;
}
.faq-cta__cat {
  position: relative;
  align-self: stretch;
  min-height: 152px;
  pointer-events: none;
  /* Prolonge le fond photo sur toute la colonne (pas de bande #070C12) */
  background: #0F1620;
}
.faq-cta__cat img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 152px;
  object-fit: cover;
  object-position: 32% 42%;
  /* Fondu à droite → plus de bord rectiligne */
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 96%);
  mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 96%);
}
.faq-cta__btn {
  font-size: 1.1rem;
  padding: 14px 28px;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.28);
}
.faq-cta__hint {
  margin: 12px 0 0;
  font-size: 14px;
}

@media (max-width: 640px) {
  .faq-cta {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .faq-cta__cat {
    display: none;
  }
  .faq-cta__content {
    padding: 24px 20px;
  }
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}

.faq-item[open] summary::after { content: "−"; }

.faq-answer {
  padding-bottom: 18px;
}

.faq-lead {
  font-weight: 500;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.6;
}

.faq-answer p:not(.faq-lead) {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 10px;
  font-size: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-item a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Pricing */
.pricing {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-trial {
  margin: 0 0 28px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-soft, #111820) 80%, var(--bg));
}

.pricing-trial__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
}

.pricing-trial__kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-trial__lead {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  max-width: 52rem;
}

.pricing-trial .pricing-upgrade-hint {
  margin: 0;
}

.pricing-trial__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.pricing-trial__features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0 20px;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.pricing-trial__features li {
  border-bottom: none;
  padding: 5px 0 5px 22px;
  font-size: 13px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: #444; }

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pricing-amount--from {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  margin: 4px 0 0;
}

.pricing-from-label {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: lowercase;
}

.pricing-enterprise {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 24px;
  padding: 0;
  overflow: hidden;
  min-height: 280px;
  background: #0A0E14;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--border));
  border-radius: 20px;
  transition: border-color 0.2s;
}

.pricing-enterprise:hover {
  border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
}

.pricing-enterprise__intro {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 32px 28px 32px 36px;
  border-right: 1px solid var(--border);
  background: #0A0E14;
}

.pricing-enterprise__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-enterprise__title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pricing-enterprise__desc {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-enterprise__note {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-enterprise__cta {
  width: 100%;
  margin-top: auto;
}

.pricing-enterprise__body {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 32px min(260px, 30%) 32px 28px;
  background: transparent;
}

.pricing-enterprise__lead {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.pricing-enterprise__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-enterprise__features li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.pricing-enterprise__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 12px;
  color: var(--accent);
}

.pricing-enterprise__cat {
  position: absolute;
  top: 0;
  right: -28px;
  bottom: 0;
  z-index: 1;
  width: min(400px, 44%);
  pointer-events: none;
  background: transparent;
  /* Fondu court à gauche : tête reste lisible */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 8%,
    rgba(0, 0, 0, 0.75) 16%,
    #000 26%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 8%,
    rgba(0, 0, 0, 0.75) 16%,
    #000 26%,
    #000 100%
  );
}

.pricing-enterprise__cat img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 92% 52%;
  transform: scaleX(-1);
}

.pricing-enterprise__addons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.pricing-enterprise__addon {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 5%, var(--bg-soft));
  border: 1px dashed color-mix(in srgb, var(--accent) 22%, var(--border));
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

.pricing-enterprise__addon:last-child {
  border-style: solid;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 959px) {
  .pricing-trial__main {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-trial__cta {
    width: 100%;
    text-align: center;
  }

  .pricing-trial__features {
    grid-template-columns: 1fr;
  }

  .pricing-enterprise {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
  }

  .pricing-enterprise__intro {
    padding: 28px 24px;
    border-right: none;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  .pricing-enterprise__body {
    padding: 24px;
    background: #0A0E14;
  }

  .pricing-enterprise__features {
    grid-template-columns: 1fr;
  }

  .pricing-enterprise__cat {
    display: none;
  }
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-header h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 500;
}

.pricing-desc {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 500;
}

.pricing-currency span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.pricing-note {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-savings {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.pricing-savings.hidden { display: none; }

.pricing-upgrade-hint {
  margin: -12px 0 20px;
  font-size: 12px;
  line-height: 1.45;
}

.pricing-multi-instance {
  margin: 0 0 20px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  background: color-mix(in srgb, var(--accent) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
  border-radius: 10px;
}

.pricing-multi-instance strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
}

.pricing-multi-instance.hidden { display: none; }

.pricing-reassurance {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.pricing-features {
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 12px;
  color: var(--accent);
}

.pricing-card.popular .pricing-features li { color: var(--text); }

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-billing-toggle-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-promo-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.pricing-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
}

.pricing-billing-toggle__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.pricing-billing-toggle__btn.is-active {
  background: var(--accent);
  color: var(--bg);
}

.pricing-billing-toggle__badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: inherit;
  font-size: 12px;
  font-weight: 600;
}

.pricing-billing-toggle__btn:not(.is-active) .pricing-billing-toggle__badge {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.pricing-promo {
  max-width: 280px;
  margin: -8px auto 28px;
  padding: 0;
  border: none;
  background: transparent;
}

.pricing-promo__summary {
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  user-select: none;
}

.pricing-promo__summary::-webkit-details-marker {
  display: none;
}

.pricing-promo__summary::after {
  content: " ▸";
  font-size: 11px;
  opacity: 0.7;
}

.pricing-promo[open] .pricing-promo__summary::after {
  content: " ▾";
}

.pricing-promo__summary:hover {
  color: var(--text);
}

.pricing-promo__body {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.pricing-promo__label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 4px;
}

.pricing-promo__row {
  display: grid;
  gap: 6px;
}

.pricing-promo__input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  background: var(--card);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-promo__input::placeholder {
  color: var(--muted);
  opacity: 0.65;
  text-transform: none;
  letter-spacing: normal;
}

.pricing-promo__hint {
  margin: 0;
  line-height: 1.4;
  font-size: 12px;
}

.pricing-promo__error {
  margin: 10px 0 0;
  color: #991b1b;
  font-size: 14px;
}

.pricing-promo__error.hidden {
  display: none;
}

.pricing-options {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.pricing-options-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}

.pricing-options-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-options-title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-wrap: balance;
}

.pricing-options-intro {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
  text-wrap: pretty;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.option-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 148px;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 14px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.option-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--highlight);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.option-item:hover {
  border-color: color-mix(in srgb, var(--text) 20%, var(--border));
  background: color-mix(in srgb, var(--bg) 95%, var(--text));
}

.option-item:hover::before {
  opacity: 0.7;
}

.option-item[data-included-from="business"] {
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--text) 5%, transparent), transparent 46%),
    var(--bg);
}

.option-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 22px;
  gap: 8px;
}

.option-category {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.option-name {
  color: var(--text);
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-wrap: balance;
}

.option-included-note {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  background: color-mix(in srgb, var(--text) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 16%, var(--border));
  border-radius: 999px;
  white-space: nowrap;
}

.option-billing-note {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.option-price {
  margin-top: auto;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: normal;
  text-align: left;
  min-width: 0;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}

#option-extra-instance-price {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .pricing-options {
    margin-top: 48px;
    padding-top: 36px;
  }

  .pricing-options-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

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

  .option-item {
    min-height: 136px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cat {
    display: none;
  }

  .option-item,
  .option-item::before {
    transition: none;
  }
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.cta p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 32px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  min-width: 0;
}

.footer-links a:hover { color: var(--text); }

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
}

.footer-link-btn:hover { color: var(--text); }
