/* ============================================================
   elite creators — sito agenzia (esperienza 3D)
   Palette dal brand book: magenta #E8156F (solo accento),
   ink #1E2A28, crema #F7F2EC, nude #E0C9BC, salvia #8C9391.
   Font: Montserrat 300/400/500/600.
   Livelli: bg 0 · canvas 3D 1 · contenuti 2 · menu 75 · header 80 · grain 90 · loader 100
   ============================================================ */

/* Montserrat self-hosted (variabile, pesi 300-600, subset latin):
   niente richieste a Google Fonts — più veloce e GDPR-friendly */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/montserrat-var.woff2') format('woff2');
}

:root {
  --magenta: #E8156F;
  --ink: #1E2A28;
  --ink-deep: #141d1b;
  --ink-black: #0d1413;
  --crema: #F7F2EC;
  --nude: #E0C9BC;
  --salvia: #8C9391;
  --off-white: #FAFAFA;

  --font: 'Montserrat', 'Helvetica Neue', sans-serif;
  --container: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.9s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  font-weight: 300;
  background:
    radial-gradient(ellipse 110% 70% at 70% 0%, var(--ink) 0%, var(--ink-deep) 45%, var(--ink-black) 78%) fixed,
    var(--ink-black);
  color: var(--crema);
  line-height: 1.6;
  /* clip e non hidden: hidden creerebbe uno scroll-container
     e romperebbe position: sticky (sezione per i brand) */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--magenta); color: var(--off-white); }

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

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

.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.hidden-field { display: none; }

/* ---------- Accessibilità ---------- */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--magenta); color: var(--off-white);
  padding: 0.7em 1.4em; border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  transition: top 0.25s;
}
.skip-link:focus { top: 1rem; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Cursore-scia (solo desktop) ---------- */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 150;
  width: 26px; height: 26px;
  margin: -13px 0 0 -13px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 21, 111, 0.55) 0%, rgba(232, 21, 111, 0) 70%);
  pointer-events: none;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.3s, width 0.25s, height 0.25s, margin 0.25s;
}
.cursor-dot.is-on { opacity: 1; }
.cursor-dot.is-hover {
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
}

/* ---------- Canvas 3D ---------- */
.webgl {
  position: fixed; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}

