/* ============================================
   PRÉFIGURE — flat / index list
   pure black · thin white rules · no blocks
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

:root {
  --bg:        #000000;
  --ink:       #FFFFFF;
  --ink-soft:  #BFBFBF;
  --muted:     #6E6E6E;
  --faint:     #3A3A3A;
  --line:      rgba(255,255,255,0.22);
  --line-soft: rgba(255,255,255,0.10);
  --hover:     #FFFFFF;
  --hover-ink: #000000;

  --max:       1440px;
  --gutter:    clamp(14px, 2vw, 24px);

  --f-sans:  'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-mono:  'Geist Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  --f-serif: 'Fraunces', 'Times New Roman', serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.005em;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; padding: 0; }

::selection { background: var(--ink); color: var(--bg); }

/* ===================================================
   TOP BAR — flat index style
   =================================================== */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-block: 14px;
  padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  font-family: var(--f-mono);
  font-size: 13px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: start;
}
.topbar__left a {
  color: var(--ink);
  transition: color .15s ease;
}
.topbar__left a:hover { color: var(--muted); }

.topbar__brand {
  justify-self: center;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.topbar__right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 13px;
}
.topbar__lang-btn {
  color: var(--muted);
  transition: color .15s ease;
  font: inherit;
  cursor: pointer;
}
.topbar__lang-btn:hover { color: var(--ink-soft); }
.topbar__lang-btn.is-active { color: var(--ink); }
.topbar__lang-sep { color: var(--faint); }

/* Language visibility */
body[data-lang="en"] [data-lang="fr"] { display: none !important; }
body[data-lang="fr"] [data-lang="en"] { display: none !important; }

/* ===================================================
   MAIN
   =================================================== */
main {
  flex: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* ===================================================
   SHOWCASE — flat, no card
   =================================================== */
.showcase {
  width: 100%;
  font-family: var(--f-mono);
  color: var(--ink);
  background: var(--bg);
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  position: relative;
  padding: 0;
}
.showcase *, .showcase *::before, .showcase *::after { box-sizing: border-box; }

/* Hide the showcase__lang since topbar handles it */
.showcase__lang { display: none; }

/* ===== GRID — image + content side by side ===== */
.showcase__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.showcase__media {
  margin: 0;
  padding: var(--gutter);
  border-right: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase__media-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.showcase__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  opacity: 0;
  filter: grayscale(0.05) contrast(1.04);
  animation: sc-cut 8s infinite steps(1, end);
}
.showcase__slide:nth-child(1) { animation-delay: 0s; }
.showcase__slide:nth-child(2) { animation-delay: 2s; }
.showcase__slide:nth-child(3) { animation-delay: 4s; }
.showcase__slide:nth-child(4) { animation-delay: 6s; }
@keyframes sc-cut {
  0%      { opacity: 1; }
  25%     { opacity: 1; }
  25.01%  { opacity: 0; }
  100%    { opacity: 0; }
}
.showcase__media:hover .showcase__slide { animation-play-state: paused; }

.showcase__media-caption {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--muted);
  padding-top: 4px;
}

/* ===== DEMO — flat row ===== */
.showcase__demo {
  display: flex; flex-direction: row; align-items: stretch;
  gap: 14px; margin-top: 6px; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.showcase__demo-media {
  width: clamp(140px, 22vw, 220px);
  max-width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
}
.showcase__demo-media img,
.showcase__demo-media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(0.05) contrast(1.04);
}
.showcase__demo-body { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.showcase__demo-tag {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--muted);
}
.showcase__demo-text {
  margin: 0; font-size: 14px; line-height: 1.35;
  color: var(--ink); letter-spacing: 0;
  font-family: var(--f-mono); font-weight: 400;
}
.showcase__demo-text em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--ink); }

/* ===== CONTENT COLUMN ===== */
.showcase__content {
  padding: var(--gutter);
  display: flex; flex-direction: column;
}

.showcase__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 8px;
  border: 1px solid var(--ink);
  margin-bottom: 16px;
}

