/* ============================================================
   Murio, feuille de style
   Design system dérivé de VisitorTheme.swift (app iOS) :
   canvas/surface/ink/gold adaptatifs + halo "premium" du paywall.
   ============================================================ */

:root {
  color-scheme: dark;

  /* Fond & surfaces (VisitorColors, variante sombre) */
  --bg: #0e1726;
  --bg-deep: #0a121e;
  --surface: #162235;
  --surface-2: #1d2c42;
  --surface-3: #23354c;

  /* Texte */
  --ink: #f6f1e8;
  --secondary: #b8c0cc;
  --faint: #8792a1;

  /* Lignes */
  --line: #33435a;
  --line-soft: rgba(246, 241, 232, 0.09);

  /* Or, la couleur de marque */
  --gold: #d2b463;
  --gold-strong: #e8b43f;
  --gold-soft: rgba(210, 180, 99, 0.14);
  --gold-ink: #1a1204;

  /* Accents secondaires (issus de VisitorColors) */
  --discovery: #78b8ae;
  --history: #d39b7f;

  --header: rgba(14, 23, 38, 0.82);
  --shadow: 0 30px 90px rgba(2, 6, 14, 0.5);
  --shadow-sm: 0 14px 34px rgba(2, 6, 14, 0.32);

  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1220px;
  --header-h: 82px;

  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 4%, rgba(210, 180, 99, 0.1), transparent 30rem),
    radial-gradient(circle at 12% 18%, rgba(120, 184, 174, 0.08), transparent 26rem);
}
a { color: inherit; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--gold-ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed; top: -90px; left: 18px; z-index: 100;
  padding: 12px 16px; border-radius: 10px;
  background: var(--ink); color: var(--bg);
  font-weight: 700; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

/* ---------- Header ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 100vw; min-height: 82px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: var(--header);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); text-decoration: none; }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: .34em;
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav .nav-cta {
  padding: 10px 18px; border: 1px solid var(--gold);
  border-radius: 999px; color: var(--gold);
  font-weight: 700; font-size: .87rem; text-decoration: none;
}
.nav .nav-cta:hover { background: var(--gold-soft); }
.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; margin-left: 12px; }

/* ---------- Shared type ---------- */
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; }
h2 { max-width: 16ch; font-size: clamp(2rem, 3.4vw, 2.85rem); line-height: 1.1; color: var(--ink); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 52px; padding: 13px 26px;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 700; text-align: center; text-decoration: none;
  transition: transform .18s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: var(--gold-ink);
  box-shadow: 0 16px 34px -12px rgba(210, 180, 99, 0.55);
}

/* ============================================================
   Ouverture, pure typographie, pas de téléphone
   ============================================================ */
.opening {
  position: relative;
  display: grid; place-items: center; text-align: center;
  min-height: calc(100svh - 82px);
  padding: 80px 24px;
  overflow: hidden;
}
.opening-glow {
  position: absolute; z-index: -1; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 30%, rgba(210, 180, 99, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(120, 184, 174, 0.08), transparent 70%);
}
.wordmark {
  position: relative;
  display: inline-block;
  margin: 0 0 clamp(28px, 5vw, 46px);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: .4em;
  color: var(--gold);
}
.wordmark .sparkle { position: absolute; color: var(--gold); opacity: .55; }
.wordmark .sparkle-a { top: -16px; left: -26px; width: 13px; }
.wordmark .sparkle-b { top: -8px; right: -28px; width: 10px; opacity: .4; }
.opening h1 {
  max-width: 16ch; margin: 0 auto;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem); line-height: 1.08;
  color: var(--ink);
}
.opening h1 em { color: var(--gold); font-style: normal; }
.opening-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin: clamp(56px, 9vw, 96px) 0 0; color: var(--faint);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  animation: cue-bob 2.4s ease-in-out infinite;
}
.opening-cue svg { width: 16px; height: 16px; }
@keyframes cue-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ============================================================
   Récit défilant, téléphone fixe (desktop) / plein écran (mobile)
   ============================================================ */