main { position: relative; z-index: 2; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; align-content: center; gap: 1.6rem;
  background: var(--ink-black);
  transition: opacity 0.7s ease, visibility 0.7s;
}
.loader__symbol {
  width: 72px;
  animation: pulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(232, 21, 111, 0.45));
}
.loader__count {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--salvia);
  font-variant-numeric: tabular-nums;
}
.loader.is-done { opacity: 0; visibility: hidden; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.88); opacity: 0.7; }
}

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -20%; z-index: 90;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
  white-space: nowrap;
}
.btn--lg { font-size: 0.95rem; padding: 1em 2.3em; }
.btn--primary {
  background: var(--magenta);
  color: var(--off-white);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(232, 21, 111, 0.45);
}
.btn--ghost {
  border-color: rgba(247, 242, 236, 0.25);
  color: var(--crema);
}
.btn--ghost:hover {
  border-color: var(--crema);
  transform: translateY(-2px);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--salvia);
  margin-bottom: 1.4rem;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 12px rgba(232, 21, 111, 0.8);
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 1.1rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.header.is-scrolled {
  padding: 0.65rem 0;
  background: rgba(13, 20, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(247, 242, 236, 0.07);
}
.header__inner { display: flex; align-items: center; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; color: var(--crema); }
.brand__symbol { width: 34px; color: var(--magenta); }
.brand__wordmark {
  font-size: 0.95rem; font-weight: 500;
  line-height: 0.92; letter-spacing: -0.02em;
}
.header__links { display: flex; gap: 2.2rem; list-style: none; margin-left: auto; }
.header__links a {
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 236, 0.75);
  position: relative;
  transition: color 0.3s;
}
.header__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--magenta);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.header__links a:hover { color: var(--crema); }
.header__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.lang-toggle {
  background: none;
  border: 1px solid rgba(247, 242, 236, 0.22);
  border-radius: 999px;
  color: rgba(247, 242, 236, 0.75);
  font-family: var(--font);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.lang-toggle:hover { border-color: var(--magenta); color: var(--crema); }
.lang-toggle--menu { font-size: 0.95rem; padding: 0.6em 1.6em; }

.header__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 7px;
  margin-left: auto;
}
.header__burger span {
  display: block; height: 1.5px; width: 26px;
  background: var(--crema);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.header__burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.header__burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 75;
  background: rgba(13, 20, 19, 0.97);
  backdrop-filter: blur(18px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s, visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; display: grid; gap: 1.6rem; }
.mobile-menu a:not(.btn) { font-size: 1.7rem; font-weight: 500; color: var(--crema); }

/* ---------- Hero (sfondo trasparente: dietro c'è il cuore 3D) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
}
/* I testi dell'hero partono quando il loader ha finito (body.is-ready):
   la camera sta uscendo dalla serratura e le lettere salgono in scena. */
.hero__eyebrow { opacity: 0; }
body.is-ready .hero__eyebrow { animation: fadeUp 1s var(--ease-out) 1.2s forwards; }
.hero__title {
  font-size: clamp(3.2rem, 9.5vw, 8.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0.6rem 0 3rem;
}
.hero__title em {
  font-style: normal;
  color: var(--magenta);
  text-shadow: 0 0 60px rgba(232, 21, 111, 0.5);
}
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line { display: block; transform: translateY(115%); }
body.is-ready .line { animation: lineUp 1.1s var(--ease-out) 1.4s forwards; }
@keyframes lineUp { to { transform: translateY(0); } }
/* modalità lettere (il JS spezza le righe in .hw/.hch) */
.hero__title .hw { display: inline-block; white-space: nowrap; }
.hero__title .hch {
  display: inline-block;
  transform: translateY(115%) rotate(5deg);
}
body.is-ready .hero__title .hch {
  animation: heroCh 0.9s var(--ease-out) var(--d, 1.4s) forwards;
}
@keyframes heroCh { to { transform: translateY(0) rotate(0deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  opacity: 0;
}
body.is-ready .hero__bottom { animation: fadeUp 1s var(--ease-out) 2.1s forwards; }
.hero__ticker {
  width: 100%;
  display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
  margin-top: 2.4rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--salvia);
  opacity: 0;
}
body.is-ready .hero__ticker { animation: fadeUp 1s var(--ease-out) 2.5s forwards; }
.hero__ticker span { color: var(--magenta); }
.hero__lead {
  max-width: 32rem;
  font-size: 1.05rem;
  color: rgba(247, 242, 236, 0.72);
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scrollhint {
  position: absolute;
  left: 50%; bottom: 2.2rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--salvia);
  opacity: 0;
}
body.is-ready .hero__scrollhint { animation: fadeUp 1s var(--ease-out) 2.9s forwards; }
.hero__scrollline {
  width: 1px; height: 44px;
  background: rgba(247, 242, 236, 0.2);
  position: relative; overflow: hidden;
}
.hero__scrollline::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--magenta);
  animation: scrolldrop 1.8s ease-in-out infinite;
}
@keyframes scrolldrop { to { top: 110%; } }

/* ---------- Story / strumenti ----------
   La sezione è solo uno "spazio di scroll" (100vh per pannello);
   i pannelli sono fissi e il JS ne guida opacità e posizione. */
.story { height: 600vh; position: relative; }
.panel {
  position: fixed; inset: 0; z-index: 2;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  will-change: opacity;
}
/* .panel__row è anche .container: eredita larghezza e centratura da lì */
.panel__row { display: flex; }
.panel__row--left { justify-content: flex-start; }
.panel__row--right { justify-content: flex-end; }
.panel__box {
  max-width: 30rem;
  will-change: transform;
}
.panel__num {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1.3rem;
}
.panel__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
/* il titolo viene spezzato in lettere dal JS per la coreografia scrub */
.panel__title .pw { display: inline-block; white-space: nowrap; }
.panel__title .ch { display: inline-block; }

.panel__desc {
  font-size: 1.05rem;
  color: rgba(247, 242, 236, 0.75);
  margin-bottom: 1.8rem;
}
.chips { list-style: none; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.chips li {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--crema);
  border: 1px solid rgba(247, 242, 236, 0.22);
  border-radius: 999px;
  padding: 0.45em 1.1em;
  background: rgba(13, 20, 19, 0.4);
  backdrop-filter: blur(6px);
}

/* Fallback senza WebGL o con reduced motion: pannelli in flusso normale */
.panel.is-static {
  position: relative;
  opacity: 1; visibility: visible;
  min-height: 70vh;
  pointer-events: auto;
}
.story:has(.panel.is-static) { height: auto; }

/* ---------- Marquee ---------- */
.marquee {
  position: relative; z-index: 2;
  border-block: 1px solid rgba(247, 242, 236, 0.08);
  padding: 1.4rem 0;
  overflow: hidden;
  background: var(--ink-black);
}
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(247, 242, 236, 0.35);
  white-space: nowrap;
}
.marquee__track span:nth-child(odd) { color: rgba(232, 21, 111, 0.75); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(6rem, 12vw, 10rem) 0; position: relative; z-index: 2; }
.section__head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__title {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
/* Titoli di sezione: stessa firma tipografica dei pannelli — le lettere
   entrano in sequenza quando il blocco .reveal diventa visibile */
.section__title .sw { display: inline-block; white-space: nowrap; }
.section__title .sch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em) rotate(4deg);
}
.reveal.in-view .section__title .sch,
.section__title.in-view .sch {
  animation: schIn 0.7s var(--ease-out) var(--d, 0s) forwards;
}
@keyframes schIn { to { opacity: 1; transform: translateY(0) rotate(0deg); } }

