/* ============================================================
   CLOSET — Landing
   Dark theme, viola + teal accent, monospace dettagli
   ============================================================ */

:root {
  --bg:            #07080d;
  --bg-alt:        #0a0c14;
  --bg-card:       #11131c;
  --bg-card-2:     #141724;
  --border:        rgba(255,255,255,0.06);
  --border-accent: rgba(124,92,255,0.22);

  --fg:            #f5f6fa;
  --fg-muted:      #9ba0b4;
  --fg-dim:        #5a5e72;
  --fg-faint:      #3a3d4d;

  --purple:        #7c5cff;
  --purple-soft:   #a995ff;
  --green:         #22d3a3;
  --green-soft:    #5ee0bd;
  --amber:         #f59e0b;
  --red:           #ef4f5e;

  --radius:        14px;
  --radius-sm:     8px;
  --maxw:          1240px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--border); margin: 18px 0; }

/* ============================================================
   Utility
   ============================================================ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.mt-md { margin-top: 16px; }
.mt-xl { margin-top: 48px; }

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; }
.mono--dim   { color: var(--fg-dim); }
.mono--purple{ color: var(--purple); }
.mono--green { color: var(--green); }
.mono--amber { color: var(--amber); }

.text-purple { color: var(--purple); }
.text-green  { color: var(--green); }
.text-amber  { color: var(--amber); }
.text-red    { color: var(--red); }
.text-muted  { color: var(--fg-muted); }
.muted       { color: var(--fg-muted); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow__dash {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--purple);
}

.display {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0;
}
.h-display {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 8px;
}
.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-muted);
  max-width: 56ch;
  margin: 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 32px;
  background: rgba(7, 8, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__links {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 14.5px;
  color: var(--fg-muted);
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--fg); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--purple);
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.32);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.nav__cta:hover {
  background: #8b6dff;
  box-shadow: 0 6px 22px rgba(124, 92, 255, 0.5);
  transform: translateY(-1px);
}
.nav__cta svg { transition: transform 0.2s; }
.nav__cta:hover svg { transform: translateX(3px); }

.nav__burger { display: none; }

/* ============================================================
   LOGO
   ============================================================ */
.logo { display: inline-flex; align-items: center; gap: 14px; }
.logo__mark {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 6px;
  width: 38px; height: 38px;
  background: var(--purple);
  border-radius: 9px;
  box-shadow: 0 4px 18px rgba(124,92,255,0.35);
}
.logo__mark > span {
  background: var(--fg);
  border-radius: 2px;
}
.logo__text {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cells-grid {
  position: absolute;
  top: 8%; right: -6%;
  width: 60%;
  height: 88%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 12px;
  opacity: 0.55;
}
.cells-grid::before, .cells-grid::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,92,255,0.18), transparent 65%);
  z-index: -1;
}
.cells-grid > * { display: block; }
.cells-grid:empty::before { content: ''; }
/* Render 20 placeholder cells via repeated content using nth-child trick is awkward;
   use ::before via JS instead — we generate them in script.js for hero & final. */

.cells-grid--dim { opacity: 0.35; }

.hero__inner { position: relative; z-index: 1; }
.meta-row {
  display: flex; justify-content: space-between;
  margin-bottom: 96px;
  color: var(--fg-dim);
}
.hero__copy { max-width: 720px; }
.hero__cta {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.chips {
  margin-top: 36px;
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* ============================================================
   BUTTONS / CHIPS / PILLS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 15px; font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--purple);
  color: var(--fg);
}
.btn--primary:hover { background: #8b6dff; }
.btn--ghost {
  border-color: var(--border-accent);
  color: var(--fg);
}
.btn--ghost:hover { background: rgba(124,92,255,0.08); }

.chip {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.chip--purple { color: var(--purple); border-color: rgba(124,92,255,0.4); background: rgba(124,92,255,0.08); }
.chip--green  { color: var(--green);  border-color: rgba(34,211,163,0.4); background: rgba(34,211,163,0.08); }

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pill--green { color: var(--green); background: rgba(34,211,163,0.12); }
.pill--purple{ color: var(--purple); background: rgba(124,92,255,0.14); }
.pill--amber { color: var(--amber); background: rgba(245,158,11,0.14); }
.pill--red   { color: var(--red); background: rgba(239,79,94,0.14); }
.pill--dim   { color: var(--fg-dim); background: rgba(255,255,255,0.05); }

.badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
}
.badge--purple { background: rgba(124,92,255,0.18); color: var(--purple); }
.badge--green  { background: rgba(34,211,163,0.18); color: var(--green); }

/* ============================================================
   SECTIONS / GRID / SPLIT
   ============================================================ */
.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--final {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 8px;
}
.split--center { align-items: center; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card__tag { margin: 0; }
.card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2px;
}
.card--accent {
  border-color: rgba(124,92,255,0.28);
  background: linear-gradient(180deg, rgba(124,92,255,0.06), var(--bg-card));
}
.card--inset {
  background: var(--bg-card-2);
  border-color: var(--border);
  padding: 20px;
}
.card--market { gap: 18px; }
.card--market h3 { font-size: 20px; }
.card--price h3 { font-size: 22px; }
.price {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.price span { font-size: 16px; color: var(--fg-muted); font-weight: 500; }

/* ============================================================
   BULLETS / LISTS
   ============================================================ */
.bullets { display: flex; flex-direction: column; gap: 8px; color: var(--fg-muted); }
.bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple);
}
.bullets--mono li { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--fg-dim); }
.bullets--mono li::before { background: var(--green); }
.bullets--big li { color: var(--fg); margin-bottom: 4px; }
.bullets--big li::before { background: var(--green); top: 10px; }

.ticks { display: flex; flex-direction: column; gap: 10px; color: var(--fg-muted); }
.ticks li {
  position: relative; padding-left: 22px;
  font-size: 15px; color: var(--fg);
}
.ticks li::before {
  content: '•';
  position: absolute;
  left: 0; top: -2px;
  color: var(--green);
  font-size: 22px;
}

.kv { display: flex; flex-direction: column; gap: 10px; }
.kv li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 15px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
  color: var(--fg-muted);
}
.kv li b { color: var(--fg); font-weight: 600; }
.margin {
  display: flex; justify-content: space-between;
  margin: 0;
  font-weight: 700;
  font-size: 17px;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; margin-top: 28px; }
.steps li {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.steps__n { color: var(--purple); font-family: var(--font-mono); font-weight: 500; }
.steps__t { font-weight: 600; font-size: 17px; }
.steps__d { color: var(--fg-dim); }

/* ============================================================
   CUBE (soluzione)
   ============================================================ */
.cube {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 24px;
}
.cube__head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 18px;
}
.cube__head .mono { flex: 1; }
.cube__head .mono:last-child { flex: 0; padding: 4px 10px; border: 1px solid rgba(34,211,163,0.3); border-radius: 6px; }
.cube__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.cube__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cell {
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.cell .mono { font-size: 10px; color: var(--fg-dim); }
.cell i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  align-self: flex-end;
  box-shadow: 0 0 6px rgba(34,211,163,0.6);
}
.cell--idle i  { background: var(--fg-faint); box-shadow: none; }
.cell--active {
  border-color: var(--purple);
  background: rgba(124,92,255,0.12);
  box-shadow: 0 0 30px rgba(124,92,255,0.25), inset 0 0 30px rgba(124,92,255,0.1);
}
.cell--active i { background: var(--purple); box-shadow: 0 0 6px var(--purple); }

/* ============================================================
   PHONES (UX flow)
   ============================================================ */
