:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --soft:#f8fafc;

  --accent:#2563eb;
  --accent-600:#1d4ed8;
  --accent-soft: rgba(37, 99, 235, .12);

  --success:#10b981;
  --success-soft: rgba(16,185,129,.14);

  --max:1100px;
  --radius:16px;
  --shadow:0 14px 34px rgba(15,23,42,.09);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", Arial;
  color:var(--text);
  line-height:1.65;

  /* Background vivant mais sobre */
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(37,99,235,.10), transparent 55%),
    radial-gradient(900px 600px at 98% 0%, rgba(16,185,129,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 55%, #ffffff 100%);
  background-attachment: fixed;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.container h2, .container .section__lead{
  text-align: center;
}

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:12px;
}
.skip:focus{left:12px; z-index:999}

/* Header */
.header{
  position:sticky; top:0;
  background:rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  z-index:10;
}
.header__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 0;
}
.brand{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{color:var(--muted); font-size:13px}

.nav{display:flex; gap:10px; align-items:center}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{background:rgba(15,23,42,.04); color:var(--text)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  text-decoration:none;
  background:rgba(255,255,255,.9);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease, color .14s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow:var(--shadow)}
.btn--primary{
  background: var(--accent);
  color:#fff;
  border-color: var(--accent);
}
.btn--primary:hover{background: var(--accent-600); border-color: var(--accent-600)}
.btn--ghost{background: rgba(15,23,42,.04)}
.iconbtn{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.9);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .14s ease, box-shadow .14s ease;
}
.iconbtn:hover{transform: translateY(-1px); box-shadow:var(--shadow)}
.iconbtn svg{width:18px;height:18px}

/* Typography */
h1,h2,h3{line-height:1.15}
h1{font-size: clamp(34px, 3.6vw, 52px); margin:0 0 12px; letter-spacing:-.7px}
h2{font-size: clamp(22px, 2.4vw, 30px); margin:0 0 10px; letter-spacing:-.3px}
h3{margin:0 0 8px; font-size:18px}
.lead{color:var(--muted); margin:0; max-width: 62ch}
.section__lead{color:var(--muted); margin:0 0 16px;}
.muted{color:var(--muted)}
.small{font-size: 12.5px}

/* Hero */
.hero{padding:56px 0 26px; position:relative; overflow:hidden}
.hero::before{
  content:"";
  position:absolute;
  inset:-120px;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(closest-side at 82% 16%, rgba(16,185,129,.16), transparent 58%),
    radial-gradient(closest-side at 70% 70%, rgba(37,99,235,.10), transparent 60%);
  filter: blur(1px);
  z-index:0;
  pointer-events:none;
}

.stack--hero{
  margin-top: 98px;            /* descend le bloc */
  justify-self: end;           /* si ton hero est en grid */
  max-width: 520px;            /* évite qu'il prenne toute la largeur */
}


.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:18px;
  align-items:start;
  position:relative;
  z-index:1;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid rgba(16,185,129,.35);
  background: rgba(16,185,129,.10);
  color: #065f46;
  border-radius: 999px;
  font-weight:700;
  font-size: 14px;
  margin-bottom: 14px;
}
.dot{
  width:8px;height:8px;border-radius:999px;background:var(--success);
  box-shadow: 0 0 0 4px rgba(16,185,129,.18);
}

.actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}

.pills{
  list-style:none;
  display:flex;
  gap:10px;
  padding:0;
  margin:16px 0 0;
}
.pills li{
  padding:6px 10px;
  border:1px solid rgba(37,99,235,.18);
  background: var(--accent-soft);
  color: #1e3a8a;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
}

.kpis{
  list-style:none;
  padding:0;
  margin: 16px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  align-items:center;
  color: var(--muted);
  font-size: 14px;
}

.kpi{
  display:flex;
  align-items:center;
  gap:10px;
}

.kpi__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(37,99,235,.10);
  color: var(--accent);
}

.kpi__icon svg{ width: 16px; height: 16px; }

.kpi__icon--blue{ background: rgba(37,99,235,.10); color: var(--accent); }
.kpi__icon--green{ background: rgba(16,185,129,.12); color: #10b981; }

.kpi__text strong{ color: var(--text); }

/* Typewriter */
.hero__title{margin:0 0 12px}
.h1-line{display:flex; align-items:baseline; gap:8px}
.h1-static{white-space:nowrap}
.h1-dynamic{display:inline-flex; align-items:baseline; white-space:nowrap}
.tw-wrap{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  min-width: 10ch; /* reserve space, prevents reflow */
}
.tw{display:inline-block; color: var(--accent); font-weight:900}
.caret{
  width: 10px;
  height: 1.05em;
  border-left: 2px solid var(--accent);
  display:inline-block;
  transform: translateY(2px);
  animation: blink 1s steps(1) infinite;
}
.h1-main{display:block; margin-top:6px}
.h1-sub{display:block; margin-top:10px; font-size: clamp(18px, 1.7vw, 22px); color:var(--muted); font-weight:650}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
@keyframes blink{50%{opacity:0}}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .caret{animation:none}
}