/* ---------- Metodo ----------
   Sfondo trasparente: dietro c'è il canvas 3D, dove il cuoricino-guida
   WebGL segue la curva del percorso */
.method {
  background: transparent;
  overflow: hidden;
  /* coda corta: subito dopo c'è il marquee-ponte verso il brand */
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.method::after {
  content: ""; position: absolute; pointer-events: none;
  width: 50vw; height: 50vw;
  left: -20vw; bottom: -25vw;
  background: radial-gradient(circle, rgba(232, 21, 111, 0.09) 0%, transparent 65%);
}

.method__lead {
  margin-top: 1.2rem;
  color: rgba(247, 242, 236, 0.7);
  max-width: 34rem;
}

/* Percorso: curva SVG generata dal JS sui nodi reali, disegnata con lo
   scroll; il cuoricino-punta viaggia lungo la curva */
.mpath {
  position: relative;
  display: flex; flex-direction: column;
  gap: clamp(4.5rem, 10vh, 8rem);
  padding: 3rem 0 4rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.mpath__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
  pointer-events: none;
}
/* la traccia del percorso resta nascosta: si vede solo la linea viva
   che si disegna (i nodi bastano a suggerire la strada) */
.mpath__track { display: none; }
.mpath__glow {
  fill: none;
  stroke: rgba(232, 21, 111, 0.16);
  stroke-width: 11;
  stroke-linecap: round;
}
.mpath__draw {
  fill: none;
  stroke: var(--magenta);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(232, 21, 111, 0.75));
}
.mpath__tip {
  position: absolute; top: 0; left: 0;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
  z-index: 2;
}
/* quando la guida è il cuore 3D (WebGL attivo), i tip DOM spariscono
   e anche il cuoricino piatto al centro del sigillo: al suo posto
   atterra il cuore 3D vero */
body.has-3d-guide .mpath__tip { display: none; }
body.has-3d-guide .seal__heart { display: none; }
/* anche la scritta circolare SVG: al suo posto c'è l'anello di testo 3D */
body.has-3d-guide .seal__ring { display: none; }
.mpath__tip svg {
  width: 100%;
  color: var(--magenta);
  filter: drop-shadow(0 0 12px rgba(232, 21, 111, 1));
  animation: tipPulse 1.5s ease-in-out infinite;
}
@keyframes tipPulse { 50% { transform: scale(0.82); } }
/* scia: cuoricini fantasma che inseguono la guida */
.mpath__tip--trail { width: 20px; height: 20px; margin: -10px 0 0 -10px; z-index: 1; }
.mpath__tip--trail svg {
  animation: none;
  filter: drop-shadow(0 0 8px rgba(232, 21, 111, 0.8));
}

.mstep {
  position: relative;
  display: flex; align-items: center; gap: 1.5rem;
  width: fit-content;
  max-width: min(34rem, 100%);
}
.mstep--1 { margin-left: 5%; }
.mstep--2 { margin-left: 50%; }
.mstep--3 { margin-left: 12%; }
.mstep--4 { margin-left: 54%; }
/* Il numero gigante vive nello spazio vuoto SOPRA la fase,
   così non si sovrappone mai a titolo e testo */