.phones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.phone { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.phone__screen {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9/19;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.phone__screen::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 14px;
  border-radius: 100px;
  background: #000;
}

.phone__hd { display: flex; justify-content: space-between; font-size: 11px; padding-top: 8px; }
.phone__days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.day {
  font-size: 9px; text-align: center;
  padding: 6px 2px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: var(--fg-muted);
  font-family: var(--font-mono);
}
.day b { display: block; color: var(--fg); font-size: 13px; margin-top: 2px; }
.day--on { background: var(--purple); color: var(--fg); }

.phone__legend { display: flex; flex-direction: column; gap: 3px; font-size: 8px; color: var(--fg-muted); }
.phone__legend span { display: flex; align-items: center; gap: 5px; }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot--g { background: var(--green); }
.dot--p { background: var(--purple); }
.dot--r { background: var(--red); }

.phone__cells { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.phone__cells span {
  background: rgba(34,211,163,0.08);
  border: 1px solid rgba(34,211,163,0.2);
  color: var(--green);
  font-size: 10px;
  padding: 8px 2px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
}
.phone__cells em { display: block; font-size: 7px; font-style: normal; opacity: 0.7; font-weight: 400; }

.phone__screen--center { justify-content: center; text-align: center; padding: 30px 18px; gap: 14px; }
.phone__screen--center h4 { margin: 0 0 8px; font-size: 14px; }
.phone-btn {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--fg);
  font-size: 11px;
  font-weight: 500;
}
.phone-btn--primary { background: var(--purple); border-color: var(--purple); }
.phone-btn--ghost   { border-color: rgba(124,92,255,0.3); }
.phone-btn--pay     { background: #2563eb; border-color: #2563eb; margin-top: auto; }
.phone-btn--open    { background: var(--green); border-color: var(--green); color: #001a13; font-weight: 700; }
.phone-btn--close   { background: rgba(255,255,255,0.04); }
.phone-btn--bio     { font-size: 9px; }
.phone-note { font-size: 8px; color: var(--fg-dim); margin: 4px 0 0; }

.phone__screen--pay { font-size: 10px; padding-top: 30px; }
.pay-l { font-size: 9px; color: var(--fg-muted); margin-top: 4px; }
.pay-i, .pay-card {
  background: var(--fg);
  color: #111;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 10px;
  display: flex; justify-content: space-between;
}
.pay-h { margin: 4px 0 2px; font-size: 10px; }
.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.pay-row span {
  background: var(--fg); color: #111;
  padding: 7px 8px; border-radius: 6px; font-size: 10px;
}

.phone__screen--ctrl { justify-content: flex-start; padding-top: 30px; gap: 8px; }
.ctrl-num { font-size: 56px; font-weight: 800; text-align: center; line-height: 1; margin: 8px 0 4px; }
.ctrl-t { margin: 0; text-align: center; font-weight: 700; font-size: 13px; }
.ctrl-s { text-align: center; color: var(--fg-dim); font-size: 9px; }
.ctrl-code {
  background: rgba(255,255,255,0.06);
  padding: 8px;
  border-radius: 6px;
  letter-spacing: 0.4em;
  text-align: center;
  font-size: 12px;
}
.ctrl-ok { color: var(--green); background: rgba(34,211,163,0.1); padding: 4px 6px; border-radius: 6px; text-align: center; font-size: 9px; }

/* ============================================================
   ADMIN dashboard mock
   ============================================================ */
.admin {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  overflow: hidden;
}
.admin__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.admin__dots { display: flex; gap: 5px; }
.admin__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--fg-faint); }
.admin__body { display: grid; grid-template-columns: 160px 1fr; }
.admin__side {
  padding: 18px 14px;
  border-right: 1px solid var(--border);
  font-size: 13px;
}
.admin__side ul { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; color: var(--fg-muted); }
.admin__side li {
  padding: 6px 10px;
  border-radius: 6px;
  cursor: default;
}
.admin__side li.active { background: rgba(124,92,255,0.14); color: var(--purple); }
.admin__title { font-weight: 700; margin: 4px 0 0; }
.admin__main { padding: 18px; }
.admin__main h4 { margin: 0 0 4px; font-size: 16px; }
.admin__url {
  background: rgba(255,255,255,0.04);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 10px;
  color: var(--purple);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  margin: 8px 0 16px;
  overflow: hidden;
}
.admin__url button {
  font-size: 10px; padding: 3px 8px;
  background: rgba(124,92,255,0.18);
  border: 0; color: var(--purple); border-radius: 4px;
}
.admin__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.adm-cell {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px;
}
.adm-cell > .mono { font-weight: 700; font-size: 13px; color: var(--fg); }
.adm-cell .pill { align-self: flex-start; }
.adm-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.adm-btns button {
  padding: 3px 4px;
  font-size: 9px;
  background: rgba(34,211,163,0.1);
  color: var(--green);
  border: 0;
  border-radius: 4px;
}
.adm-em {
  padding: 4px;
  font-size: 9px;
  background: rgba(239,79,94,0.12);
  color: var(--red);
  border: 0;
  border-radius: 4px;
}

/* ============================================================
   HIGHLIGHT (Passkey 2s)
   ============================================================ */
.highlight {
  display: grid;
  grid-template-columns: 220px 1fr 80px;
  gap: 28px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
}
.highlight__t { font-weight: 700; font-size: 20px; margin: 4px 0 0; }
.highlight__d { color: var(--fg-muted); font-size: 14px; margin: 0; }
.highlight__big { font-size: 56px; font-weight: 800; text-align: right; margin: 0; letter-spacing: -0.03em; }

/* ============================================================
   HARDWARE
   ============================================================ */
.hw {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.hw__cabinet {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px;
}
.hw__head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 14px;
  font-size: 11px;
}
.hw__rows { display: flex; flex-direction: column; gap: 6px; }
.hw__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.hw__row > span {
  aspect-ratio: 1/1.1;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  position: relative;
}
.hw__row > span::after {
  content: '';
  position: absolute;
  top: 6px; right: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 4px rgba(34,211,163,0.5);
}
.hw__row--small > span { aspect-ratio: 1/0.6; }
.hw__foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  text-align: center;
  color: var(--fg-dim);
}
.hw__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.hw__metrics > div { display: flex; flex-direction: column; gap: 4px; }
.hw__metrics b { font-size: 18px; }

.hw__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hw__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.hw__item h4 { margin: 8px 0 6px; font-size: 16px; }
.hw__item p { margin: 0; color: var(--fg-muted); font-size: 14px; }

/* ============================================================
   COMPARE (accesso 2s)
   ============================================================ */
.compare {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.compare__list { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.compare__list li {
  display: flex; justify-content: space-between;
  font-size: 15px;
}
.strike { text-decoration: line-through; color: var(--fg-faint); }

/* ============================================================
   CONCORRENZA TABLE
   ============================================================ */
.comp {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comp th, .comp td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.comp th {
  color: var(--fg-dim);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
}
.comp tbody tr:last-child td { border-bottom: 0; }
.comp tbody tr:hover { background: rgba(124,92,255,0.04); }

/* ============================================================
   ECON (business model)
   ============================================================ */
.econ {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}
.econ__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.econ__row > div { display: flex; flex-direction: column; gap: 4px; }
.econ__row b { font-size: 18px; font-weight: 700; }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.rm-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.rm-row h4 { margin: 0 0 4px; font-size: 17px; }
.rm-row p { margin: 0; color: var(--fg-muted); font-size: 14px; }
.rm-row b { font-family: var(--font-mono); font-size: 13px; }

.roadmap__ask {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 28px;
}
.ask__big {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
}
.ask__rows li {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  color: var(--fg-muted);
}
.ask__rows li b { color: var(--fg); font-family: var(--font-mono); }

/* ============================================================
   QR / DEMO
   ============================================================ */
.link-box {
  margin-top: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.link-box__a {
  display: inline-block;
  color: var(--purple);
  word-break: break-all;
  font-size: 12px;
  margin-top: 4px;
}

.split__right--qr { display: flex; justify-content: center; }
.qr { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.qr__box {
  width: 260px; height: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 80px rgba(124,92,255,0.25);
}
.qr__pattern {
  width: 100%; height: 100%;
  background:
    linear-gradient(#000 2px, transparent 2px) 0 0 / 100% 14px,
    linear-gradient(90deg, #000 2px, transparent 2px) 0 0 / 14px 100%,
    radial-gradient(circle at 14% 14%, #000 30%, transparent 32%) 0 0 / 100% 100%,
    radial-gradient(circle at 86% 14%, #000 30%, transparent 32%) 0 0 / 100% 100%,
    radial-gradient(circle at 14% 86%, #000 30%, transparent 32%) 0 0 / 100% 100%,
    #fff;
  background-size: 14px 14px, 14px 14px, 80px 80px, 80px 80px, 80px 80px;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.qr__pattern::before, .qr__pattern::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border: 8px solid #000;
  border-radius: 4px;
  background: #fff;
}
.qr__pattern::before { top: 0; left: 0; }
.qr__pattern::after  { top: 0; right: 0; }

.qr__pattern--real {
  background: #fff;
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.qr__pattern--real::before,
.qr__pattern--real::after { display: none; }
.qr__pattern--real img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.qr__pattern--real:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(124, 92, 255, 0.4);
}
.qr__pattern--real:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 6px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; z-index: 1; }
.final__h { font-size: clamp(56px, 9vw, 120px); margin: 24px 0; }
.final__l { color: var(--fg-muted); max-width: 600px; margin: 0 auto; }
.final__cta {
  margin-top: 64px;
  display: flex; gap: 80px; justify-content: center;
  flex-wrap: wrap;
}
.final__cta > div p:first-child { margin-bottom: 6px; }
.final__mail {
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-accent);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.final__mail:hover { color: var(--purple); border-color: var(--purple); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}
.footer__tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 4px 0;
  line-height: 1.6;
}
.footer__mail {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
  border-bottom: 1px solid var(--border-accent);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.footer__mail:hover { color: var(--purple); border-color: var(--purple); }

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.15s;
  display: inline-block;
}
.footer__col a:hover { color: var(--fg); }
.footer__col a .ext {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.6;
}

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .phones { grid-template-columns: repeat(2, 1fr); }
  .hw { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .econ { grid-template-columns: 1fr; }
  .econ__row { grid-template-columns: repeat(2, 1fr); }
  .highlight { grid-template-columns: 1fr; text-align: left; }
  .highlight__big { text-align: left; }
  .cells-grid { width: 100%; opacity: 0.25; }
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
  }
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
    background: transparent; border: 1px solid var(--border); border-radius: 8px;
    width: 40px; height: 40px;
    padding: 0; align-items: center;
  }
  .nav__burger span {
    display: block; width: 18px; height: 2px; background: var(--fg); border-radius: 2px;
  }
  .nav.is-open {
    background: var(--bg-alt);
    flex-wrap: wrap;
  }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    width: 100%;
    padding: 16px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 14px;
    gap: 16px;
    font-size: 16px;
    order: 3;
  }
  .nav.is-open .nav__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    order: 4;
    margin-top: 10px;
  }
  .section { padding: 80px 0; }
  .section--final { padding: 100px 0; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .phones { grid-template-columns: 1fr 1fr; }
  .hw__list { grid-template-columns: 1fr; }
  .admin__body { grid-template-columns: 1fr; }
  .admin__side { display: none; }
  .admin__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rm-row { grid-template-columns: 1fr; }
  .meta-row { margin-bottom: 60px; flex-direction: column; gap: 8px; }
  .final__cta { gap: 32px; flex-direction: column; }
  .qr__box { width: 220px; height: 220px; }
  .econ__row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ============================================================
   LANDING PAGE (index.html) — hero product showcase + sections
   ============================================================
   ============================================================ */

/* Buttons large variant + icon spacing */
.btn--lg {
  padding: 15px 26px;
  font-size: 16px;
  gap: 8px;
}
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   LHERO — Product showcase hero
   ============================================================ */
.lhero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.lhero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lhero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}
.lhero__glow--1 {
  width: 520px; height: 520px;
  background: #7c5cff;
  top: -120px; right: -80px;
}
.lhero__glow--2 {
  width: 380px; height: 380px;
  background: #22d3a3;
  bottom: -120px; left: -120px;
  opacity: 0.18;
}

.lhero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lhero__copy { max-width: 560px; }
.lhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 28px;
}
.lhero__eyebrow .dot {
  width: 8px; height: 8px;
  box-shadow: 0 0 8px var(--green);
}

.lhero__h {
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 24px;
}

.lhero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.55;
}

.lhero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lhero__pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--fg-muted);
  font-size: 14px;
}
.lhero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lhero__pills .mono { font-size: 14px; letter-spacing: 0; }

/* ============================================================
   SHOWCUBE — animated mockup
   ============================================================ */
.lhero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.showcube {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, rgba(124,92,255,0.08), var(--bg-card));
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 30px 80px -20px rgba(124,92,255,0.4),
    0 0 0 1px rgba(124,92,255,0.1) inset;
  position: relative;
}