.showcase__title {
  font-family: var(--f-mono); font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px; color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.showcase__title em {
  font-family: var(--f-serif); font-style: italic;
  font-weight: 400; letter-spacing: -0.02em;
}
.showcase__title-sub {
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.showcase__pitch {
  font-family: var(--f-mono); font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.3;
  letter-spacing: 0;
  margin: 0 0 18px;
  color: var(--ink);
  max-width: 36ch;
}
.showcase__pitch em {
  font-family: var(--f-serif); font-style: italic;
  font-weight: 400; color: var(--ink);
}

.showcase__lede {
  font-size: 13px; line-height: 1.5; color: var(--ink-soft);
  margin: 0 0 24px; max-width: 52ch; font-weight: 400;
  font-family: var(--f-mono);
}

/* feature sections — flat list, no boxes */
.showcase__section {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.showcase__section:last-of-type {
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
}
.showcase__section-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.showcase__section-num {
  font-family: var(--f-mono); font-size: 12px; color: var(--muted);
}
.showcase__section-label {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink);
}
.showcase__feature {
  display: grid; grid-template-columns: 48px 1fr; gap: 12px;
  padding: 6px 0; align-items: start;
}
.showcase__feature-idx {
  font-family: var(--f-mono); font-size: 12px; color: var(--muted);
  padding-top: 2px;
}
.showcase__feature-title {
  font-size: 13px; font-weight: 500; letter-spacing: 0;
  margin: 0 0 2px; color: var(--ink);
  font-family: var(--f-mono);
}
.showcase__feature-desc {
  font-size: 12.5px; line-height: 1.5; color: var(--ink-soft);
  margin: 0; font-weight: 400;
  font-family: var(--f-mono);
}
.showcase__reqs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.showcase__reqs li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 6px 0;
  font-family: var(--f-mono);
  font-size: 12.5px;
  border-top: 1px solid var(--line-soft);
}
.showcase__reqs li:first-child { border-top: none; padding-top: 0; }
.showcase__req-key { color: var(--muted); }
.showcase__req-val { color: var(--ink); }

/* ===== BUY BUTTON — flat link, no shadow ===== */
.showcase__buy {
  display: inline-flex; align-self: flex-start; align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--f-mono); font-size: 13px; font-weight: 500;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .15s ease, border-color .15s ease;
}
.showcase__buy-label { text-transform: none; letter-spacing: 0; }
.showcase__buy:hover { color: var(--muted); border-color: var(--muted); }
.showcase__buy-arrow svg { display: block; }

.showcase__cta-block {
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-start; margin-top: 6px;
}
.showcase__cta-meta {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--muted);
}

/* ===== CARD FOOTER (showcase__foot) — minimal row ===== */
.showcase__foot {
  display: flex; align-items: center;
  padding: 12px var(--gutter);
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
}
.showcase__foot-spacer { flex: 1; }

/* ===================================================
   STATIC PAGES (About / Contact)
   =================================================== */
.static-page {
  padding: 48px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 50vh;
  border-top: 1px solid var(--line);
}
.static-page__tag {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
}
.static-page__title {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.static-page__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}
.static-page__lede {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0;
  font-weight: 400;
  font-family: var(--f-mono);
}
.static-page__meta {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
}

/* ===================================================
   STATEMENT — flat centered line
   =================================================== */
.statement {
  width: 100%;
  margin: 0;
  padding: 56px var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
}
.statement p {
  margin: 0;
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.statement em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-right: 4px;
}

/* ===================================================
   PLANS — 3-column pricing
   =================================================== */
.plans {
  width: 100%;
  margin: 0;
  scroll-margin-top: 80px;
  border-top: 1px solid var(--line);
  padding: 0;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-right: 1px solid var(--line-soft);
  position: relative;
  background: var(--bg);
  font-family: var(--f-mono);
}
.plan:last-child { border-right: none; }

.plan--featured {
  background: var(--bg-alt, #060606);
  position: relative;
}
.plan--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  pointer-events: none;
}