.mstep__ghost {
  position: absolute; z-index: -1;
  left: 3.2rem; top: 0;
  transform: translateY(-78%);
  font-size: clamp(3.8rem, 7.5vw, 6.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 242, 236, 0.14);
  transition: -webkit-text-stroke-color 0.6s, color 0.6s, transform 0.6s var(--ease-out);
}
.mstep.is-passed .mstep__ghost {
  -webkit-text-stroke-color: rgba(232, 21, 111, 0.6);
  color: rgba(232, 21, 111, 0.08);
  transform: translateY(-78%) translateX(0.06em);
}
.mstep__node {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink-deep);
  border: 1px solid rgba(247, 242, 236, 0.18);
  color: rgba(247, 242, 236, 0.25);
  transition: border-color 0.5s, color 0.5s, box-shadow 0.5s, transform 0.5s var(--ease-out);
}
.mstep__node svg { width: 20px; }
.mstep.is-passed .mstep__node {
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: 0 0 20px rgba(232, 21, 111, 0.55);
  transform: scale(1.1);
  animation: nodePing 0.7s var(--ease-out);
}
@keyframes nodePing {
  0% { box-shadow: 0 0 0 0 rgba(232, 21, 111, 0.6); }
  100% { box-shadow: 0 0 0 24px rgba(232, 21, 111, 0); }
}
.mstep__card > * {
  opacity: 0.15;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mstep__card h3 { transition-delay: 0.07s; }
.mstep__card p { transition-delay: 0.14s; }
.mstep.is-passed .mstep__card > * { opacity: 1; transform: translateY(0); }
.mstep__phase {
  display: inline-block;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.7rem;
}
.mstep__card h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.55rem;
}
.mstep__card p { color: rgba(247, 242, 236, 0.62); font-size: 0.97rem; }

/* La garanzia: sigillo rotante che si "stampa" all'arrivo + dichiarazione */
.guarantee {
  display: flex; align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}
/* Il sigillo parte invisibile e si "stampa" (classe .is-stamped via JS,
   quando il blocco è ben dentro il viewport) */