.showcube__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 18px;
}
.showcube__head .mono { flex: 1; font-size: 11px; }
.showcube__head .mono:last-child { flex: 0; padding: 3px 8px; border-radius: 6px; background: rgba(34,211,163,0.1); }
.showcube__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: showpulse 2s infinite;
}

.showcube__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.scell {
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background: rgba(34,211,163,0.04);
  position: relative;
  animation: scellIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  animation-delay: var(--d);
}
.scell .mono { font-size: 10px; color: var(--fg-dim); }
.scell::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(34,211,163,0.6);
  align-self: flex-end;
}
.scell--idle { background: rgba(255,255,255,0.02); }
.scell--idle::after { background: var(--fg-faint); box-shadow: none; }
.scell--active {
  background: rgba(124,92,255,0.16);
  border-color: var(--purple);
  box-shadow:
    inset 0 0 30px rgba(124,92,255,0.18),
    0 0 28px rgba(124,92,255,0.32);
  animation: scellIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards, scellGlow 2.6s ease-in-out infinite;
  animation-delay: var(--d), 0.8s;
}
.scell--active::after { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.scell--active .mono { color: var(--purple-soft); }
.scell__b {
  position: absolute;
  inset: auto 0 10px 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--purple-soft);
  font-weight: 500;
}

.showcube__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 16px;
  margin-top: 18px;
  border-top: 1px dashed var(--border);
}
.showcube__foot > div { display: flex; flex-direction: column; gap: 2px; }
.showcube__foot b { font-size: 17px; font-weight: 700; }
.showcube__foot p { margin: 0; }

/* Floating notification cards */
.floatcard {
  position: absolute;
  background: rgba(20, 23, 36, 0.92);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: floatIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.floatcard--1 {
  top: 30px;
  right: -20px;
  animation-delay: 1.2s, 0s;
  animation-name: floatIn, floatBob;
  animation-duration: 0.8s, 4s;
  animation-iteration-count: 1, infinite;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1), ease-in-out;
}
.floatcard--2 {
  bottom: 40px;
  left: -28px;
  animation-delay: 1.5s, 1s;
  animation-name: floatIn, floatBob;
  animation-duration: 0.8s, 5s;
  animation-iteration-count: 1, infinite;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1), ease-in-out;
}
.floatcard__ic { font-size: 22px; }
.floatcard__t { margin: 0; font-size: 13px; font-weight: 600; }
.floatcard__s { margin: 2px 0 0; color: var(--fg-dim); font-size: 10px; }

@keyframes showpulse {
  0%, 100% { box-shadow: 0 0 8px var(--green); }
  50%      { box-shadow: 0 0 16px var(--green); }
}
@keyframes scellIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes scellGlow {
  0%, 100% { box-shadow: inset 0 0 30px rgba(124,92,255,0.18), 0 0 24px rgba(124,92,255,0.28); }
  50%      { box-shadow: inset 0 0 40px rgba(124,92,255,0.26), 0 0 40px rgba(124,92,255,0.5); }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   NUMSTRIP
   ============================================================ */
.numstrip {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 56px 0;
}
.numstrip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.numstrip__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.numstrip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border);
}
.numstrip__n {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--purple-soft);
  background: linear-gradient(180deg, var(--purple-soft), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.numstrip__n span {
  font-size: 0.4em;
  vertical-align: super;
  letter-spacing: 0;
  font-weight: 600;
  -webkit-text-fill-color: var(--fg-muted);
  margin-left: 2px;
}
.numstrip__item p {
  color: var(--fg-muted);
  font-size: 14px;
  margin: 0;
  max-width: 24ch;
  margin-left: auto; margin-right: auto;
}

/* ============================================================
   LSECTION — generic landing section
   ============================================================ */
.lsection {
  padding: 112px 0;
  border-bottom: 1px solid var(--border);
}
.lsection--alt { background: var(--bg-alt); }
.lsection__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.lsection__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 18px;
}
.lsection__h {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 16px;
}
.lsection__sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   STEPS-L — 4 step grid
   ============================================================ */
.steps-l {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}
.step-l {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step-l:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.step-l__ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(124,92,255,0.14);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-l__n {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--fg-faint);
  font-weight: 600;
  font-size: 13px;
}
.step-l h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.step-l p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ============================================================
   USECASES — 4 cards
   ============================================================ */
.usecases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ucard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.ucard:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(124,92,255,0.05), var(--bg-card));
}
.ucard__ic {
  font-size: 36px;
  line-height: 1;
}
.ucard h3 { margin: 0; font-size: 19px; font-weight: 700; }
.ucard p { margin: 0; color: var(--fg-muted); font-size: 14.5px; line-height: 1.55; flex: 1; }
.ucard__tag {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(34,211,163,0.1);
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================================
   TRUST strip
   ============================================================ */
.trust {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust__ic {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.trust__t { margin: 0 0 4px; font-weight: 700; font-size: 16px; }
.trust__s { margin: 0; color: var(--fg-muted); font-size: 14px; }

/* ============================================================
   LCTA — final call-to-action → pitch
   ============================================================ */
.lcta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.lcta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124,92,255,0.18), transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(34,211,163,0.10), transparent 70%);
  pointer-events: none;
}
.lcta__inner {
  position: relative;
  z-index: 1;
}
.lcta__h {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 20px;
}
.lcta__sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.lcta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   LANDING RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lhero__inner { grid-template-columns: 1fr; gap: 64px; }
  .lhero__visual { min-height: 0; }
  .floatcard--1 { right: 0; }
  .floatcard--2 { left: 0; }
  .numstrip__grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .numstrip__item:nth-child(2):after { display: none; }
  .steps-l { grid-template-columns: 1fr 1fr; }
  .usecases { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .lhero { padding: 56px 0 80px; }
  .lhero__h { font-size: clamp(40px, 12vw, 60px); }
  .lsection { padding: 80px 0; }
  .lsection__head { margin-bottom: 48px; }
  .numstrip__grid { grid-template-columns: 1fr; gap: 40px; }
  .numstrip__item::after { display: none !important; }
  .steps-l { grid-template-columns: 1fr; }
  .usecases { grid-template-columns: 1fr; }
  .lcta { padding: 100px 0; }
  .floatcard { padding: 8px 12px; }
  .floatcard__ic { font-size: 18px; }
  .floatcard__t { font-size: 12px; }
  .showcube { padding: 18px; }
}