.plan__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.plan__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
}
.plan__code {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.plan__name {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.plan__amount {
  font-family: var(--f-mono);
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan__amount--custom {
  font-size: 28px;
  letter-spacing: 0;
}
.plan__per {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.plan__billing {
  margin: 0 0 26px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.plan__billing s { color: var(--faint); }

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-grow: 1;
}
.plan__features li {
  font-family: var(--f-sans);
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: 1px solid var(--line-faint);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.plan__features li:first-child {
  border-top: 1px solid var(--line-faint);
}
.plan__features li::before {
  content: "+";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 13px;
  width: 12px;
  text-align: center;
}
.plan__features strong {
  color: var(--ink);
  font-weight: 500;
}

.plan__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.plan__cta:hover { background: var(--ink); color: var(--bg); }
.plan__cta--primary { background: var(--ink); color: var(--bg); }
.plan__cta--primary:hover { background: var(--bg); color: var(--ink); }

@media (max-width: 880px) {
  .plans__grid { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .plan:last-child { border-bottom: none; }
  .plan--featured::before { border-left: none; border-right: none; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
}

/* ===================================================
   FAQ — flat list
   =================================================== */
.faq {
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
}
.faq__tag {
  display: block;
  padding: 12px var(--gutter);
  font-family: var(--f-mono); font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.faq__item {
  border-bottom: 1px solid var(--line-soft);
}
.faq__item:last-child { border-bottom: none; }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-sans); font-size: 15px;
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
  padding: 14px var(--gutter);
  transition: background .12s ease, color .12s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--f-mono); font-size: 16px;
  color: var(--ink);
  font-weight: 400;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:hover { background: var(--hover); color: var(--hover-ink); }
.faq__item summary:hover::after { color: var(--hover-ink); }
.faq__item p {
  margin: 0;
  padding: 0 var(--gutter) 16px var(--gutter);
  font-size: 14px; line-height: 1.6;
  color: var(--ink-soft); max-width: 80ch;
  font-weight: 400;
  font-family: var(--f-sans);
  letter-spacing: -0.005em;
}

/* ===================================================
   FINAL CTA — minimal, no card
   =================================================== */
.final-cta {
  width: 100%;
  margin: 0;
  padding: 80px var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.final-cta__title {
  font-family: var(--f-mono); font-weight: 500;
  font-size: clamp(26px, 3.4vw, 42px); line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink); margin: 0;
  max-width: 24ch;
}
.final-cta__title em {
  font-family: var(--f-serif); font-style: italic;
  font-weight: 400; color: var(--ink);
}
.final-cta__btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 0 4px 0;
  background: transparent; color: var(--ink);
  font-family: var(--f-mono); font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid var(--ink);
  transition: color .15s ease, border-color .15s ease;
}
.final-cta__btn:hover { color: var(--muted); border-color: var(--muted); }

/* ===================================================
   PAGE FOOTER
   =================================================== */
.page-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px;
  padding: 14px var(--gutter);
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  width: min(100%, var(--max));
  margin: 0 auto;
}
.page-foot em { font-family: var(--f-mono); font-style: normal; }
.page-foot a { transition: color .15s ease; }
.page-foot a:hover { color: var(--muted); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .showcase__grid { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 880px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .topbar__brand { justify-self: end; grid-column: 2; grid-row: 1; }
  .topbar__right { grid-column: 1 / -1; grid-row: 2; justify-self: start; }
  .topbar__left { gap: 16px; font-size: 12.5px; }

  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__media {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .showcase__demo { flex-direction: column; }
  .showcase__demo-media { width: 100%; }
  .showcase__foot {
    flex-direction: column; gap: 6px;
    align-items: flex-start;
  }
  .showcase__foot-spacer { display: none; }
  .page-foot { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ===================================================
   ACCESSIBILITY
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  .showcase__slide { animation: none; opacity: 0; }
  .showcase__slide:first-child { opacity: 1; }
}

/* ===================================================
   ============== REWORKED INDEX PAGE ================
   =================================================== */

/* ---- reusable button ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn__arrow { font-family: var(--f-mono); font-weight: 400; }
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--bg); color: var(--ink); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.btn--large {
  padding: 18px 30px;
  font-size: 13px;
  letter-spacing: 0.18em;
}

/* shared eyebrow/tag style */
.hero__eyebrow,
.proof__tag,
.how__tag,
.cases__tag,
.requirements__tag,
.plans__tag,
.faq__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---- HERO ---- */
.hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  align-items: stretch;
}
.hero__copy {
  padding: clamp(36px, 5vw, 72px) clamp(24px, 3vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.hero__eyebrow {
  align-self: flex-start;
  padding: 5px 10px;
  border: 1px solid var(--ink);
}
.hero__title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.hero__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.hero__sub {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
  letter-spacing: -0.005em;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero__media {
  margin: 0;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
}
.hero__media-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #000;
  flex: 1;
  isolation: isolate;
}
.hero__media-frame video,
.hero__media-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.05) contrast(1.05);
}
/* homepage hero image (hero_08) is square 1:1 → show it fully, never cropped. */
.hero__media > .hero__media-frame { aspect-ratio: 1 / 1; }
.hero__media > .hero__media-frame img { object-fit: contain; }
.hero__slide {
  opacity: 0;
  animation: heroFade 36s infinite linear;
  mix-blend-mode: plus-lighter;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: -30s; }
.hero__slide:nth-child(3) { animation-delay: -24s; }
.hero__slide:nth-child(4) { animation-delay: -18s; }
.hero__slide:nth-child(5) { animation-delay: -12s; }
.hero__slide:nth-child(6) { animation-delay: -6s; }
@keyframes heroFade {
  0%   { opacity: 1; }
  6%   { opacity: 1; }
  17%  { opacity: 0; }
  89%  { opacity: 0; }
  100% { opacity: 1; }
}
.hero__media-frame:hover .hero__slide { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 0; }
  .hero__slide:first-child { opacity: 1; }
}
.hero__media-caption {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---- FULL-WIDTH BANNER ---- */
.banner {
  width: 100%;
  border-top: 1px solid var(--line);
  display: block;
  overflow: hidden;
  background: #000;
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(0.05) contrast(1.05);
}

/* ---- PROOF STRIP ---- */
.proof {
  width: 100%;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 56px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.proof__stat {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--line-soft);
}
.proof__stat:last-child { border-right: none; }
.proof__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.proof__num em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.proof__label {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 24ch;
}
.proof__quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.proof__quote blockquote {
  margin: 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 60ch;
  letter-spacing: -0.01em;
}
.proof__quote figcaption {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---- HOW IT WORKS ---- */
.how {
  width: 100%;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 56px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Layout : deux GIF côte à côte (LIDAR gauche, Google droite),
   instructions en rangée en dessous. */
.how__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
}
.how__gifs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.how__gif {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-soft);
  background: #000;
  overflow: hidden;
  aspect-ratio: 1919 / 1033;
}
.how__gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.04) contrast(1.04);
}
.how__gif-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 9px;
  backdrop-filter: blur(2px);
}
/* §05 use-cases gif row reuses .how__gifs/.how__gif; tiles 2-3 are placeholders */
.how__gif--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #0a0a0a 0, #0a0a0a 10px, #121212 10px, #121212 20px);
}
.how__gif-soon {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
}
.step {
  padding: 22px 22px 0;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step:first-child { padding-left: 0; }
.step:last-child  { border-right: none; padding-right: 0; }
.step__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.step__title {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
}
.step__desc {
  font-family: var(--f-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: -0.005em;
}

/* ---- USE CASES ---- */
.cases {
  width: 100%;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 56px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case__img {
  width: 100%;
  aspect-ratio: 1919 / 1033;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #000;
}
.case__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) contrast(1.05);
  transition: transform .35s ease;
}
.case:hover .case__img img { transform: scale(1.02); }
.case__cap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
}
.case__name {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.case__meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---- REQUIREMENTS (standalone) ---- */
.requirements {
  width: 100%;
  padding: clamp(18px, 2.2vw, 26px) clamp(24px, 3vw, 56px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.requirements__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.requirements__list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--f-mono);
  font-size: 14px;
}
.requirements__key {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}
.requirements__val { color: var(--ink); }

/* ---- PLANS (header tweak) ---- */
.plans {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 5vw, 64px) 0 0;
}
.plans__head {
  padding: 0 clamp(24px, 3vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.plans__title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.plans__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}

/* override the previous .plans__tag border-top — section already has it */
.plans .plans__tag {
  border: none;
  padding: 0;
}

/* ---- plan card CTA — let it use shared .btn ---- */
.plan .btn.plan__cta {
  margin-top: 4px;
}

/* ---- FAQ (compact header) ---- */
.faq {
  padding: clamp(40px, 5vw, 56px) 0 0;
  border-top: 1px solid var(--line);
}
.faq__tag {
  padding: 0 clamp(24px, 3vw, 56px);
  margin-bottom: 16px;
  background: transparent;
  border-bottom: none;
  display: flex;
}

/* ---- FINAL CTA ---- */
.final-cta {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 3vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.final-cta__title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
}
.final-cta__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}
.final-cta__sub {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
}
.final-cta__btn { display: none; } /* old class no longer used */

/* override featured plan badge to use new wording */
.plan__badge {
  font-size: 10px;
  padding: 5px 10px;
  letter-spacing: 0.14em;
}

/* ---- RESPONSIVE for new sections ---- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__copy { border-right: none; border-bottom: 1px solid var(--line); }
  .hero__media-frame { aspect-ratio: 16 / 10; }

  .proof__grid { grid-template-columns: 1fr; }
  .proof__stat { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .proof__stat:last-child { border-bottom: none; }

  .cases__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .hero__title { font-size: clamp(28px, 8vw, 40px); }
  .hero__ctas .btn { flex: 1; justify-content: space-between; }
  .cases__grid { grid-template-columns: 1fr; }
  .requirements__list li { grid-template-columns: 100px 1fr; gap: 10px; }

  /* Les 3 GIF + étapes restent en 3 colonnes jusqu'ici, puis s'empilent. */
  .how__gifs  { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 18px 0; }
  .step:first-child { padding-left: 0; }
  .step:last-child { border-right: none; border-bottom: none; padding-right: 0; }
}


/* ===================================================
   PAGES LEGALES + BARRE LEGALE  (ajout — nouvelles classes)
   =================================================== */
.legal-bar {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: var(--f-mono); font-size: 12px; color: var(--muted);
  border-top: 1px solid var(--line-soft);
  width: min(100%, var(--max)); margin: 0 auto;
  padding: 10px var(--gutter);
}
.legal-bar a { color: var(--muted); transition: color .15s ease; }
.legal-bar a:hover { color: var(--ink); }

.legal-wrap { width: min(100%, 860px); margin: 0 auto; padding: 56px var(--gutter) 96px; }
.legal-back { font-family: var(--f-mono); font-size: 12px; color: var(--muted); display: inline-block; margin-bottom: 28px; }
.legal-back:hover { color: var(--ink); }
.legal-wrap h1 { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin: 0 0 28px; color: var(--ink); }
.legal-wrap h2 { font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .04em; font-size: 13px; color: var(--ink-soft); margin: 38px 0 10px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.legal-wrap h3 { font-size: 15px; color: var(--ink); margin: 22px 0 6px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.legal-wrap ul, .legal-wrap ol { padding-left: 20px; }
.legal-wrap li { margin: 4px 0; }
.legal-wrap a { color: var(--ink); text-decoration: underline; }
.legal-wrap a:hover { color: var(--ink-soft); }
.legal-wrap strong { color: var(--ink); font-weight: 600; }
.legal-wrap code { font-family: var(--f-mono); font-size: .86em; color: #ffd9a8; background: rgba(255,255,255,0.06); padding: 1px 6px; border-radius: 4px; }
.legal-wrap hr { border: 0; border-top: 1px solid var(--line-soft); margin: 32px 0; }
.legal-pre { white-space: pre-wrap; word-wrap: break-word; font-family: var(--f-mono); font-size: 12px; line-height: 1.55; color: var(--ink-soft); background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft); border-radius: 10px; padding: 22px; }

/* ===================================================
   HERO — bande des sources supportées (ajout, nouvelles classes)
   =================================================== */
.hero__sources { display: flex; flex-direction: column; gap: 10px; }
.hero__sources-label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.hero__sources-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0; margin: 0;
}
.hero__sources-list li {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.02em;
  color: var(--ink-soft); border: 1px solid var(--line);
  padding: 4px 9px; white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.hero__sources-list li:hover { border-color: var(--ink); color: var(--ink); }

/* hero sources — séparation par zone géographique */
.hero__sources-group {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
}
.hero__sources-geo {
  flex: 0 0 auto; min-width: 72px;
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* use-cases — loop de rendus déplacé depuis le héros */
.cases__loop { margin: 16px 0 30px; }
.cases__loop .hero__media-frame { aspect-ratio: 16 / 9; }
.cases__loop .hero__media-caption { margin-top: 10px; }

/* sources du hero — puces cliquables vers la source officielle */
.hero__sources-list li a {
  display: block;
  margin: -4px -9px;
  padding: 4px 9px;
  color: inherit;
  text-decoration: none;
}

/* flèche « How it works » (remplace le tag §02) */
.scroll-cue {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: min(100%, var(--max)); margin: 0 auto;
  padding: 16px var(--gutter);
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); transition: color .15s ease;
}
.scroll-cue:hover { color: var(--ink); }
.scroll-cue__arrow { font-size: 15px; animation: scrollCueBob 1.8s ease-in-out infinite; }
@keyframes scrollCueBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue__arrow { animation: none; } }

/* premier écran plein hauteur : hero + flèche remplissent la fenêtre */
.firstscreen {
  min-height: calc(100vh - 56px);
  min-height: calc(100svh - 56px);
  display: flex;
  flex-direction: column;
}
.firstscreen .hero { flex: 1 0 auto; align-items: center; }
.firstscreen .scroll-cue { margin-top: auto; }

/* second écran plein hauteur : requirements (centré) + flèche « s'abonner »
   collée en bas du viewport, même principe que .firstscreen */
.secondscreen {
  display: flex;
  flex-direction: column;
}
/* « S'abonner ↓ » présentée comme un bouton blanc (contour), centré */
.secondscreen .scroll-cue {
  width: auto;
  align-self: center;
  margin: 4px auto clamp(20px, 4vh, 40px);  /* remonte un peu du bas */
  padding: 14px 28px;
  border: 1px solid #fff;                         /* override le border-top de base */
  border-radius: 0;
  background: #fff;                               /* fond blanc plein */
  color: #000;                                    /* texte/flèche en noir */
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.secondscreen .scroll-cue:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

/* ===================================================
   GALLERY (page accessible par lien uniquement)
   Series : grande preview a gauche + vignettes a droite
   Largeur calee sur la ligne du pied de page (1440px max, centree)
   =================================================== */
.gallery-wrap {
  padding-block: 48px;
  padding-inline: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(24px, 4vh, 48px);
  min-height: 60vh;
}
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vh, 56px);
  width: 100%;
}

/* --- Une serie : [ grande preview | 4 vignettes ] --- */
.gset {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
}
.gset__hero {
  margin: 0;
  flex: 0 0 46%;
  max-width: 46%;
  border: 1px solid var(--line);
  background: #0a0a0a;
  overflow: hidden;
  cursor: zoom-in;
}
/* Pas encore de vignettes -> la grande preview occupe toute la largeur */
.gset--solo .gset__hero { flex-basis: 100%; max-width: 100%; }
.gset__hero img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .2s ease;
}
.gset__hero:not(.gset__hero--compare):hover img { opacity: .85; }