.guarantee__seal {
  flex: none;
  width: clamp(150px, 19vw, 210px);
  position: relative;
  opacity: 0;
}
.guarantee.is-stamped .guarantee__seal {
  animation: stamp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes stamp {
  0% { transform: scale(2.6) rotate(-28deg); opacity: 0; }
  55% { transform: scale(0.92) rotate(4deg); opacity: 1; }
  75% { transform: scale(1.05) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
/* onda d'urto all'impatto */
.guarantee__seal::before {
  content: ""; position: absolute; inset: 2%;
  border-radius: 50%;
  border: 2px solid rgba(232, 21, 111, 0.8);
  opacity: 0;
  pointer-events: none;
}
.guarantee.is-stamped .guarantee__seal::before {
  animation: sealBurst 0.9s ease-out 0.5s 1 both;
}
@keyframes sealBurst {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.7); opacity: 0; }
}
/* respiro continuo dopo la stampa */
.guarantee__seal::after {
  content: ""; position: absolute; inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(232, 21, 111, 0.4);
  opacity: 0;
  pointer-events: none;
}
.guarantee.is-stamped .guarantee__seal::after {
  animation: sealPulse 2.6s ease-out 1.4s infinite;
}
@keyframes sealPulse {
  0% { transform: scale(0.92); opacity: 0.9; }
  70%, 100% { transform: scale(1.22); opacity: 0; }
}
.seal__svg { width: 100%; display: block; animation: sealFloat 5s ease-in-out infinite; }
@keyframes sealFloat { 50% { transform: translateY(-7px); } }
.seal__ring {
  transform-origin: 100px 100px;
  transform-box: view-box;
  animation: sealSpin 13s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
.seal__text {
  fill: rgba(247, 242, 236, 0.72);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.guarantee__chips { margin-top: 1.5rem; }
.guarantee__title {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.guarantee__title em {
  font-style: normal;
  color: var(--magenta);
  text-shadow: 0 0 44px rgba(232, 21, 111, 0.4);
}
.guarantee__sub {
  margin-top: 1rem;
  color: rgba(247, 242, 236, 0.68);
  max-width: 36rem;
}
.guarantee__cta { margin-top: 1.8rem; }

/* ---------- Per i brand (sequenza pinnata) ----------
   Sfondo trasparente: dietro c'\u00e8 il canvas 3D — il cuore-guida arriva
   dalla garanzia e lo sciame di mini-cuori si ordina in orbita. */
.forbrands {
  position: relative;
  height: 340vh;
  background: transparent;
}
.fb-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  z-index: 2;
}
/* .fb-frame è anche .container: eredita larghezza e centratura da lì
   (un width:100% qui la annullerebbe — già successo coi pannelli) */
.fb-copy { max-width: 30rem; }
/* align-items start: ogni beat parte subito sotto l'occhiello — senza,
   la griglia riserva l'altezza del beat più alto e il testo "galleggia" */
.fb-beats { display: grid; align-items: start; margin-top: 1.2rem; }
.fb-beat {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
}
.fb-beat__title {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.fb-beat__text {
  font-size: 1.05rem;
  color: rgba(247, 242, 236, 0.72);
  max-width: 26rem;
}
.fb-cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.8rem; }
.fb-cta__mail { color: var(--salvia); font-size: 0.9rem; }
.fb-marquee {
  position: relative; z-index: 2;
  background: var(--ink-black);
  border-block: 1px solid rgba(247, 242, 236, 0.08);
  padding: 1.1rem 0;
  overflow: hidden;
}
.fb-marquee__track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.fb-marquee__track span {
  color: rgba(247, 242, 236, 0.3);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
}
/* fallback senza WebGL / reduced motion: beat impilati, niente pin */
body:not(.has-3d-guide) .forbrands { height: auto; padding: clamp(6rem, 12vw, 10rem) 0; background: var(--ink); }
body:not(.has-3d-guide) .fb-sticky { position: static; height: auto; }
body:not(.has-3d-guide) .fb-beat {
  position: static;
  opacity: 1; visibility: visible;
  margin-bottom: 3rem;
}

/* ---------- Candidatura (wizard immersivo) ----------
   Sfondo trasparente: il cuore 3D atterra dentro l'anello del lucchetto */
.apply { overflow: hidden; background: transparent; }
.apply__glow {
  position: absolute; pointer-events: none;
  width: 70vw; height: 70vw; max-width: 1000px; max-height: 1000px;
  left: 50%; top: -30%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 21, 111, 0.13) 0%, transparent 60%);
}
.apply__lead {
  margin-top: 1.2rem;
  color: rgba(247, 242, 236, 0.7);
  max-width: 34rem;
}
.wizard { position: relative; }
.wizard__stage {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 300px;
}
.wstep { display: none; }
.wstep.is-active { display: block; animation: wstepIn 0.55s var(--ease-out); }
@keyframes wstepIn {
  from { opacity: 0; transform: translateY(28px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.wstep__q {
  display: block;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}
/* la domanda si compone lettera per lettera a ogni step
   (display none→block fa ripartire le animazioni da solo) */
.wstep__q .ww { display: inline-block; white-space: nowrap; }
.wstep__q .wch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em) rotate(4deg);
}
.wstep.is-active .wstep__q .wch {
  animation: schIn 0.5s var(--ease-out) var(--d, 0s) forwards;
}
.wstep__input {
  width: 100%; max-width: 30rem;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(247, 242, 236, 0.18);
  border-radius: 0;
  color: var(--crema);
  font-family: var(--font);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  padding: 0.45em 0;
  transition: border-color 0.3s;
  resize: vertical;
}
.wstep__input::placeholder { color: rgba(140, 147, 145, 0.55); }
.wstep__input:focus { outline: none; border-color: var(--magenta); }
.wstep__input--num { max-width: 8rem; }
.wstep__input--num::-webkit-outer-spin-button,
.wstep__input--num::-webkit-inner-spin-button { -webkit-appearance: none; }
.wstep__note { margin-top: 0.9rem; font-size: 0.85rem; color: var(--salvia); }
.consent {
  display: flex; gap: 0.9rem; align-items: flex-start;
  max-width: 30rem;
  font-size: 0.95rem;
  color: rgba(247, 242, 236, 0.8);
  cursor: pointer;
}
.consent input { accent-color: var(--magenta); margin-top: 0.3em; transform: scale(1.3); }

/* cuore-lucchetto: l'anello si riempie a ogni risposta */
.wizard__lock { position: relative; justify-self: center; width: 100%; max-width: 210px; }
.wlock__ring-bg, .wlock__ring { fill: none; stroke-width: 2.5; }
.wlock__ring-bg { stroke: rgba(247, 242, 236, 0.1); }
.wlock__ring {
  stroke: var(--magenta);
  stroke-linecap: round;
  stroke-dasharray: 553;
  stroke-dashoffset: 553;
  transform: rotate(-90deg);
  transform-origin: 100px 100px;
  transition: stroke-dashoffset 0.7s var(--ease-out);
  filter: drop-shadow(0 0 7px rgba(232, 21, 111, 0.7));
}
.wlock__heart { color: var(--magenta); }
/* col 3D attivo il cuoricino piatto sparisce: al suo posto atterra
   il cuore 3D (resta come fallback senza WebGL) */
body.has-3d-guide .wlock__heart { opacity: 0; }
body.has-3d-guide .wizard__success svg { opacity: 0; }
.wlock__heart path {
  transform-box: fill-box;
  transform-origin: center;
}
.wizard__lock.beat .wlock__heart path { animation: wbeat 0.5s var(--ease-out); }
@keyframes wbeat { 35% { transform: scale(1.14); } }
.wizard__count {
  position: absolute;
  left: 50%; bottom: -2rem;
  transform: translateX(-50%);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--salvia);
  white-space: nowrap;
}
/* le risposte date diventano chip sotto l'anello: un tap per tornarci */
.wizard__answers {
  position: absolute;
  top: calc(100% + 3rem);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 230px;
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  justify-content: center;
}
.wanswer {
  font-family: var(--font);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 236, 0.75);
  background: rgba(13, 20, 19, 0.55);
  border: 1px solid rgba(247, 242, 236, 0.16);
  border-radius: 999px;
  padding: 0.4em 0.95em;
  cursor: pointer;
  max-width: 220px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
  animation: wanswerIn 0.45s var(--ease-out);
}
.wanswer:hover { border-color: var(--magenta); color: var(--crema); transform: translateY(-2px); }
@keyframes wanswerIn {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
}
.wizard__nav {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.wizard__back {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 236, 0.25);
  background: none;
  color: var(--crema);
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color 0.3s, opacity 0.3s, transform 0.3s var(--ease-out);
}
.wizard__back:disabled { opacity: 0.25; cursor: default; }
.wizard__back:not(:disabled):hover { border-color: var(--crema); transform: translateX(-3px); }
.wizard__hint { font-size: 0.78rem; color: var(--salvia); letter-spacing: 0.04em; }
.wizard__error {
  margin-top: 1rem;
  min-height: 1.4em;
  color: var(--magenta);
  font-size: 0.92rem; font-weight: 500;
}
.wizard__success { text-align: center; padding: clamp(3rem, 8vw, 5rem) 0; }
.wizard__success svg {
  width: 110px;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 0 32px rgba(232, 21, 111, 0.65));
  animation: wbeat 0.8s var(--ease-out);
}
.wizard__success h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.wizard__success p { color: rgba(247, 242, 236, 0.7); }
.wizard__success-ig { margin-top: 1.8rem; }