/* ============================================================
   ============================================================
   ENHANCEMENTS — word reveal · cell cycle · tilt · wordmark
   ============================================================
   ============================================================ */

/* --- Hero word reveal staggered --- */
.reveal-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: wordReveal 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal-words .word:nth-child(1) { animation-delay: 0.05s; }
.reveal-words .word:nth-child(2) { animation-delay: 0.18s; }
.reveal-words .word:nth-child(3) { animation-delay: 0.36s; }
.reveal-words .word:nth-child(4) { animation-delay: 0.49s; }

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* --- Cell cycle: smooth color transitions for JS-driven swaps --- */
.scell {
  transition:
    background 0.7s ease,
    border-color 0.7s ease,
    box-shadow 0.7s ease;
}
.scell::after {
  transition: background 0.7s ease, box-shadow 0.7s ease;
}
.scell .mono {
  transition: color 0.7s ease;
}
.scell__b {
  animation: badgeIn 0.4s ease both;
}
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Tilt 3D perspective on the hero visual --- */
.lhero__visual {
  perspective: 1600px;
  perspective-origin: 50% 50%;
}
.showcube {
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.showcube__head,
.showcube__grid,
.showcube__foot {
  transform: translateZ(20px);
}
.scell--active {
  transform: translateZ(30px);
}
.floatcard {
  transform: translateZ(60px);
}

/* --- Giant wordmark watermark in final CTA --- */
.lcta { isolation: isolate; }
.lcta__wordmark {
  position: absolute;
  inset: auto 0 -8% 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(180px, 28vw, 420px);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(124, 92, 255, 0.22);
  background: linear-gradient(180deg, rgba(124,92,255,0.12), rgba(124,92,255,0));
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  animation: wordmarkFloat 12s ease-in-out infinite;
}
@keyframes wordmarkFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-words .word,
  .floatcard,
  .scell,
  .lcta__wordmark,
  .showcube__dot {
    animation: none !important;
    transition: none !important;
  }
  .reveal-words .word { opacity: 1; transform: none; filter: none; }
}

@media (max-width: 640px) {
  .lcta__wordmark { inset: auto 0 -2% 0; font-size: clamp(140px, 36vw, 240px); }
}

/* ============================================================
   FAB HOME — floating "Torna alla home" button (pitch.html)
   ============================================================ */
.fab-home {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px 12px 16px;
  background: rgba(17, 19, 28, 0.85);
  border: 1px solid rgba(124, 92, 255, 0.28);
  border-radius: 100px;
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(124, 92, 255, 0.08),
    0 0 24px rgba(124, 92, 255, 0.15);
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  animation: fabIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.fab-home:hover {
  background: rgba(124, 92, 255, 0.22);
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(124, 92, 255, 0.2),
    0 0 32px rgba(124, 92, 255, 0.35);
}
.fab-home svg {
  transition: transform 0.2s ease;
  color: var(--purple-soft);
}
.fab-home:hover svg {
  transform: translateX(-3px);
  color: var(--fg);
}

@keyframes fabIn {
  to {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .fab-home {
    bottom: 16px;
    left: 16px;
    padding: 11px 14px;
    gap: 0;
  }
  .fab-home__label { display: none; }
  .fab-home svg { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .fab-home {
    animation: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

/* ============================================================
   TIMELINE — Come funziona (vertical scroll-reveal)
   ============================================================ */
.lsection--timeline .container { max-width: 1120px; }

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline__line {
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 47px;
  width: 2px;
  background: rgba(124, 92, 255, 0.12);
  border-radius: 2px;
  z-index: 0;
  overflow: hidden;
}
.timeline__progress {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  background: linear-gradient(180deg, var(--purple), var(--purple-soft));
  box-shadow: 0 0 12px rgba(124, 92, 255, 0.7);
  transition: height 0.15s linear;
}

.tline {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr 340px;
  gap: 40px;
  padding: 56px 0;
  align-items: start;
}
.tline:first-child { padding-top: 24px; }
.tline:last-child  { padding-bottom: 24px; }

.tline__rail {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.tline__num {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  margin-bottom: 14px;
  transition: color 0.45s ease;
}

.tline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid rgba(124, 92, 255, 0.32);
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tline.is-active .tline__num { color: var(--purple); }
.tline.is-active .tline__dot {
  background: var(--purple);
  border-color: var(--purple);
  transform: scale(1.15);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(124, 92, 255, 0.5); }
  50%      { box-shadow: 0 0 26px rgba(124, 92, 255, 0.85); }
}

.tline__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tline.is-active .tline__body {
  opacity: 1;
  transform: translateY(0);
}

.tline__body h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.tline__lede {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 48ch;
}

.tline__bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
  list-style: none;
  padding: 0;
}
.tline__bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.tline__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(34, 211, 163, 0.85);
  box-shadow: 0 0 8px rgba(34, 211, 163, 0.5);
}

.tline__visual {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition:
    opacity 0.85s ease 0.15s,
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s;
}
.tline.is-active .tline__visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   PHONE-L — large mockup used inside timeline
   ============================================================ */
.phone-l {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9/19;
  background: linear-gradient(180deg, #181a28, #0c0d15);
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 36px;
  padding: 20px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin: 0 auto;
  box-shadow:
    0 30px 70px -20px rgba(124, 92, 255, 0.35),
    0 0 0 6px #050609,
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.phone-l::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 82px; height: 18px;
  background: #000;
  border-radius: 100px;
  z-index: 3;
}
.phone-l__hd {
  padding: 22px 4px 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--fg-dim);
}
.phone-l__cap {
  text-align: center;
  font-size: 10px;
  color: var(--fg-muted);
  margin: 4px 0 0;
}

/* --- Step 01: QR scan --- */
.phone-l__qr {
  flex: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,92,255,0.08), rgba(124,92,255,0.02));
  border: 1px solid rgba(124, 92, 255, 0.18);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.phone-l__qrcode {
  width: 58%;
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(0deg, transparent 0 4px, #fff 4px 6px),
    repeating-linear-gradient(90deg, #000 0 6px, transparent 6px 9px),
    #fff;
  background-blend-mode: difference;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 0 0 8px #fff, 0 4px 24px rgba(0,0,0,0.6);
}
.phone-l__qrcode::before,
.phone-l__qrcode::after {
  content: '';
  position: absolute;
  width: 26%;
  aspect-ratio: 1;
  background: #000;
  border: 4px solid #fff;
  border-radius: 4px;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 6px #000;
}
.phone-l__qrcode::before { top: 6%; left: 6%; }
.phone-l__qrcode::after  { top: 6%; right: 6%; }

.phone-l__qrcode--real {
  background: #fff;
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.phone-l__qrcode--real::before,
.phone-l__qrcode--real::after { display: none; }
.phone-l__qrcode--real img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.phone-l__qrcode--real:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 8px #fff, 0 8px 32px rgba(124, 92, 255, 0.45);
}
.phone-l__qrcode--real:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 6px;
}

.phone-l__qrscan {
  position: absolute;
  left: 14%; right: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 40%, var(--green) 60%, transparent);
  box-shadow: 0 0 14px var(--green);
  animation: qrscan 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes qrscan {
  0%, 100% { top: 16%; opacity: 0.5; }
  50%      { top: 80%; opacity: 1; }
}

.phone-l__qrcorner {
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--green);
  z-index: 2;
}
.phone-l__qrcorner--tl { top: 12%; left: 12%; border-right: 0; border-bottom: 0; border-top-left-radius: 6px; }
.phone-l__qrcorner--tr { top: 12%; right: 12%; border-left: 0; border-bottom: 0; border-top-right-radius: 6px; }
.phone-l__qrcorner--bl { bottom: 12%; left: 12%; border-right: 0; border-top: 0; border-bottom-left-radius: 6px; }
.phone-l__qrcorner--br { bottom: 12%; right: 12%; border-left: 0; border-top: 0; border-bottom-right-radius: 6px; }

/* --- Step 02: Cell grid --- */
.phone-l__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 4px 2px;
  align-content: center;
}
.pcell {
  background: rgba(34, 211, 163, 0.08);
  border: 1px solid rgba(34, 211, 163, 0.3);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  position: relative;
}
.pcell--busy {
  background: rgba(239, 79, 94, 0.08);
  border-color: rgba(239, 79, 94, 0.3);
  color: var(--red);
}
.pcell--off {
  background: rgba(255,255,255,0.02);
  border-color: var(--border);
  color: var(--fg-faint);
}
.pcell--sel {
  background: rgba(124, 92, 255, 0.2);
  border-color: var(--purple);
  color: var(--purple-soft);
  animation: pcellPulse 2.2s ease-in-out infinite;
}
@keyframes pcellPulse {
  0%, 100% {
    box-shadow: 0 0 14px rgba(124, 92, 255, 0.45),
                inset 0 0 16px rgba(124, 92, 255, 0.18);
  }
  50% {
    box-shadow: 0 0 24px rgba(124, 92, 255, 0.75),
                inset 0 0 24px rgba(124, 92, 255, 0.3);
  }
}

/* --- Step 03: Pay --- */
.phone-l__pay {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.phone-l__paytot {
  font-size: 10px;
  color: var(--fg-dim);
  margin: 0;
  text-align: center;
  letter-spacing: 0.1em;
}
.phone-l__payamt {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  text-align: center;
  line-height: 1;
}
.phone-l__paysub {
  text-align: center;
  font-size: 10px;
  color: var(--fg-muted);
  margin: 0 0 8px;
}
.phone-l__paymethods {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.paym {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--fg);
}
.paym--apple {
  background: #fff;
  color: #000;
  border-color: #fff;
  position: relative;
}
.paym--apple::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 13px;
  background: #000;
  -webkit-mask: radial-gradient(circle at 50% 80%, transparent 35%, #000 36%) center / cover no-repeat;
  mask: radial-gradient(circle at 50% 80%, transparent 35%, #000 36%) center / cover no-repeat;
  margin-right: 4px;
  vertical-align: -2px;
}
.phone-l__paybtn {
  background: var(--purple);
  color: var(--fg);
  border: 0;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(124, 92, 255, 0.45);
  animation: payBtnGlow 2.4s ease-in-out infinite;
}
@keyframes payBtnGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(124, 92, 255, 0.45); }
  50%      { box-shadow: 0 6px 24px rgba(124, 92, 255, 0.7); }
}
.phone-l__paypwr {
  text-align: center;
  font-size: 9px;
  color: var(--fg-dim);
  margin: 6px 0 0;
}

/* --- Step 04: FaceID open --- */
.phone-l__open {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 6px 14px;
}
.phone-l__face {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.12);
  border: 2px dashed rgba(124, 92, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin: 8px 0 2px;
  animation: faceScan 3s ease-in-out infinite, faceRotate 14s linear infinite;
}
@keyframes faceScan {
  0%, 100% { box-shadow: 0 0 16px rgba(124, 92, 255, 0.35); }
  50%      { box-shadow: 0 0 36px rgba(124, 92, 255, 0.7); }
}
@keyframes faceRotate {
  from { border-style: dashed; transform: rotate(0); }
  to   { border-style: dashed; transform: rotate(360deg); }
}
.phone-l__opent {
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0 0;
}
.phone-l__opens {
  font-size: 10px;
  color: var(--fg-dim);
  margin: 0;
}
.phone-l__progress {
  width: 80%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 6px;
}
.phone-l__progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--green));
  border-radius: 100px;
  animation: openProgress 2.6s ease-in-out infinite;
  width: 0;
}
@keyframes openProgress {
  0%   { width: 0%; }
  55%  { width: 100%; }
  100% { width: 100%; }
}
.phone-l__okmsg {
  background: rgba(34, 211, 163, 0.12);
  color: var(--green);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 10px;
  margin: 4px 0 0;
  opacity: 0;
  animation: okShow 2.6s ease-in-out infinite;
  border: 1px solid rgba(34, 211, 163, 0.25);
}
@keyframes okShow {
  0%, 50%   { opacity: 0; transform: translateY(4px); }
  60%, 100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TIMELINE responsive
   ============================================================ */
@media (max-width: 980px) {
  .tline {
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 48px 0;
  }
  .tline__visual {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding-left: 72px;
  }
  .timeline__line { left: 35px; }
}

@media (max-width: 640px) {
  .tline {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 40px 0;
  }
  .timeline__line { left: 23px; top: 28px; bottom: 28px; }
  .tline__num { font-size: 13px; margin-bottom: 10px; }
  .tline__dot { width: 12px; height: 12px; }
  .tline__visual { padding-left: 0; }
  .phone-l { max-width: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  .tline__body, .tline__visual {
    opacity: 1 !important;
    transform: none !important;
  }
  .phone-l__qrscan, .pcell--sel, .phone-l__paybtn,
  .phone-l__face, .phone-l__progress i, .phone-l__okmsg,
  .tline__dot { animation: none !important; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(17, 19, 28, 0.94);
  border: 1px solid rgba(124, 92, 255, 0.28);
  border-radius: 14px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(124, 92, 255, 0.08),
    0 0 28px rgba(124, 92, 255, 0.18);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 22px;
}

.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__t {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
}
.cookie-banner__d {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner__d a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: rgba(124, 92, 255, 0.45);
  text-underline-offset: 3px;
  margin-left: 4px;
}
.cookie-banner__d a:hover { text-decoration-color: var(--purple); }

.cookie-banner__btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-accent);
}
.cookie-btn--ghost:hover { background: rgba(124, 92, 255, 0.1); }
.cookie-btn--primary {
  background: var(--purple);
  color: var(--fg);
}
.cookie-btn--primary:hover { background: #8b6dff; }

@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px;
    gap: 14px;
  }
  .cookie-banner__btns { width: 100%; }
  .cookie-btn { flex: 1; padding: 11px 12px; }
}