/* --- Grande preview en mode slider avant / apres --- */
.gset__hero--compare {
  position: relative;
  container-type: inline-size;
  cursor: ew-resize;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.gcompare__base { width: 100%; display: block; pointer-events: none; }
.gcompare__before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}
.gcompare__before img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100cqw;   /* repli ; la largeur exacte en px est posee en JS */
  height: auto;
  max-width: none;
}
.gcompare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity .15s ease;
}
.gset__hero--compare:hover .gcompare__handle { opacity: 1; }
.gcompare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.gcompare__handle::before {
  content: "‹ ›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1;
}

.gset__thumbs {
  flex: 1 1 0;
  display: flex;
  gap: clamp(8px, 1vw, 16px);
  align-items: center;
}
.gset__thumb {
  flex: 1 1 0;
  padding: 0;
  border: 1px solid var(--line-soft);
  background: #0a0a0a;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
  transition: border-color .15s ease, opacity .15s ease;
}
.gset__thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.gset__thumb:hover { border-color: var(--ink-soft); }
.gset__thumb.is-active { border-color: var(--ink); }

.gallery-empty {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
}

/* Empilage sur ecran etroit */
@media (max-width: 760px) {
  .gset { flex-direction: column; align-items: stretch; gap: 12px; }
  .gset__hero { flex: none; max-width: none; }
}

/* Lightbox (zoom) */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.gallery-lightbox__close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  font-family: var(--f-mono);
}

/* ===================================================
   GALLERY GATE — mot de passe (page galerie)
   =================================================== */
body.is-locked .topbar,
body.is-locked main,
body.is-locked .page-foot { display: none; }

.gallery-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-gate[hidden] { display: none; }
.gallery-gate__box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 300px;
  text-align: center;
}
.gallery-gate__brand {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 28px;
  margin-bottom: 8px;
}
.gallery-gate__label {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  text-align: left;
}
.gallery-gate__input {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 0;
  outline: none;
}
.gallery-gate__input:focus { border-color: var(--ink); }
.gallery-gate__btn {
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-family: var(--f-mono);
  font-size: 13px;
  padding: 12px 14px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.gallery-gate__btn:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.gallery-gate__error {
  font-family: var(--f-mono);
  font-size: 12px;
  color: #ff6b6b;
}
.gallery-gate__error[hidden] { display: none; }