.story {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
}
.story-stage {
  /* Collee sous l'en-tete, pas sous le haut de la fenetre : a `top: 0`, la
     barre fixe de 82px recouvrait le haut du telephone des que la fenetre
     descendait sous ~740px, ce qui donnait un mockup coupe. */
  position: sticky; top: var(--header-h);
  height: calc(100svh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
}
.phone {
  /* La largeur derive aussi de la hauteur disponible : sur un ecran bas,
     c'est elle qui contraint, et `aspect-ratio` recalcule la hauteur. */
  position: relative;
  width: min(300px, 74vw, calc((100svh - var(--header-h) - 56px) * 9 / 19.4));
  aspect-ratio: 9 / 19.4;
  border: 10px solid var(--bg-deep); border-radius: 46px;
  background: var(--surface-2); overflow: hidden;
  box-shadow: var(--shadow);
}
.phone-screen {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .55s ease;
}
.phone-screen.is-shown { opacity: 1; }

.story-track { display: flex; flex-direction: column; }
.story-step {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100svh;
  padding: 40px 0;
  opacity: .32;
  transition: opacity .5s ease;
}
.story-step.is-active { opacity: 1; }
.story-index {
  font-family: var(--serif); color: var(--gold);
  font-size: .82rem; letter-spacing: .14em; margin-bottom: 14px;
}
.story-step p { max-width: 42ch; margin: 16px 0 0; color: var(--secondary); font-size: 1.05rem; }
.story-shot { display: none; }

/* ============================================================
   Archive 1950, moment rare, l'image domine l'écran
   ============================================================ */
.archive {
  display: grid; justify-items: center; gap: 22px;
  width: 100%; padding: clamp(60px, 9vw, 120px) 24px;
  text-align: center;
}
.archive-eyebrow {
  margin: 0; font-family: var(--serif); color: var(--gold);
  font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: .1em;
}
.archive-frame {
  width: min(880px, 100%); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.archive-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: saturate(.75); }
.archive-caption { margin: 0; color: var(--faint); font-size: .88rem; }

/* ============================================================
   Collection, moment rare, le téléphone se dissout en repères
   ============================================================ */
.collection {
  width: min(var(--max), calc(100% - 48px)); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(70px, 10vw, 130px) 0;
}
.collection-copy p { max-width: 42ch; margin: 16px 0 0; color: var(--secondary); font-size: 1.05rem; }
.collection-fan { position: relative; height: 340px; }
.collection-card {
  position: absolute; top: 50%; left: 50%; width: 128px; height: 128px;
  display: grid; place-items: center;
  border-radius: 26px; border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-sm);
  color: var(--gold);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .8s ease;
  opacity: 0;
}
.collection-card svg { width: 40px; height: 40px; fill: currentColor; }
.collection-card.card-1 { transform: translate(-50%, -50%) rotate(0deg); }
.collection-card.card-2 { transform: translate(-50%, -50%) rotate(0deg); }
.collection-card.card-3 { transform: translate(-50%, -50%) rotate(0deg); }
.collection.is-visible .collection-card { opacity: 1; }
.collection.is-visible .collection-card.card-1 { transform: translate(-140%, -68%) rotate(-9deg); }
.collection.is-visible .collection-card.card-2 { transform: translate(-50%, -50%) rotate(3deg); }
.collection.is-visible .collection-card.card-3 { transform: translate(40%, -30%) rotate(11deg); }

/* ---------- Trust line ---------- */
.trust {
  width: min(560px, calc(100% - 48px)); margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) 0 clamp(70px, 9vw, 110px);
  text-align: center;
}
.trust p {
  margin: 0; color: var(--secondary); font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: clamp(60px, 8vw, 110px) 0; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 90px); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-weight: 700; cursor: pointer; list-style: none;
  font-size: 1rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { flex: 0 0 auto; color: var(--gold); font-size: 1.3rem; font-weight: 400; content: "+"; }
.accordion details[open] summary::after { content: "\2212"; }
.accordion details p { max-width: 620px; margin: -6px 0 24px; color: var(--secondary); }

/* ---------- Final CTA ---------- */
.final-cta {
  display: grid; place-items: center; padding: clamp(90px, 11vw, 140px) 24px;
  background: var(--bg-deep); text-align: center;
  border-top: 1px solid var(--line-soft);
}
.final-cta > div { max-width: 640px; }
.final-cta h2 { max-width: none; }
.final-cta p { max-width: 540px; margin: 20px auto 0; color: var(--secondary); }
.final-cta .actions { justify-content: center; }
.final-cta small { display: block; margin-top: 18px; color: var(--faint); }

/* ---------- Footer ----------
   Trois colonnes de liens titrees, alignees sur une meme grille, plus une
   ligne de base separee. L'ancien pied melait une marque, une nav a plat et
   un bloc legal cale a droite : trois alignements differents sur une seule
   rangee, sans hierarchie lisible. */