/* On pitch.html: lift FAB up to avoid overlap with cookie banner if both are visible */
body:has(.cookie-banner.is-visible) .fab-home {
  bottom: calc(28px + 100px);
}

@media (max-width: 720px) {
  body:has(.cookie-banner.is-visible) .fab-home {
    bottom: calc(16px + 160px);
  }
}

/* ============================================================
   LEGAL PAGES (privacy.html, terms.html)
   ============================================================ */
.legal-page { background: var(--bg); }

.legal {
  padding: 64px 0 120px;
  max-width: 780px;
}

.legal__head {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 14px;
}
.legal h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 16px;
}
.legal__upd {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-dim);
  margin: 0;
}

.legal h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 56px 0 16px;
  letter-spacing: -0.01em;
  scroll-margin-top: 96px;
  position: relative;
  padding-left: 16px;
}
.legal h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--purple);
  border-radius: 2px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--fg);
}
.legal p {
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0 0 14px;
  font-size: 15px;
}
.legal ul,
.legal ol {
  color: var(--fg-muted);
  padding-left: 22px;
  margin: 0 0 18px;
  line-height: 1.7;
  list-style: disc;
}
.legal li {
  margin-bottom: 6px;
  font-size: 15px;
}
.legal strong { color: var(--fg); font-weight: 600; }
.legal code {
  background: rgba(124, 92, 255, 0.1);
  color: var(--purple-soft);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.legal a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: rgba(124, 92, 255, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.legal a:hover { text-decoration-color: var(--purple); }

/* Placeholder markers for missing legal data */
.legal__placeholder {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  border: 1px dashed rgba(245, 158, 11, 0.45);
  padding: 1px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0;
}

/* Table of contents */
.legal__toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 36px 0 48px;
}
.legal__toc h4 {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 14px;
  font-weight: 600;
}
.legal__toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
  columns: 2;
  column-gap: 28px;
}
.legal__toc li {
  counter-increment: toc;
  position: relative;
  padding-left: 30px;
  margin: 0 0 8px;
  break-inside: avoid;
  font-size: 13.5px;
  line-height: 1.4;
}
.legal__toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--purple);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}
.legal__toc a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.legal__toc a:hover { color: var(--fg); }

/* Tables in legal (privacy "Finalità" table uses inline styles) */
.legal table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
}
.legal table td { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* Footer separator dot */
.footer__sep {
  color: var(--fg-faint);
  margin: 0 4px;
  display: inline-block;
}

@media (max-width: 720px) {
  .legal { padding: 48px 0 80px; }
  .legal__toc ol { columns: 1; }
  .legal__head { margin-bottom: 36px; padding-bottom: 24px; }
  .legal h2 { margin: 40px 0 14px; }
  .footer__sep { display: none; }
}

/* ============================================================
   SHOWCUBE — isometric base pose + 3D cell door (Item B)
   ============================================================ */
.showcube {
  transform: rotateY(-10deg) rotateX(6deg);
}
.showcube__grid {
  transform-style: preserve-3d;
  transform: translateZ(20px);
}
.scell {
  transform-style: preserve-3d;
}
.scell__door {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.35) 0%, rgba(74, 63, 160, 0.5) 100%),
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08), transparent 55%);
  border: 1px solid rgba(124, 92, 255, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 4px 14px rgba(0, 0, 0, 0.45);
  transform-origin: left center;
  transform: rotateY(0);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.scell__door::after {
  content: '';
  position: absolute;
  right: 14%;
  top: 50%;
  width: 3px;
  height: 28%;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--purple), #4a3fff);
  box-shadow: 0 0 6px rgba(124, 92, 255, 0.6);
  transform: translateY(-50%);
}
.scell--active .scell__door {
  opacity: 1;
  animation: scellDoorOpen 2.6s cubic-bezier(0.55, 0.05, 0.2, 1) forwards;
}
@keyframes scellDoorOpen {
  0%   { transform: rotateY(0); opacity: 1; }
  18%  { transform: rotateY(0); opacity: 1; }
  55%  { transform: rotateY(-115deg); opacity: 0.85; }
  100% { transform: rotateY(-115deg); opacity: 0; }
}