/* ---------- FAQ ---------- */
/* sfondo trasparente: il cuore 3D (canvas dietro le sezioni) deve vedersi
   nel palco — stessa cura di .apply; il fondo scuro lo dà il body */
.faq { background: transparent; }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
/* palco del cuoricino: colonna sticky, il 3D si aggancia al dock */
.faq__stage {
  position: sticky;
  top: 22vh;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__dock {
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(232, 21, 111, 0.35);
  background: radial-gradient(circle at 50% 45%, rgba(232, 21, 111, 0.12), transparent 65%);
  animation: faqDockBreath 5s ease-in-out infinite;
}
@keyframes faqDockBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 21, 111, 0.0); }
  50% { box-shadow: 0 0 60px 6px rgba(232, 21, 111, 0.14); }
}
.faq__flat {
  width: 46%;
  filter: drop-shadow(0 10px 30px rgba(232, 21, 111, 0.35));
  animation: faqFlatBeat 2.4s ease-in-out infinite;
}
@keyframes faqFlatBeat {
  0%, 100% { transform: scale(1); }
  12% { transform: scale(1.06); }
  24% { transform: scale(1); }
}
/* col 3D attivo il cuoricino piatto lascia il posto al modello */
body.has-3d-guide .faq__flat { opacity: 0; }
.faq__list {
  max-width: 46rem;
  display: grid;
  gap: 0.8rem;
  counter-reset: faq;
}
.faq__item {
  border: 1px solid rgba(247, 242, 236, 0.1);
  border-radius: 16px;
  background: rgba(13, 20, 19, 0.4);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease-out), background 0.3s;
  counter-increment: faq;
}
.faq__item[open] {
  border-color: rgba(232, 21, 111, 0.5);
  background: rgba(13, 20, 19, 0.72);
}
@media (pointer: fine) {
  .faq__item:hover:not([open]) { transform: translateX(8px); border-color: rgba(232, 21, 111, 0.28); }
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 3.4rem 1.35rem 4.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}
/* numero ghost in outline, come le fasi del metodo */
.faq__item summary::before {
  content: "0" counter(faq);
  position: absolute; left: 1.3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 21, 111, 0.4);
  transition: color 0.35s, -webkit-text-stroke-color 0.35s;
}
.faq__item[open] summary::before {
  color: var(--magenta);
  -webkit-text-stroke-color: transparent;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 300;
  color: var(--magenta);
  transition: transform 0.35s var(--ease-out);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--off-white); }