footer.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px clamp(40px, 7vw, 96px);
  align-items: start;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2)) 32px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.footer-brand p {
  margin: 14px 0 0;
  max-width: 28ch;
  color: var(--faint);
  font-size: .9rem;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h2 {
  margin: 0 0 3px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--faint);
}
.footer-col a {
  color: var(--secondary);
  font-size: .89rem;
  text-decoration: none;
  width: fit-content;
}
.footer-col a:hover { color: var(--ink); }
.footer-base {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.footer-base small { color: var(--faint); font-size: .8rem; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Legal pages (cgu / privacy-policy / mentions-legales / support
   / territoires), shared chrome, body copy untouched.
   ============================================================ */
.legal-page { background: var(--bg); }
.legal-topbar.simple { padding-block: 16px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--secondary); font-size: .85rem; font-weight: 600; text-decoration: none;
}
.legal-back:hover { color: var(--ink); }
.legal-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.legal-main { width: min(680px, calc(100% - 48px)); margin: 0 auto; padding: clamp(48px, 8vw, 80px) 0 110px; }
.legal-crumb { margin: 0 0 22px; color: var(--faint); font-size: .82rem; }
.legal-crumb a { color: var(--faint); text-decoration: none; }
.legal-crumb a:hover { color: var(--secondary); }

.legal-head { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-head h1 { max-width: 20ch; font-size: clamp(1.9rem, 3.6vw, 2.5rem); line-height: 1.14; color: var(--ink); }
.legal-dek { max-width: 56ch; margin: 15px 0 0; color: var(--secondary); font-size: 1rem; }
.legal-updated { margin: 15px 0 0; color: var(--faint); font-size: .8rem; }

.legal-doc { padding-top: 6px; }
.legal-doc section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-doc section:first-child { padding-top: 28px; }
.legal-doc h2 { margin: 0 0 12px; font-size: 1.12rem; font-weight: 700; letter-spacing: -.005em; font-family: var(--sans); color: var(--ink); max-width: none; }
.legal-doc h3 { margin: 18px 0 6px; font-size: .92rem; font-weight: 700; color: var(--ink); font-family: var(--sans); }
.legal-doc p, .legal-doc li { color: var(--secondary); font-size: .95rem; line-height: 1.72; }
.legal-doc p + p { margin-top: 13px; }
.legal-doc ul { margin: 10px 0 0; padding-left: 20px; }
.legal-doc li { margin: 8px 0; }
.legal-doc strong { color: var(--ink); }
.legal-doc a { color: var(--discovery); font-weight: 700; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

/* Territoires demo metrics (unstyled component kept for that page) */
.city-metrics { border-top: 1px solid var(--line); }
.city-metrics p { margin: 0; padding: 26px 0; border-bottom: 1px solid var(--line); }
.city-metrics b, .city-metrics span { display: block; }
.city-metrics b { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); }
.city-metrics span { margin-top: 5px; color: var(--secondary); font-size: .86rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; }


  /* Le récit à téléphone fixe ne marche qu'avec de la place au repos :
     sous 960px, chaque étape devient son propre bloc, avec son image
     intégrée directement (65-75% de la hauteur d'écran). */
  .story { display: block; }
  .story-stage { display: none; }
  .story-step { min-height: auto; padding: 56px 0; opacity: 1; }
  /* Meme cadre que le telephone du hero : meme largeur, meme rapport, meme
     bordure. Une hauteur fixe de 70svh donnait un cadre en 1,66 alors que les
     captures sont en 2,16 : `object-fit: cover` en rognait pres d'un quart. */
  .story-shot {
    display: block;
    width: min(250px, 64vw);
    margin: 26px auto 0;
    aspect-ratio: 9 / 19.4;
    border: 10px solid var(--bg-deep);
    border-radius: 46px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .story-shot img { width: 100%; height: 100%; object-fit: cover; }

  .collection { grid-template-columns: 1fr; }
  .collection-fan { height: 260px; margin-top: 10px; }

  .faq-grid { grid-template-columns: 1fr; }
  footer.site-footer { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .topbar { min-height: 72px; padding-inline: 16px; }
  .opening h1 { font-size: clamp(2.3rem, 10vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 8.6vw, 2.3rem); }
  .story, .collection, .archive, .faq, .legal-main { width: min(100% - 32px, var(--max)); }
  .actions { display: grid; }
  .button { width: 100%; }
  footer.site-footer { grid-template-columns: 1fr; padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .opening-cue { animation: none; }
}

/* ---------- Page de campagne (/r/<source>) ---------- */
.campaign-note {
  margin: clamp(28px, 5vw, 44px) 0 0;
  color: var(--secondary);
  font-size: 1.05rem;
}
.campaign-source {
  margin: 10px 0 0;
  color: var(--faint);
  font-size: .8rem;
  letter-spacing: .04em;
}
.footer-availability { color: var(--gold); font-size: .84rem; }

/* ============================================================
   Hero : la promesse et le produit, cote a cote
   ============================================================ */
.hero {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: calc(100svh - 82px);
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: clamp(32px, 5vw, 72px);
  padding: clamp(48px, 7vw, 96px) 0;
}
.hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 1.08;
  color: var(--ink);
}
.hero-copy h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  margin: clamp(20px, 3vw, 30px) 0 0;
  max-width: 34ch;
  color: var(--secondary);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}
.hero-visual { display: flex; justify-content: center; }
/* Le logo accompagne le mot-repere, dans la barre comme dans le pied. */
.brand-logo { width: 42px; height: 42px; }

/* Precisions sous un pas de recit : plus discretes que le corps. */
.story-note { color: var(--faint); font-size: .95rem; }
.story-list {
  margin: 18px 0 0; padding: 0; list-style: none;
  color: var(--secondary); font-size: 1rem;
}
.story-list li { padding: 9px 0 9px 22px; position: relative; border-bottom: 1px solid var(--line-soft); }
.story-list li::before {
  content: ""; position: absolute; left: 2px; top: 18px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* Titre et chapeau de la section archives. */
.archive-title { max-width: 18ch; }
.archive-lede {
  max-width: 46ch; margin: 4px 0 6px;
  color: var(--secondary); font-size: 1.05rem;
}

/* ------------------------------------------------------------
   Surcharges mobiles du hero : placees apres ses regles de base,
   sinon la cascade les ignore et la page deborde.
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    width: min(var(--max), calc(100% - 32px));
  }
  .hero-copy h1, .hero-sub { max-width: none; margin-inline: auto; }
  .hero .actions { justify-content: center; }
  .hero-visual .phone { width: min(250px, 64vw); }
  .story-list { text-align: left; }

  /* La vue 1950 est le moment fort du site : sur mobile elle doit occuper
     l'ecran, pas se reduire a une vignette. La source est carree, un cadrage
     16/10 en perdait plus d'un tiers. */
  .archive { width: 100%; padding-inline: 16px; }
  .archive-frame { width: 100%; }
  .archive-frame img { aspect-ratio: 4 / 3; }
}

/* ------------------------------------------------------------
   Formulaire liste d'attente, repris de la version d'origine
   (commit 5376720^). Meme endpoint Brevo, memes champs, meme cle
   Turnstile. Seuls les noms de variables ont ete remis a jour :
   --muted -> --secondary, --text -> --ink, --gold-soft servait de
   couleur de texte et vaut desormais un fond translucide.
   ------------------------------------------------------------ */
.waitlist-form {
  display: grid;
  gap: 14px;
  width: min(460px, 100%);
  margin: 30px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  text-align: left;
}
.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
}
.waitlist-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(3, 7, 6, .44);
  font: inherit;
  outline: none;
}
.waitlist-form input::placeholder { color: var(--faint); }
.waitlist-form input:focus { border-color: var(--gold); }
.waitlist-form input.input-error { border-color: #df776a; }

/* Turnstile se rend dans une iframe de hauteur fixe : on reserve la
   place pour que le bouton ne saute pas quand le widget apparait. */
.turnstile-container {
  display: flex;
  align-items: center;
  min-height: 68px;
}
/* Le widget remplit la largeur du formulaire grace a `data-size="flexible"`
   pose sur le div, qui est le mode prevu par Cloudflare. Le conteneur doit
   simplement lui laisser toute la place. */
.turnstile-container .cf-turnstile { width: 100%; }

.hidden-field { display: none; }

.form-button { width: 100%; border: 0; cursor: pointer; }
.form-button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-note { margin: 0; color: var(--faint); font-size: 13px; }

.form-success {
  display: none;
  padding: 12px;
  border: 1px solid rgba(210, 180, 99, .32);
  border-radius: var(--radius-sm);
  background: rgba(210, 180, 99, .08);
  color: var(--gold);
  font-size: 14px;
}
.form-success.is-visible { display: block; }