/* ============================================================
   LOCKER3D — full 3D locker with hinged door (Item A, Step 04)
   ============================================================ */
.locker3d {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.locker3d__stage {
  width: 100%;
  aspect-ratio: 240 / 360;
  perspective: 1400px;
  perspective-origin: 65% 50%;
  position: relative;
}
.locker3d__frame {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #1a1530 0%, #0e0a22 100%);
  border: 1px solid rgba(124, 92, 255, 0.28);
  box-shadow:
    0 30px 80px -20px rgba(124, 92, 255, 0.45),
    0 0 0 1px rgba(124, 92, 255, 0.1) inset;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(4deg);
}
.locker3d__interior {
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #07051a 0%, #100b26 100%);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 16px 26px;
  transform: translateZ(-1px);
}
.locker3d__lightcone {
  position: absolute;
  top: -8%;
  left: 50%;
  width: 95%;
  height: 55%;
  background: radial-gradient(ellipse at top, rgba(255, 210, 130, 0.55) 0%, transparent 65%);
  transform: translateX(-50%);
  opacity: 0;
  animation: lockerLight 6s ease-in-out infinite;
  pointer-events: none;
}
.locker3d__shelf {
  position: absolute;
  top: 96px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.05), rgba(124, 92, 255, 0.45), rgba(124, 92, 255, 0.05));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.locker3d__jacket {
  width: 62px;
  height: 86px;
  margin-top: 12px;
  filter: drop-shadow(0 4px 10px rgba(124, 92, 255, 0.3));
}
.locker3d__bag {
  width: 50px;
  height: 46px;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 10px rgba(34, 211, 163, 0.25));
}
.locker3d__door {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #2a2148 0%, #1a1530 50%, #2a2148 100%);
  border: 1px solid rgba(124, 92, 255, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 -40px 80px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.5);
  transform-origin: left center;
  transform: translateZ(0.5px) rotateY(0);
  animation: lockerDoor 7s cubic-bezier(0.55, 0.05, 0.2, 1) infinite;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 28px 22px;
}
.locker3d__door::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
}
.locker3d__hinges {
  position: absolute;
  left: 5px;
  top: 16%;
  bottom: 16%;
  width: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.locker3d__hinges span {
  width: 6px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #4a4060, #2a2240);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.locker3d__display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  z-index: 1;
}
.locker3d__num {
  font-size: 30px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.05em;
}
.locker3d__statusbar {
  display: inline-grid;
  grid-template-columns: auto auto;
  column-gap: 6px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(34, 211, 163, 0.12);
  border: 1px solid rgba(34, 211, 163, 0.35);
  font-size: 10px;
  animation: statusbarColor 7s linear infinite;
}
.locker3d__led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  grid-column: 1;
  grid-row: 1;
  animation: lockerLed 7s linear infinite;
}
.locker3d__statetext {
  grid-column: 2;
  grid-row: 1;
}
.locker3d__statetext--scan {
  color: #ffd24a;
  animation: stateScan 7s linear infinite;
}
.locker3d__statetext--open {
  animation: stateOpen 7s linear infinite;
}
.locker3d__biometric {
  position: relative;
  margin-top: 22px;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: biometricFade 7s linear infinite;
}
.locker3d__scanring {
  position: absolute;
  inset: 6px;
  border: 1.5px solid rgba(34, 211, 163, 0.75);
  border-radius: 50%;
  pointer-events: none;
  animation: scanRing 1.6s ease-out infinite;
}
.locker3d__scanring--2 {
  animation-delay: -0.8s;
}
.locker3d__bicon {
  position: absolute;
  width: 40px;
  height: 40px;
  color: rgba(255, 210, 74, 0.95);
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(255, 210, 74, 0.5));
}
.locker3d__bicon--face   { animation: biometricFace 7s ease-in-out infinite; }
.locker3d__bicon--finger { animation: biometricFinger 7s ease-in-out infinite; }
.locker3d__bicon--check {
  color: var(--green);
  filter: drop-shadow(0 0 8px rgba(34, 211, 163, 0.7));
  animation: biometricCheck 7s ease-out infinite;
}
.locker3d__scanlabel {
  position: absolute;
  bottom: -20px;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: rgba(255, 210, 74, 0.85);
  animation: scanlabel 7s linear infinite;
  white-space: nowrap;
}
.locker3d__handle {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 5px;
  height: 44px;
  border-radius: 3px;
  background: linear-gradient(180deg, #7c5cff, #4a3fff);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
}
.locker3d__cap {
  font-size: 11px;
  color: var(--fg-dim);
  text-align: center;
  margin: 0;
}
@keyframes lockerDoor {
  0%, 26%   { transform: translateZ(0.5px) rotateY(0); }
  44%, 74%  { transform: translateZ(0.5px) rotateY(-108deg); }
  90%, 100% { transform: translateZ(0.5px) rotateY(0); }
}
@keyframes lockerLight {
  0%, 26%   { opacity: 0; }
  44%, 74%  { opacity: 1; }
  90%, 100% { opacity: 0; }
}
@keyframes lockerLed {
  0%   { background: #ffd24a; box-shadow: 0 0 8px #ffd24a; opacity: 1; }
  7%   { opacity: 0.35; }
  14%  { background: #ffd24a; box-shadow: 0 0 8px #ffd24a; opacity: 1; }
  21%  { opacity: 0.35; }
  24%  { background: #ffd24a; box-shadow: 0 0 8px #ffd24a; opacity: 1; }
  28%, 100% { background: var(--green); box-shadow: 0 0 6px var(--green); opacity: 1; }
}
@keyframes statusbarColor {
  0%, 22%   {
    background: rgba(255, 210, 74, 0.12);
    border-color: rgba(255, 210, 74, 0.4);
  }
  28%, 100% {
    background: rgba(34, 211, 163, 0.12);
    border-color: rgba(34, 211, 163, 0.35);
  }
}
@keyframes stateScan {
  0%, 22%   { opacity: 1; }
  26%, 100% { opacity: 0; }
}
@keyframes stateOpen {
  0%, 22%   { opacity: 0; }
  28%, 100% { opacity: 1; }
}
@keyframes scanRing {
  0%   { transform: scale(0.45); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes biometricFade {
  0%, 22%   { opacity: 1; }
  26%, 100% { opacity: 0; }
}
@keyframes biometricFace {
  0%, 1%    { opacity: 0; transform: scale(0.82); }
  4%, 9%    { opacity: 1; transform: scale(1); }
  12%, 100% { opacity: 0; transform: scale(0.82); }
}
@keyframes biometricFinger {
  0%, 12%   { opacity: 0; transform: scale(0.82); }
  15%, 19%  { opacity: 1; transform: scale(1); }
  22%, 100% { opacity: 0; transform: scale(0.82); }
}
@keyframes biometricCheck {
  0%, 20%   { opacity: 0; transform: scale(0.4); }
  23%, 26%  { opacity: 1; transform: scale(1.15); }
  30%, 100% { opacity: 0; transform: scale(0.4); }
}
@keyframes scanlabel {
  0%, 6%    { opacity: 0; }
  9%, 21%   { opacity: 0.85; }
  25%, 100% { opacity: 0; }
}

@media (max-width: 980px) {
  .locker3d { max-width: 240px; }
}

/* Reduced motion overrides for items A + B */
@media (prefers-reduced-motion: reduce) {
  .locker3d__door {
    animation: none;
    transform: translateZ(0.5px) rotateY(-108deg);
  }
  .locker3d__lightcone { animation: none; opacity: 1; }
  .locker3d__led { animation: none; background: var(--green); box-shadow: 0 0 6px var(--green); }
  .locker3d__statusbar { animation: none; }
  .locker3d__statetext--scan { display: none; }
  .locker3d__statetext--open { opacity: 1; }
  .locker3d__biometric { display: none; }
  .scell--active .scell__door {
    animation: none;
    transform: rotateY(-115deg);
    opacity: 0;
  }
  .showcube { transform: rotateY(-10deg) rotateX(6deg); }
}

/* ============================================================
   SPEED + ZERO SETUP SECTION
   ============================================================ */
.speed {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.speed__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.speed__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.speed__glow--a {
  top: 12%;
  left: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.35), transparent 70%);
}
.speed__glow--b {
  bottom: 6%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(34, 211, 163, 0.28), transparent 70%);
}

.speed__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: stretch;
  margin-top: 56px;
}

/* ---- Stopwatch ---- */
.speed__timer {
  position: relative;
  padding: 36px 32px 28px;
  border-radius: 22px;
  background:
    radial-gradient(140% 110% at 20% 0%, rgba(124, 92, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(20, 23, 36, 0.85), rgba(14, 16, 28, 0.92));
  border: 1px solid var(--border-accent);
  box-shadow:
    0 30px 80px -20px rgba(124, 92, 255, 0.35),
    inset 0 0 0 1px rgba(124, 92, 255, 0.05);
}
.speed__timerhd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.speed__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: speedPulse 1.8s ease-in-out infinite;
}
@keyframes speedPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

.speed__timerdisplay {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 28px;
  position: relative;
}
.speed__timerval {
  font-family: var(--font-mono);
  font-size: clamp(72px, 11vw, 132px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 0%, #a995ff 70%, #7c5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 60px rgba(124, 92, 255, 0.3);
  transition: filter 0.4s ease;
}
.speed__timerunit {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--purple-soft);
  line-height: 1;
}
.speed__timercheck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 211, 163, 0.15);
  border: 1.5px solid var(--green);
  color: var(--green);
  margin-left: auto;
  align-self: center;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 1.6, 0.4, 1);
  box-shadow: 0 0 24px rgba(34, 211, 163, 0.45);
}
.speed__timercheck svg { width: 22px; height: 22px; }
.speed.is-active .speed__timercheck {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.85s;
}
.speed.is-active .speed__timerval {
  animation: speedValGlow 1.2s ease-out 1.85s both;
}
@keyframes speedValGlow {
  0%   { filter: drop-shadow(0 0 0 rgba(34, 211, 163, 0)); }
  35%  { filter: drop-shadow(0 0 24px rgba(34, 211, 163, 0.6)); }
  100% { filter: drop-shadow(0 0 6px rgba(34, 211, 163, 0.2)); }
}