.faq__item p {
  padding: 0 1.4rem 1.3rem 4.4rem;
  color: rgba(247, 242, 236, 0.68);
  font-size: 0.97rem;
  max-width: 40rem;
  animation: faqIn 0.4s var(--ease-out);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
}

/* ---------- Tooltip privacy (piccolo, ancorato al link) ---------- */
.privacy-tip {
  position: fixed;
  z-index: 120;
  max-width: 240px;
  background: var(--ink-deep);
  color: rgba(247, 242, 236, 0.8);
  border: 1px solid rgba(247, 242, 236, 0.14);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.76rem;
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  animation: tipIn 0.25s var(--ease-out);
}
@keyframes tipIn {
  from { opacity: 0; transform: translateY(6px); }
}
.privacy-tip a {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--magenta);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 2;
  background: var(--ink-black);
  border-top: 1px solid rgba(247, 242, 236, 0.08);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  overflow: hidden;
}
.footer__top {
  display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.footer__symbol {
  width: 54px; color: var(--magenta);
  filter: drop-shadow(0 0 20px rgba(232, 21, 111, 0.4));
  margin-bottom: 1.4rem;
}
.footer__payoff { font-size: 1.25rem; font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
.footer__cols { display: flex; gap: clamp(2.5rem, 6vw, 6rem); flex-wrap: wrap; }
.footer__col { display: grid; gap: 0.7rem; align-content: start; }
.footer__col h4 {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--salvia);
  margin-bottom: 0.5rem;
}
.footer__col a {
  font-size: 0.92rem;
  color: rgba(247, 242, 236, 0.75);
  transition: color 0.3s;
  width: fit-content;
}
.footer__col a:hover { color: var(--magenta); }
.footer__muted { font-size: 0.82rem; color: var(--salvia); }
.footer__cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(247, 242, 236, 0.08);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.footer__cta-text {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.footer__stage { position: relative; }
/* il cuoricino dorme appoggiato sul wordmark; al passaggio si sveglia */
.footer__sleeper {
  position: absolute;
  right: 12%;
  bottom: 88%;
  width: clamp(40px, 5vw, 64px);
  color: var(--magenta);
  cursor: pointer;
  transform: rotate(78deg);
  transform-origin: 50% 90%;
  filter: drop-shadow(0 0 14px rgba(232, 21, 111, 0.35));
  animation: sleepBreath 3.2s ease-in-out infinite;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}
@keyframes sleepBreath { 50% { scale: 1.05; } }
.footer__sleeper:hover, .footer__sleeper:focus-visible {
  transform: rotate(0deg);
  filter: drop-shadow(0 0 26px rgba(232, 21, 111, 0.8));
}
.footer__wordmark {
  font-size: clamp(4rem, 14vw, 12.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
  white-space: nowrap;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 242, 236, 0.14);
  user-select: none;
  transition: color 1s ease;
}
.footer__wordmark:hover { color: rgba(232, 21, 111, 0.12); }

/* pioggia di cuoricini (easter egg) */
.heart-rain {
  position: fixed; inset: 0; z-index: 95;
  pointer-events: none;
  overflow: hidden;
}
.heart-rain svg {
  position: absolute;
  top: -8vh;
  width: 22px;
  color: var(--magenta);
  animation: rainFall linear forwards;
}
@keyframes rainFall {
  to { transform: translateY(115vh) rotate(360deg); opacity: 0.2; }
}
.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247, 242, 236, 0.07);
  font-size: 0.75rem;
  color: var(--salvia);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(6px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), filter var(--dur) var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}