/* Side card */
.side__card{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.side__head{display:flex; justify-content:space-between; align-items:center; margin-bottom: 10px}
.side__kicker{font-weight:800; font-size:14px}
.side__pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.8);
  color: var(--muted);
}
.side__list{
  list-style:none;
  padding:0;
  margin:0 0 12px;
  display:grid;
  gap:10px;
  color: var(--muted);
}
.side__list li{display:flex; align-items:center; gap:10px}
.side__icon{
  width:28px;height:28px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  background: var(--accent-soft);
  color: var(--accent);
  flex: 0 0 auto;
}
.side__icon svg{width:18px;height:18px}
.side__meta{
  border-top: 1px solid var(--border);
  padding-top: 10px;
  display:grid;
  gap:6px;
  font-size: 14px;
}
.link{font-weight:800; color: var(--accent); text-decoration: underline; text-underline-offset: 3px}
.link:hover{color: var(--accent-600)}

/* Sections */
.section{padding:38px 0;}
.section--alt{
  background: rgba(255,255,255,.55);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

/* Grid + cards */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.grid--2{grid-template-columns: repeat(2, 1fr)}
.card{
  background: rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(8px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
  border-color: rgba(16,185,129,.55);
  transition: all 0.3s;
}
.card__title{display:flex; align-items:center; gap:10px; margin-bottom: 8px}
.card__icon{

  width:34px;height:34px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  border: 1px solid rgba(15,23,42,.06);
  background: rgba(15,23,42,.02);
  color: var(--muted);
}
.card:hover .card__icon{color: var(--accent); border-color: rgba(37,99,235,.25); background: var(--accent-soft);   transition: all 0.3s;}
.card__icon svg{width:18px;height:18px}
.list{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.card__cta{bottom: 0; left: 0; position: inherit;}

.card p {
  font-size: 12px;
  color: #475569;
}

/* Tones for problem cards */
.card--tone-1,.card--tone-2,.card--tone-3,.card--tone-4{border-top: 3px solid rgba(37,99,235,.25)}

.card--highlight{
  border-color: rgba(37,99,235,.28);
  box-shadow: 0 18px 42px rgba(37,99,235,.12);
}

/* Carousel */
.carousel{
  position: relative;
  margin-top: 16px;
}

.car-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 44px; /* laisse place aux flèches */
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar{ display:none; }

.car-card{
  scroll-snap-align: start;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.car-card:hover{
  transform: translateY(-2px);
  border-color: rgba(37,99,235,.28);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
}

.car-illus{
  height: 88px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(16,185,129,.08));
  font-size: 28px;
  margin-bottom: 12px;
}

.car-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.car-tags span{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--soft);
  padding: 4px 8px;
  border-radius: 999px;
}

.car-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 24px;
  color: var(--text);
  z-index: 2;
}
.car-btn:hover{ border-color: rgba(37,99,235,.28); }
.car-btn:disabled{ opacity: .35; cursor:not-allowed; }

.car-btn--prev{ left: 6px; }
.car-btn--next{ right: 6px; }

.car-dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 12px;
}
.dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(15,23,42,.18);
  cursor:pointer;
}
.dot.is-active{
  width: 18px;
  background: var(--accent);
}
.shot{
  min-width: 300px;
  max-width: 340px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.shot__tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color: var(--accent-600);
  background: var(--accent-soft);
  border:1px solid rgba(37,99,235,.18);
  margin-bottom: 10px;
}
.shot p{margin:0; color: var(--muted)}

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.stat{
  background: rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.stat__value{
  font-size: 28px;
  font-weight: 900;
  letter-spacing:-.4px;
  color: var(--accent-600);
}
.stat__label{color: var(--muted); font-weight: 650}

.section__head{
  max-width: 720px;
  margin: 0 auto 18px;
  text-align: center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(37,99,235,.18);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* FAQ pro */
.faq-pro{
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-item{
  border-bottom: 1px solid var(--border);
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}

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

.faq-q{
  font-size: 18px;
  font-weight: 700;
  padding-right: 28px;
}

.faq-ico{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  color: var(--accent);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
  flex: 0 0 auto;
}

.faq-ico svg{ width: 18px; height: 18px; }

.faq-item[open] .faq-ico{
  transform: rotate(45deg); /* + devient x */
  background: var(--accent-soft);
  border-color: rgba(37,99,235,.26);
}

/* Smooth open animation */
.faq-a{
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    grid-template-rows .22s ease,
    opacity .18s ease,
    transform .18s ease;
}

.faq-a > div{
  overflow: hidden;
  padding-right: 28px;
  color: var(--muted);
}

.faq-a p{
  transition: transform .18s ease;
}

.faq-item[open] .faq-a p{
  transform: translateY(0);
}

.faq-a p{
  transform: translateY(-2px);
}

/* OPEN */
.faq-item[open] .faq-a{
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

/* Icon rotation stays smooth */
.faq-ico{
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.faq-item[open] .faq-ico{
  transform: rotate(45deg);
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce){
  .faq-a{
    transition: none;
    transform: none;
    opacity: 1;
  }
  .faq-ico{
    transition: none;
  }
}

.faq-a{
  display:grid;
  grid-template-rows: 0fr;
  transition: all .22s ease;
  font-size: 13px;
}
.faq-a > div{
  overflow:hidden;
  padding-right: 28px;
  color: var(--muted);
}
.faq-item[open] .faq-a{
  grid-template-rows: 1fr;
}

@media (prefers-reduced-motion: reduce){
  .faq-ico{ transition:none; }
  .faq-a{ transition:none; }
}

.odd-section {
  background-color: rgba(37,99,235,.01);
}

details{
  padding: 10px 14px;
}
summary{
  cursor:pointer;
  font-weight: 800;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{color: var(--muted); margin: 8px 0 6px}

/* Contact */
.contact{max-width: 920px; margin:0 auto}
.contact__head{text-align:center; margin-bottom: 16px}
.chip{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(37,99,235,.20);
  background: var(--accent-soft);
  color: var(--accent-600);
  font-weight:800;
  font-size:12px;
  margin-bottom: 8px;
}

.form{
  background: rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.form label{display:block}
.form span{display:block; font-weight:700; font-size: 13px; margin: 10px 0 6px}
.form input, .form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.9);
  outline:none;
  font: inherit;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.services{margin-top: 10px}
.services__label{font-weight:800; font-size: 13px; margin: 10px 0 6px}
.services__pills{display:flex; flex-wrap:wrap; gap:8px}
.pill{
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.92);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 700;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease, color .12s ease;
}
.pill:hover{transform: translateY(-1px); border-color: rgba(37,99,235,.35)}
.pill.is-selected{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.form__actions{display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px}

/* Reveal */
.reveal{opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform;}
.reveal.is-visible{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none; transition:none} }

/* Footer */
.footer{padding:22px 0 30px}
.footer__inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  border-top:1px solid var(--border);
  padding-top:14px;
}

/* Responsive */
@media (max-width: 900px){
  .hero__inner{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr 1fr}
  .stats{grid-template-columns: 1fr}
}
@media (max-width: 560px){
  .grid{grid-template-columns: 1fr}
  .nav{gap:6px}
  .form__row{grid-template-columns: 1fr}
}

.page{padding:32px 0}

.stack{ align-self: start; }

.stack__card{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.stack__title{
  margin: 0 0 6px;
  font-size: 16px;
}

.stack__lead{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

/* Grid "max 10 par rangée" : on limite la taille des badges */
.logo-grid{
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (max-width: 1100px){ .logo-grid{ grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 720px){ .logo-grid{ grid-template-columns: repeat(3, 1fr); } }

.logo-tile{
  position: relative; /* nécessaire pour placer le tooltip */
}

.logo-tile:hover {
  transform: translateY(-2px);
}

/* Tooltip bubble */
.logo-tile::after{
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100%);
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 23, 42, .92);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  z-index: 10;
  box-shadow: 0 14px 30px rgba(15,23,42,.22);
}

.logo-tile:hover::after,
.logo-tile:hover::before{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Accessibilité clavier */
.logo-tile:focus-within::after,
.logo-tile:focus-within::before{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .logo-tile::after,
  .logo-tile::before{
    transition: none;
  }
}

.logo-tile img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.9);
  opacity: .95;
}

.logo-tile:hover img{
  filter: saturate(1.05);
  opacity: 1;
}

/* Jiggle class */
.logo-tile.is-jiggle{
  animation: jiggle .22s ease-in-out;
  border-color: rgba(37,99,235,.32);
}

@keyframes jiggle{
  0%{ transform: translate(0,0) rotate(0deg); }
  35%{ transform: translate(1px,-1px) rotate(-1deg); }
  70%{ transform: translate(-1px,1px) rotate(1deg); }
  100%{ transform: translate(0,0) rotate(0deg); }
}


@media (max-width: 1100px){
  .logo-grid{ grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .logo-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Badge style (look "logo tile") */
.logo-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,.16);
  background: rgba(37,99,235,.08);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 700;
  user-select: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.logo-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(37,99,235,.28);
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
}

/* Micro animation target */
.logo-pill.is-jiggle{
  animation: jiggle .22s ease-in-out;
  border-color: rgba(37,99,235,.32);
  background: rgba(37,99,235,.12);
}

@keyframes jiggle{
  0%   { transform: translate(0,0) rotate(0deg); }
  35%  { transform: translate(1px,-1px) rotate(-1deg); }
  70%  { transform: translate(-1px,1px) rotate(1deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce){
  .logo-pill.is-jiggle{ animation: none; }
}