/* Progress bar with ticks */
.speed__timerbar { margin-bottom: 24px; }
.speed__timertrack {
  position: relative;
  height: 6px;
  background: rgba(124, 92, 255, 0.1);
  border-radius: 3px;
  overflow: visible;
}
.speed__timerprogress {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--green) 100%);
  box-shadow: 0 0 18px rgba(124, 92, 255, 0.5);
}
.speed.is-active .speed__timerprogress {
  animation: speedProg 1.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}
@keyframes speedProg {
  0%   { width: 0; }
  100% { width: 100%; }
}

.speed__timertick {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speed__tickdot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.25);
  border: 2px solid rgba(124, 92, 255, 0.4);
  transition: transform 0.2s ease;
}
.speed__tickmeta {
  position: absolute;
  top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.speed__tickmeta b { font-size: 11px; color: var(--fg); }
.speed__tickmeta i { font-size: 10px; font-style: normal; color: var(--fg-dim); letter-spacing: 0.06em; }

.speed.is-active .speed__timertick--1 .speed__tickdot {
  animation: tickFire 0.4s ease-out 0.3s both;
}
.speed.is-active .speed__timertick--1 .speed__tickmeta {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.4s;
}
.speed.is-active .speed__timertick--2 .speed__tickdot {
  animation: tickFire 0.4s ease-out 1.2s both;
}
.speed.is-active .speed__timertick--2 .speed__tickmeta {
  opacity: 1; transform: translateY(0);
  transition-delay: 1.3s;
}
.speed.is-active .speed__timertick--3 .speed__tickdot {
  animation: tickFireOk 0.5s ease-out 1.8s both;
}
.speed.is-active .speed__timertick--3 .speed__tickmeta {
  opacity: 1; transform: translateY(0);
  transition-delay: 1.9s;
}
@keyframes tickFire {
  0%   { transform: scale(1); background: rgba(124, 92, 255, 0.25); border-color: rgba(124, 92, 255, 0.4); box-shadow: 0 0 0 rgba(124, 92, 255, 0); }
  60%  { transform: scale(1.6); background: var(--purple); border-color: var(--purple); box-shadow: 0 0 18px rgba(124, 92, 255, 0.8); }
  100% { transform: scale(1.15); background: var(--purple); border-color: var(--purple); box-shadow: 0 0 10px rgba(124, 92, 255, 0.5); }
}
@keyframes tickFireOk {
  0%   { transform: scale(1); background: rgba(124, 92, 255, 0.25); border-color: rgba(124, 92, 255, 0.4); }
  60%  { transform: scale(1.8); background: var(--green); border-color: var(--green); box-shadow: 0 0 24px rgba(34, 211, 163, 0.8); }
  100% { transform: scale(1.25); background: var(--green); border-color: var(--green); box-shadow: 0 0 14px rgba(34, 211, 163, 0.55); }
}

.speed__timerfoot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
}
.speed__livedot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: speedPulse 1.6s ease-in-out infinite;
}