.reveal.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  /* FAQ: colonna singola, palco compatto sopra la lista */
  .faq__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .faq__stage { position: static; min-height: 0; order: -1; }
  .faq__dock { width: 120px; animation: none; }
  .faq__item summary { padding-left: 3.4rem; }
  .faq__item summary::before { left: 1rem; font-size: 1.15rem; }
  .faq__item p { padding-left: 3.4rem; }
  .header__links, .header__cta { display: none; }
  .hero__scrollhint { display: none; }

  /* la garanzia si centra: la curva atterra in mezzo allo schermo */
  .guarantee { flex-direction: column; align-items: center; text-align: center; }
  .guarantee__seal { width: 150px; }
  .guarantee__sub, .guarantee__chips { margin-left: auto; margin-right: auto; }
  .guarantee__chips { justify-content: center; }

  /* percorso metodo: la serpentina attraversa tutto lo schermo —
     nodi alternati sul bordo destro e sinistro, ancorati IN ALTO così
     la curva costeggia il bordo accanto al testo e attraversa lo schermo
     solo negli spazi vuoti tra una fase e l'altra */
  .mpath { gap: clamp(5.5rem, 13vh, 9rem); }
  .mstep { width: 100%; max-width: none; gap: 1.1rem; align-items: flex-start; }
  .mstep--1, .mstep--2, .mstep--3, .mstep--4 { margin-left: 0; }
  .mstep--2, .mstep--4 { flex-direction: row-reverse; }
  .mstep__card { max-width: 30rem; }
  .mstep__card h3 { font-size: 1.7rem; }
  .mstep__card p { font-size: 1rem; }
  .mstep__ghost { font-size: 4.4rem; }
  .mstep__node { width: 40px; height: 40px; margin-top: 0.2rem; }
  .mstep__node svg { width: 17px; }
  .header__burger { display: flex; }

  /* perf: il filtro sul tratto vivo forza un repaint a ogni frame di
     scroll — su mobile lo spegniamo (il bagliore lo dà gia il glow largo) */
  .mpath__draw { filter: none; }
  .chips li { backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* per i brand: testo in alto (si vede subito quando la sezione entra),
     cuore e sciame nel terzo basso */
  .fb-sticky { align-items: flex-start; }
  .fb-copy { padding-top: 11vh; }
  .fb-beat__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .fb-beat__text { font-size: 0.98rem; max-width: 24rem; }
  .fb-cta { margin-top: 1.4rem; gap: 1rem; }

  /* wizard: lucchetto sopra, domande sotto */
  .wizard__stage { grid-template-columns: 1fr; min-height: 0; gap: 2.6rem; }
  .wizard__lock { order: -1; max-width: 130px; }
  .wizard__count { bottom: -1.6rem; }
  .wizard__answers { display: none; } /* su mobile lo spazio non c'è */

  /* Su mobile il cuore vive nella metà alta e il testo entra dal basso,
     su un gradiente cinematografico invece che dentro una card */
  .panel { align-items: flex-end; }
  .panel::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 62%;
    background: linear-gradient(180deg, rgba(13, 20, 19, 0) 0%, rgba(13, 20, 19, 0.9) 52%);
    pointer-events: none;
  }
  .panel__row--left, .panel__row--right { justify-content: flex-start; }
  .panel__box {
    position: relative; z-index: 1;
    max-width: 34rem;
    padding-bottom: 13vh;
  }
  .panel__desc { font-size: 0.98rem; }
}
@media (max-width: 560px) {
  .wizard__nav { flex-wrap: wrap; }
  .wizard__hint { display: none; }
  .footer__wordmark { white-space: normal; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .line, .hero__bottom, .hero__eyebrow, .hero__scrollhint,
  .hero__ticker, .hero__title .hch, .section__title .sch,
  .mstep__card > *, .guarantee__seal { opacity: 1; transform: none; filter: none; }
}