/* ---- Pillars ---- */
.speed__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.speedpill {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(20, 23, 36, 0.6);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
}
.speed.is-active .speedpill {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.speed.is-active .speedpill:nth-child(1) { transition-delay: 0.4s; }
.speed.is-active .speedpill:nth-child(2) { transition-delay: 0.7s; }
.speed.is-active .speedpill:nth-child(3) { transition-delay: 1.0s; }
.speedpill:hover {
  transform: translateX(-2px);
  border-color: var(--border-accent);
  background: rgba(20, 23, 36, 0.85);
}
.speedpill__ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.25);
  color: var(--purple-soft);
  flex-shrink: 0;
}
.speedpill__ic svg { width: 26px; height: 26px; }
.speedpill:nth-child(1) .speedpill__ic { color: #ffd24a; background: rgba(255, 210, 74, 0.1); border-color: rgba(255, 210, 74, 0.3); }
.speedpill:nth-child(3) .speedpill__ic { color: var(--green); background: rgba(34, 211, 163, 0.1); border-color: rgba(34, 211, 163, 0.3); }
.speedpill__body h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
}
.speedpill__body p {
  margin: 0;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ---- Comparison bars ---- */
.speed__compare {
  margin-top: 72px;
  padding: 40px 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 23, 36, 0.5), rgba(14, 16, 28, 0.75));
  border: 1px solid var(--border);
}
.speed__compareh {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.speedbar { margin-bottom: 24px; }
.speedbar:last-child { margin-bottom: 0; }
.speedbar__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
}
.speedbar__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.speedbar__nametxt {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.speedbar__hint {
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}
.speedbar__visual {
  display: flex;
  align-items: center;
  gap: 16px;
}
.speedbar__track {
  flex: 1;
  height: 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.speedbar__fill {
  height: 100%;
  width: 0;
  border-radius: 7px;
  transform-origin: left center;
}
.speed.is-active .speedbar__fill {
  animation: speedbarFill var(--dur, 1s) cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0s) forwards;
}
@keyframes speedbarFill {
  0%   { width: 0; }
  100% { width: var(--w); }
}
.speedbar--bad .speedbar__fill {
  background: linear-gradient(90deg, rgba(255, 90, 90, 0.5) 0%, rgba(255, 120, 60, 0.85) 100%);
  box-shadow: 0 0 14px rgba(255, 90, 90, 0.35);
}
.speedbar--mid .speedbar__fill {
  background: linear-gradient(90deg, var(--purple), #a995ff);
  box-shadow: 0 0 14px rgba(124, 92, 255, 0.5);
}
.speedbar__fill--zero {
  width: 0 !important;
  animation: none !important;
}
.speedbar--mid .speedbar__track::after {
  content: '0';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: rgba(167, 153, 255, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}
.speed.is-active .speedbar--mid .speedbar__track::after { opacity: 1; }
.speedbar--good .speedbar__fill {
  background: linear-gradient(90deg, var(--green), #5fffc6);
  box-shadow: 0 0 18px rgba(34, 211, 163, 0.65);
  min-width: 8px;
}
.speedbar__time {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  min-width: 70px;
  text-align: right;
}
.speedbar--bad .speedbar__time { color: rgba(255, 130, 100, 0.95); }
.speedbar--mid .speedbar__time { color: var(--purple-soft); }
.speedbar--good .speedbar__time { color: var(--green); }

/* ---- Compatibility chips ---- */
.speed__compat {
  margin-top: 48px;
  text-align: center;
}
.speed__compatlabel {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  margin: 0 0 18px;
}
.speed__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.speedchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(20, 23, 36, 0.6);
  border: 1px solid var(--border-accent);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.speedchip:hover {
  transform: translateY(-2px);
  background: rgba(124, 92, 255, 0.1);
  border-color: var(--purple-soft);
}
.speedchip__ic {
  width: 18px;
  height: 18px;
  color: var(--purple-soft);
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .speed__grid { grid-template-columns: 1fr; gap: 36px; }
  .speed__compare { padding: 28px 20px; }
  .speedbar__row { grid-template-columns: 1fr; gap: 10px; }
  .speedbar__visual { gap: 12px; }
  .speedbar__time { min-width: auto; }
  .speed__timer { padding: 28px 22px 22px; }
  .speed__timerfoot { margin-top: 44px; }
}
@media (max-width: 640px) {
  .speed__chips { gap: 8px; }
  .speedchip { padding: 7px 12px; font-size: 12px; }
  .speed__tickmeta b { font-size: 10px; }
  .speed__tickmeta i { font-size: 9px; }
  .speed__timercheck { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .speed__pulse, .speed__livedot { animation: none; }
  .speed.is-active .speed__timerprogress { animation: none; width: 100%; }
  .speed.is-active .speedpill {
    transition: none !important;
    opacity: 1; transform: none;
  }
  .speed.is-active .speed__timercheck {
    transition: none !important;
    opacity: 1; transform: scale(1);
  }
  .speed.is-active .speed__timerval { animation: none; }
  .speed.is-active .speed__timertick .speed__tickdot {
    animation: none;
    background: var(--purple);
    border-color: var(--purple);
  }
  .speed.is-active .speed__timertick--3 .speed__tickdot {
    background: var(--green);
    border-color: var(--green);
  }
  .speed.is-active .speed__timertick .speed__tickmeta {
    transition: none !important;
    opacity: 1; transform: none;
  }
  .speed.is-active .speedbar__fill {
    animation: none;
    width: var(--w);
  }
  .speedbar__fill--zero { width: 0 !important; }
}

/* ============================================================
   PROBLEMA — Analog reveal section
   ============================================================ */
.analog {
  position: relative;
  padding: 120px 0 110px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.analog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(124,92,255,0.10), transparent 60%),
    radial-gradient(700px 400px at 90% 100%, rgba(239,79,94,0.08), transparent 60%);
  pointer-events: none;
}
.analog .container { position: relative; }

.analog__head { max-width: 760px; margin: 0 0 48px; }
.analog__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple-soft);
  margin: 0 0 18px;
}
.analog__eyebrowdash {
  width: 28px; height: 1px; background: var(--purple-soft);
}
.analog__h {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
}

.analog__list {
  list-style: none; padding: 0; margin: 0 0 56px;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 820px;
}
.analog__row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.analog.is-active .analog__row {
  opacity: 1; transform: none;
  transition-delay: calc(var(--i, 0) * 220ms);
}
.analog__check, .analog__cross {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.analog__check {
  background: rgba(34,211,163,0.14);
  color: var(--green);
}
.analog__check svg { width: 22px; height: 22px; }
.analog__check svg path {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  transition: stroke-dashoffset .5s ease;
}
.analog.is-active .analog__row .analog__check svg path {
  stroke-dashoffset: 0;
  transition-delay: calc(var(--i, 0) * 220ms + 240ms);
}
.analog__what {
  font-size: 20px; font-weight: 600;
  color: var(--fg);
}
.analog__tag {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-muted);
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

.analog__row--bad {
  background: rgba(239,79,94,0.06);
  border-color: rgba(239,79,94,0.28);
  transform: translateY(20px) scale(.96);
}
.analog.is-active .analog__row--bad {
  transition-delay: calc(4 * 220ms + 220ms);
  transform: none;
  animation: analogShake .55s ease calc(4 * 220ms + 820ms) 1;
  box-shadow: 0 0 0 1px rgba(239,79,94,0.25), 0 10px 40px -10px rgba(239,79,94,0.35);
}
.analog__cross {
  background: rgba(239,79,94,0.16);
  color: var(--red);
}
.analog__cross svg { width: 22px; height: 22px; }
.analog__row--bad .analog__what { color: var(--red); }
.analog__tag--bad {
  color: var(--red);
  border-color: rgba(239,79,94,0.4);
  background: rgba(239,79,94,0.10);
  letter-spacing: 0.18em;
  font-weight: 700;
}
.analog.is-active .analog__tag--bad {
  animation: analogBlink 1.4s ease-in-out calc(4 * 220ms + 1200ms) infinite;
}

@keyframes analogShake {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-6px); }
  40%  { transform: translateX(5px); }
  60%  { transform: translateX(-3px); }
  80%  { transform: translateX(2px); }
  100% { transform: translateX(0); }
}
@keyframes analogBlink {
  0%, 60%, 100% { opacity: 1; }
  30%           { opacity: 0.35; }
}

.analog__slam {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--fg);
}
.analog__slam span {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.analog.is-active .analog__slam span:nth-child(1) {
  transition-delay: calc(4 * 220ms + 1300ms);
  opacity: 1; transform: none;
}
.analog.is-active .analog__slam .analog__slamhi {
  transition-delay: calc(4 * 220ms + 1600ms);
  opacity: 1; transform: none;
}
.analog__slamhi {
  color: var(--red);
  text-shadow: 0 0 30px rgba(239,79,94,0.45);
}

.analog__punch {
  font-size: clamp(18px, 1.9vw, 22px);
  color: var(--fg-muted);
  max-width: 720px;
  margin: 0 0 28px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.analog.is-active .analog__punch {
  transition-delay: calc(4 * 220ms + 1900ms);
  opacity: 1; transform: none;
}
.analog__punch b,
.analog__punchhi { color: var(--fg); font-weight: 700; }

.analog__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  color: var(--purple-soft);
  text-decoration: none;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease, background .25s, border-color .25s, color .25s;
}
.analog.is-active .analog__cta {
  transition-delay: calc(4 * 220ms + 2150ms);
  opacity: 1; transform: none;
}
.analog__cta:hover {
  background: rgba(124,92,255,0.10);
  border-color: var(--purple-soft);
  color: var(--fg);
}

@media (max-width: 720px) {
  .analog { padding: 80px 0 70px; }
  .analog__row {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    padding: 14px 16px;
  }
  .analog__check, .analog__cross { width: 32px; height: 32px; }
  .analog__check svg, .analog__cross svg { width: 18px; height: 18px; }
  .analog__what { font-size: 17px; }
  .analog__tag { font-size: 10px; padding: 4px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .analog__row,
  .analog__row--bad,
  .analog__slam span,
  .analog__punch,
  .analog__cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .analog__check svg path {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
  .analog.is-active .analog__tag--bad { animation: none !important; }
}

/* ============================================================
   CONTACT FORM — pannello "console", in stile brand
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact > .container { position: relative; z-index: 1; }

/* glow ambientali del brand dietro il pannello */
.contact::before,
.contact::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
}
.contact::before {
  top: -140px; left: -90px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.18), transparent 70%);
}
.contact::after {
  bottom: -180px; right: -110px;
  background: radial-gradient(circle, rgba(34, 211, 163, 0.10), transparent 70%);
}

/* il form è un pannello console: superficie scura, bordo accent, glow */
.contactform {
  position: relative;
  max-width: 720px;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px clamp(20px, 4vw, 44px);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(124, 92, 255, 0.05), transparent 55%),
    var(--bg-card);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 30px 80px -42px rgba(124, 92, 255, 0.45);
  overflow: hidden;
}
/* hairline in alto: viola → verde, i due colori del brand */
.contactform::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--green), transparent);
  opacity: 0.7;
}

.contactform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 9px; }

/* micro-label mono, come le eyebrow del resto del sito */
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.field__req { color: var(--purple-soft); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(124, 92, 255, 0.35); }

.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }

.field input::placeholder,
.field textarea::placeholder { color: var(--fg-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background-color: var(--bg-card-2);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.16);
}

/* select: caret custom (quello nativo è rimosso) */
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%237c5cff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field select option { background: var(--bg-card); color: var(--fg); }

/* consenso GDPR: riga distinta */
.field__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: var(--bg-alt);
}
.field__consent input {
  margin-top: 1px;
  accent-color: var(--purple);
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  cursor: pointer;
}
.field__consent a {
  color: var(--purple-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contactform__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.contactform__foot .btn--primary {
  box-shadow: 0 12px 32px -12px rgba(124, 92, 255, 0.6);
}
.contactform__note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-dim);
  font-size: 12px;
}
/* puntino verde "pronto", come gli indicatori di stato del sito */
.contactform__note::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34, 211, 163, 0.7);
  flex: 0 0 auto;
}

.contactform__status {
  font-size: 14px;
  padding: 13px 15px;
  border-radius: 10px;
  margin: 0;
  line-height: 1.5;
}
.contactform__status.is-ok {
  background: rgba(34, 211, 163, 0.08);
  border: 1px solid rgba(34, 211, 163, 0.28);
  color: var(--green-soft);
}
.contactform__status.is-err {
  background: rgba(239, 79, 94, 0.08);
  border: 1px solid rgba(239, 79, 94, 0.28);
  color: #ff8a93;
}

/* honeypot — fuori schermo, invisibile agli utenti */
.contactform__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .contactform { padding: 26px 18px; }
  .contactform__row { grid-template-columns: 1fr; }
  .contactform__foot .btn--primary { width: 100%; justify-content: center; }
}

/* ============================================================
   FAQ — discreta (in fondo, a fisarmonica), forte per il search
   ============================================================ */
.faq {
  padding: 56px 0 72px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.faq__inner { max-width: 760px; }

.faq__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 6px;
}
.faq__h {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--fg-muted);
}

.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-of-type { border-bottom: 1px solid var(--border); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 16px 36px 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  transition: color 0.15s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--purple);
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item summary:hover { color: var(--purple-soft); }

.faq__a { padding: 0 0 18px; }
.faq__a p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

