/* ============================================================
   TOUR 26 — Generica · Landing
   Alternanza sezioni scure (gradienti rosso/blu) e chiare
   ============================================================ */

/* Font brand: Neutra Titling Display — aggiungi i file in Asset/ (vedi note) */
@font-face {
  font-family: "Neutra Titling Display";
  src: url("Asset/Neutra%20Display%20Titling.otf") format("opentype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
.font-neutra {
  font-family: "Neutra Titling Display", "Inter", sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-block;
  margin-top: 10px;
  padding: 0.08em 0.45em;
  color: #fff;
  background: linear-gradient(110deg, #0002cc 0%, #0003ff 50%, #3d4dff 100%);
  border-radius: 0;
  box-shadow: 0 14px 34px -10px rgba(0, 3, 255, 0.5);
}
@media (max-width: 600px) {
  .font-neutra { font-size: 6.6vw; }
}

:root {
  /* --- Dark base --- */
  --bg:          #08080d;
  --bg-2:        #0c0c14;
  --surface:     #14141f;
  --surface-2:   #1b1b29;
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text:        #f4f4f7;
  --muted:       #a3a3b4;
  --muted-2:     #6f6f82;

  /* --- Light theme --- */
  --light-bg:      #f6f6f8;
  --light-bg-2:    #eeeef2;
  --light-surface: #ffffff;
  --light-line:    rgba(15, 16, 28, 0.10);
  --light-line-2:  rgba(15, 16, 28, 0.18);
  --light-text:    #111119;
  --light-muted:   #565664;

  /* --- Accent: rosso → viola → blu --- */
  --red:    #ff4d6d;
  --violet: #8b5cf6;
  --blue:   #3b82f6;
  --grad-rb:      linear-gradient(110deg, #0002cc 0%, #0003ff 50%, #3d4dff 100%);
  --grad-rb-soft: linear-gradient(110deg, #3333ff 0%, #6666ff 50%, #9999ff 100%);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1140px;

  --shadow:       0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-light: 0 24px 50px -22px rgba(20, 22, 50, 0.28);
  --ease:         cubic-bezier(0.34, 0.9, 0.3, 1);
  --ease-soft:    cubic-bezier(0.33, 0, 0.2, 1);
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { line-height: 1.12; font-weight: 600; letter-spacing: -0.02em; }
em { font-family: "Playfair Display", serif; font-style: italic; font-weight: 500; }
::selection { background: #0003ff; color: #fff; }

/* ---------------- Layout ---------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 780px; }
.section { padding: clamp(72px, 11vw, 130px) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  margin-bottom: 18px;
}
.eyebrow__ic { font-size: 0.95rem; line-height: 1; }
.section--light .eyebrow {
  color: var(--light-text);
  border-color: var(--light-line-2);
  background: var(--light-surface);
}
.section__head { max-width: 680px; margin-bottom: 56px; }
.section__title { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }
.muted { color: var(--muted); }

/* ============================================================
   THEME: sezioni SCURE con gradienti rosso/blu marcati
   ============================================================ */
.section--dark {
  color: var(--text);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(58% 80% at 10% 12%, rgba(0, 3, 255, 0.34), transparent 60%),
    radial-gradient(58% 80% at 90% 88%, rgba(0, 3, 255, 0.34), transparent 60%),
    radial-gradient(40% 50% at 55% 45%, rgba(0, 3, 255, 0.18), transparent 70%),
    linear-gradient(180deg, #0a0a13 0%, var(--bg) 100%);
}
/* variante con gradienti specchiati (per varietà tra sezioni vicine) */
.section--dark-alt {
  background:
    radial-gradient(58% 80% at 88% 14%, rgba(0, 3, 255, 0.32), transparent 60%),
    radial-gradient(60% 82% at 8% 86%, rgba(0, 3, 255, 0.36), transparent 60%),
    radial-gradient(40% 50% at 45% 50%, rgba(0, 3, 255, 0.18), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #0a0a13 100%);
}

/* ============================================================
   THEME: sezioni CHIARE
   ============================================================ */
.section--light {
  background: var(--light-bg);
  color: var(--light-text);
  border-block: 1px solid var(--light-line);
}
.section--light .section__title { color: var(--light-text); }
.section--light .section__lead,
.section--light .muted { color: var(--light-muted); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(110deg, #0500ff 0%, #0a64ec 50%, #00a6e2 100%);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(10, 100, 236, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(10, 100, 236, 0.85); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.45); }
.btn--orange {
  background: linear-gradient(120deg, #f9b016 0%, #f97316 100%);
  color: #1a1407;
  box-shadow: 0 14px 32px -10px rgba(249, 115, 22, 0.55);
}
.btn--orange:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -10px rgba(249, 115, 22, 0.7); }
.btn--green {
  background: linear-gradient(120deg, #16d46a, #0fb85f);
  color: #07210f;
  box-shadow: 0 14px 34px -12px rgba(15, 184, 95, 0.7);
}
.btn--green:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(15, 184, 95, 0.85); }
.section-cta { display: flex; justify-content: center; margin-top: 48px; }
.faq__cta { text-align: center; margin-top: 56px; }
.faq__cta h2 { font-size: clamp(1.4rem, 3.4vw, 2.2rem); white-space: nowrap; }
.faq__cta p { color: var(--muted); margin: 16px auto 28px; white-space: nowrap; }
@media (max-width: 720px) {
  .faq__cta h2 { white-space: normal; }
  .faq__cta p { white-space: normal; max-width: 520px; }
}
.btn--link { background: none; color: var(--muted); padding-inline: 4px; }
.btn--link:hover { color: var(--text); }
.btn--block { width: 100%; }
.section--light .btn--link { color: var(--light-muted); }
.section--light .btn--link:hover { color: var(--light-text); }

/* ---------------- Nav ---------------- */
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand img { height: 72px; width: auto; display: block; }
.footer .nav__brand img { height: 60px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-size: 0.92rem; color: rgba(244, 244, 247, 0.88); transition: color 0.25s; }
.nav__links a:hover { color: #fff; }
.nav__cta { padding: 10px 22px; font-size: 0.9rem; }
.nav__cta:hover {
  background: linear-gradient(120deg, rgba(22, 212, 106, 0.45), rgba(15, 184, 95, 0.45));
  border-color: rgba(22, 212, 106, 0.6);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(15, 184, 95, 0.45);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("Asset/Pescara%20Hero.png");
  background-size: cover;
  background-position: center 18%;
  transform: scale(1.15);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,13,0.48) 0%, rgba(8,8,13,0.56) 60%, rgba(8,8,13,0.66) 100%),
    rgba(0, 0, 0, 0.18);
}
.hero__figure {
  position: absolute;
  right: clamp(0px, calc(50% - 660px), 80px);
  bottom: 0;
  height: 90%;
  width: auto;
  max-width: 46%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}
.hero__content {
  position: relative;
  z-index: 2;
  margin-block: auto;
  padding-block: 60px;
}
.hero__title { font-size: clamp(2.6rem, 6.6vw, 5rem); letter-spacing: -0.03em; }
.hero__title em {
  font-family: "Archivo Black", "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: inline-block;
  color: #fff;
  background: linear-gradient(110deg, rgba(0, 2, 204, 0.82) 0%, rgba(0, 3, 255, 0.82) 50%, rgba(61, 77, 255, 0.82) 100%);
  border-radius: 0;
  padding: 0.01em 0.26em;
  box-shadow: 0 14px 34px -10px rgba(0, 3, 255, 0.45);
}
.hero__sub {
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(244,244,247,0.84);
  max-width: 560px;
}
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__sub strong:nth-of-type(1) {
  text-shadow: 0 0 20px rgba(255, 40, 70, 0.9), 0 0 8px rgba(255, 40, 70, 0.7);
}
.hero__sub strong:nth-of-type(2) {
  text-shadow: 0 0 20px rgba(45, 130, 255, 0.95), 0 0 8px rgba(45, 130, 255, 0.7);
}
.hero__actions { margin-top: 38px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__actions .btn--primary {
  background: linear-gradient(120deg, #16d46a, #0fb85f);
  color: #07210f;
  box-shadow: 0 14px 34px -12px rgba(15, 184, 95, 0.7);
}
.hero__actions .btn--primary:hover { box-shadow: 0 20px 44px -12px rgba(15, 184, 95, 0.85); }
.hero__meta { margin-top: 56px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__meta-headline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  font-family: "Archivo Black", "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px -18px rgba(0, 3, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero__meta-city { color: #fff; }
.hero__meta-sep { color: rgba(255, 255, 255, 0.28); }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item strong { font-size: 1.15rem; }
.hero__meta-item span { color: var(--muted); font-size: 0.85rem; }
.hero__divider { width: 1px; height: 38px; background: var(--line-strong); }
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--violet); animation: scroll 1.6s var(--ease) infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* Banner scorrevole in fondo alla hero */
.hero__marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
/* Desktop: fascia e scritte sfumano verso i lati */
@media (min-width: 961px) {
  .hero__marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  }
}
.hero__marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.hero__marquee-group {
  display: flex;
  align-items: center;
  flex: none;
}
.hero__marquee-item {
  font-family: "Archivo Black", "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #16d46a;
  padding: 0 28px;
  white-space: nowrap;
}
.hero__marquee-sep {
  color: rgba(22, 212, 106, 0.65);
  font-size: 0.8rem;
  line-height: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__marquee-track { animation: none; }
}

/* ============================================================
   GRID + CARDS
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Card su sfondo SCURO */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.5s var(--ease-soft), border-color 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
}
/* Card su sfondo CHIARO */
.section--light .card {
  background: var(--light-surface);
  border-color: var(--light-line);
}

/* Card chiare anche su sezioni scure (box chiari su sfondo scuro) */
.section--dark .compare__col,
.section--dark .cart {
  background: var(--light-surface);
  border-color: var(--light-line);
}

/* Feature cards */
.feature { position: relative; overflow: hidden; }
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 100% 0, rgba(0, 3, 255, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
}
.feature:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.feature:hover::before { opacity: 1; }
.section--light .feature:hover { border-color: var(--light-line-2); box-shadow: var(--shadow-light); }
.feature__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(17, 17, 25, 0.06);
  border: 1px solid rgba(17, 17, 25, 0.08);
  margin-bottom: 16px;
}
.feature__num svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--light-text);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 0.97rem; }
.section--light .feature h3 { color: var(--light-text); }
.section--light .feature p { color: var(--light-muted); }
/* Box "Il programma" su sezione scura: sfondo bianco */
.section--dark .feature { background: var(--light-surface); border-color: var(--light-line); }
.section--dark .feature h3 { color: var(--light-text); }
.section--dark .feature p { color: var(--light-muted); }
.section--dark .feature:hover { border-color: var(--light-line-2); box-shadow: var(--shadow); }

/* ============================================================
   TAPPE DEL TOUR (sezione scura) — card cliccabili
   ============================================================ */
.tappa {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(0, 3, 255, 0.30), rgba(0, 3, 255, 0.28)), #11111a;
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft), border-color 0.5s var(--ease-soft);
}
.tappe-grid .tappa:nth-child(2) { background: linear-gradient(155deg, rgba(0, 3, 255, 0.32), rgba(0, 3, 255, 0.26)), #11111a; }
.tappe-grid .tappa:nth-child(3) { background: linear-gradient(155deg, rgba(0, 3, 255, 0.30), rgba(0, 3, 255, 0.26)), #11111a; }
.tappe-grid .tappa:nth-child(4) { background: linear-gradient(155deg, rgba(0, 3, 255, 0.30), rgba(0, 3, 255, 0.24)), #11111a; }
.tappe-grid .tappa:nth-child(5) { background: linear-gradient(155deg, rgba(0, 3, 255, 0.30), rgba(0, 3, 255, 0.26)), #11111a; }
.tappe-grid .tappa:nth-child(6) { background: linear-gradient(155deg, rgba(0, 3, 255, 0.30), rgba(0, 3, 255, 0.28)), #11111a; }
/* 5 tappe: 3 sopra, 2 centrate sotto */
.tappe-grid { grid-template-columns: repeat(6, 1fr); }
.tappe-grid .tappa { grid-column: span 2; }
.tappe-grid .tappa:nth-child(4) { grid-column: 2 / span 2; }
.tappe-grid .tappa:nth-child(5) { grid-column: 4 / span 2; }
.tappa--img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  border: none;
}
.tappa__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 100% at 50% -10%, transparent 35%, rgba(8, 8, 13, 0.78) 100%);
}
.tappa:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.tappa__body {
  position: relative;
  z-index: 2;
  padding: 26px 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tappa__city { font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
.tappa__date { color: rgba(255, 255, 255, 0.92); font-size: 1.12rem; font-weight: 500; }
.tappa__cta {
  align-self: flex-start;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.86rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 15px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tappa:hover .tappa__cta { background: rgba(255, 255, 255, 0.26); border-color: rgba(255, 255, 255, 0.45); }

/* ============================================================
   CHI PUÒ PARTECIPARE (sezione chiara) — confronto
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare__col {
  position: relative;
  padding: 34px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft), border-color 0.5s var(--ease-soft);
}
.compare__col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.compare--yes::before { background: #16a34a; }
.compare--no::before { background: #dc2626; }
.compare .compare__col:hover { transform: translateY(-8px); }
.compare .compare__col:hover::before { transform: scaleX(1); }
.compare .compare--yes:hover { box-shadow: 0 26px 50px -18px rgba(22, 163, 74, 0.5); border-color: rgba(22, 163, 74, 0.32); }
.compare .compare--no:hover { box-shadow: 0 26px 50px -18px rgba(220, 38, 38, 0.5); border-color: rgba(220, 38, 38, 0.32); }
.compare__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.compare__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex: none;
}
.compare--yes .compare__icon { background: rgba(22, 163, 74, 0.14); color: #16a34a; }
.compare--no .compare__icon { background: rgba(220, 38, 38, 0.12); color: #dc2626; }
.compare__col h3 { font-size: 1.3rem; color: var(--light-text); }
.compare__list { display: grid; gap: 15px; }
.compare__list li {
  position: relative;
  padding-left: 34px;
  color: var(--light-text);
  font-size: 0.98rem;
  line-height: 1.5;
}
.compare__list li::before {
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
.compare--yes .compare__list li::before { content: "✓"; background: #16a34a; }
.compare--no .compare__list li::before { content: "✕"; background: #dc2626; }

/* ============================================================
   BIO / RELATORE (sezione scura) — head + video/bullets + foot
   ============================================================ */
.bio__head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.bio__accent {
  background: var(--grad-rb-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bio__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bio__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c0c14;
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
}
.bio__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.bio__video:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.bio__info h3 { font-size: 1.5rem; margin-bottom: 22px; }
.bio__list { display: grid; gap: 16px; }
.bio__list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.6;
}
.bio__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
}
.bio__list strong { color: var(--text); font-weight: 600; }
.bio__foot { text-align: center; max-width: 760px; margin: 48px auto 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.bio__stats { display: flex; justify-content: center; gap: 52px; margin-top: 52px; flex-wrap: wrap; }
.bio__stats li { display: flex; flex-direction: column; gap: 4px; }
.bio__stats strong { font-size: 2rem; color: #fff; line-height: 1; }
.bio__stats span { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   SPEAKER (sezione scura)
   ============================================================ */
.speaker { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.speaker__media { position: relative; transition: transform 0.5s var(--ease-soft); }
.speaker__media:hover { transform: translateY(-8px); }
.speaker__photo { transition: box-shadow 0.5s var(--ease-soft); }
.speaker__media:hover .speaker__photo { box-shadow: var(--shadow); }
.speaker__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c0c14;
  transition: box-shadow 0.5s var(--ease-soft);
}
.speaker__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.speaker__media:hover .speaker__video { box-shadow: var(--shadow); }
.speaker__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(8,8,13,0) 55%, rgba(8,8,13,0.45) 100%),
    url("Asset/Giuliano-lanzetti.jpeg");
  background-size: cover;
  background-position: center top;
}
.speaker__badge {
  position: absolute;
  right: -16px; bottom: 28px;
  background: linear-gradient(110deg, #0002cc 0%, #0003ff 50%, #3d4dff 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 14px 34px -10px rgba(0, 3, 255, 0.5);
}
.speaker__badge strong { display: block; font-size: 1.7rem; line-height: 1; }
.speaker__badge span { font-size: 0.78rem; font-weight: 600; }
.speaker__body p { color: var(--muted); margin-top: 16px; }
.speaker__role {
  display: inline-block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 14px !important;
  padding: 2px 7px;
  border-radius: 4px;
  background: #fff;
  color: #14141a !important;
}
.speaker__facts { display: flex; gap: 36px; margin-top: 34px; flex-wrap: wrap; }
.speaker__facts li { display: flex; flex-direction: column; }
.speaker__facts strong {
  font-size: 1.9rem;
  color: #fff;
}
.speaker__facts span { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   VIDEO TESTIMONIALS (sezione chiara) — iframe Vimeo 16:9
   ============================================================ */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #0c0c14;
  border: 1px solid var(--light-line);
  box-shadow: var(--shadow-light);
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video:hover { transform: translateY(-4px); }
.testimonials__cta { display: flex; justify-content: center; margin-top: 44px; }

/* ============================================================
   INFO (sezione scura) — riusa .section--dark
   ============================================================ */
.info__head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.info__card { text-align: center; }
.info__card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.section--light .info__card:hover { border-color: var(--light-line-2); box-shadow: var(--shadow-light); }
.info__icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.info__card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.info__card p { margin-top: 4px; }
.info__card .muted { font-size: 0.92rem; margin-top: 10px; }
.info__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  align-items: stretch;
}
.info__col { display: grid; gap: 22px; }
.info__map-card {
  padding: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
  min-height: 340px;
}
.info__map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ============================================================
   REGISTER FORM (sezione chiara)
   ============================================================ */
.register { display: flex; flex-direction: column; gap: 32px; max-width: 680px; margin: 0 auto; }
.register__intro { text-align: center; }
.register__intro .font-neutra { font-size: clamp(1.2rem, 5vw, 2.4rem); white-space: nowrap; max-width: 100%; }
.register__intro p { color: var(--light-muted); margin-top: 16px; }
.section--dark .register__intro p { color: var(--muted); }
.register__perks { margin-top: 28px; display: grid; gap: 14px; }
.register__perks li { position: relative; padding-left: 30px; color: var(--light-text); }
.register__perks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-rb);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: grid; place-items: center;
}
.register__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 36px;
  box-shadow: var(--shadow-light);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; color: var(--light-muted); font-weight: 500; }
.field .optional { color: #9a9aa6; font-weight: 400; }
.req { color: #e5484d; font-weight: 600; }
.field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field input,
.field select,
.field textarea {
  background: var(--light-bg-2);
  border: 1px solid var(--light-line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--light-text);
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  resize: vertical;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239a9aa6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.field select:invalid { color: #9a9aa6; }
.field input::placeholder,
.field textarea::placeholder { color: #9a9aa6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.18);
}
.field input:invalid:not(:placeholder-shown) { border-color: #d4564d; }
.checkbox .req { margin-left: 2px; }
.register__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  margin-top: 2px;
}
.register__legal a { color: var(--violet); text-decoration: underline; width: fit-content; }
.register__legal a:hover { color: #6d3ee0; }
.register__required { color: #9a9aa6; }
.checkbox {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light-muted);
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox input { width: 18px; height: 18px; accent-color: var(--violet); flex: none; }
.register__form .btn { grid-column: 1 / -1; margin-top: 4px; }
.register__note { grid-column: 1 / -1; text-align: center; color: #9a9aa6; font-size: 0.82rem; }
.form__success {
  grid-column: 1 / -1;
  text-align: center;
  color: #5b3ecf;
  font-weight: 600;
  padding: 14px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.08);
}

/* ============================================================
   CARRELLO eCommerce (sezione chiara)
   ============================================================ */
.cart {
  padding: 30px;
  box-shadow: var(--shadow-light);
  display: grid;
  gap: 20px;
}
.cart__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cart__head h3 { font-size: 1.25rem; color: var(--light-text); }
.cart__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  color: #fff;
  background: var(--grad-rb);
}
.cart__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius-sm);
  background: var(--light-bg-2);
}
.cart__thumb {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  background: linear-gradient(150deg, rgba(0, 3, 255,0.16), rgba(0, 3, 255,0.16));
}
.cart__info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart__info strong { color: var(--light-text); font-size: 1rem; }
.cart__info span { color: var(--light-muted); font-size: 0.85rem; }
.cart__qty {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--light-line-2);
  border-radius: 100px;
  padding: 4px;
  margin-top: 8px;
}
.cart__step {
  width: 30px; height: 30px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--light-text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s;
}
.cart__step:hover { background: var(--violet); color: #fff; }
.cart__count { min-width: 28px; text-align: center; font-weight: 600; color: var(--light-text); }
.cart__price { grid-column: 3; grid-row: 1; align-self: start; font-weight: 700; color: var(--light-text); font-size: 1.05rem; }
.cart__coupon { display: flex; gap: 10px; }
.cart__coupon input {
  flex: 1;
  background: var(--light-bg-2);
  border: 1px solid var(--light-line);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  color: var(--light-text);
  font-family: inherit;
  font-size: 0.92rem;
}
.cart__coupon input::placeholder { color: #9a9aa6; }
.cart__coupon input:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139,92,246,0.16); }
.cart__coupon .btn--ghost {
  background: var(--light-bg-2);
  border-color: var(--light-line-2);
  color: var(--light-text);
  padding: 12px 20px;
}
.cart__coupon .btn--ghost:hover { background: #ececf1; }
.cart__coupon-msg { font-size: 0.85rem; font-weight: 600; margin-top: -10px; }
.cart__coupon-msg.is-ok { color: #16a34a; }
.cart__coupon-msg.is-err { color: #dc2626; }
.cart__summary { display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--light-line); }
.cart__row { display: flex; justify-content: space-between; color: var(--light-muted); font-size: 0.95rem; }
.cart__row--disc { color: #16a34a; font-weight: 600; }
.cart__row--total { color: var(--light-text); font-size: 1.3rem; font-weight: 700; padding-top: 8px; border-top: 1px dashed var(--light-line-2); }
.cart__checkout { margin-top: 4px; }
.cart__note { text-align: center; color: #9a9aa6; font-size: 0.82rem; }

/* ============================================================
   FAQ (sezione scura)
   ============================================================ */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq__item[open] { border-color: var(--line-strong); background: rgba(255,255,255,0.07); }
.faq__item:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 500;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 22px; max-width: 90%; }
.faq__item a {
  font-weight: 600;
  text-decoration: underline;
  color: #fff;
}
/* FAQ su sfondo chiaro */
.section--light .faq__item {
  background: var(--light-surface);
  border-color: var(--light-line);
}
.section--light .faq__item[open] { border-color: var(--light-line-2); background: var(--light-surface); }
.section--light .faq__item:hover {
  border-color: transparent;
  background: linear-gradient(110deg, rgba(10, 100, 236, 0.14) 0%, rgba(10, 100, 236, 0.14) 100%), var(--light-surface);
  box-shadow: var(--shadow-light);
}
.section--light .faq__item summary::after { color: var(--light-text); }
.section--light .faq__item p { color: var(--light-muted); }
.section--light .faq__item a { color: #0a64ec; }

/* ============================================================
   FINAL CTA (sezione scura forte)
   ============================================================ */
.finalcta {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(600px 400px at 18% 110%, rgba(0, 3, 255, 0.4), transparent 60%),
    radial-gradient(640px 440px at 82% 120%, rgba(0, 3, 255, 0.45), transparent 60%),
    radial-gradient(500px 380px at 50% -10%, rgba(0, 3, 255, 0.3), transparent 65%),
    linear-gradient(180deg, #0b0b15 0%, #07070c 100%);
}
.finalcta__inner { max-width: 640px; margin: 0 auto; }
.finalcta h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.finalcta p { color: var(--muted); margin: 18px 0 34px; font-size: 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 40px 0; border-top: 1px solid var(--line); background: var(--bg); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__meta { display: grid; gap: 6px; text-align: right; }
.footer__company { color: var(--muted-2); font-size: 0.86rem; }
.footer__links { display: flex; gap: 10px; align-items: center; justify-content: flex-end; }
.footer__links span { color: var(--muted-2); }
.footer__links a { color: var(--muted); font-size: 0.88rem; transition: color 0.25s; }
.footer__links a:hover { color: var(--text); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity 0.7s var(--ease),
    translate 0.7s var(--ease),
    transform 0.5s var(--ease-soft),
    box-shadow 0.5s var(--ease-soft),
    border-color 0.5s var(--ease-soft);
}
.reveal.is-visible { opacity: 1; translate: 0 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .hero__figure { display: none; }
  .hero__content { max-width: 100%; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .tappe-grid { grid-template-columns: repeat(2, 1fr); }
  .tappe-grid .tappa,
  .tappe-grid .tappa:nth-child(4),
  .tappe-grid .tappa:nth-child(5) { grid-column: auto; }
  .speaker { grid-template-columns: 1fr; gap: 40px; }
  .bio__grid { grid-template-columns: 1fr; gap: 32px; }
  .speaker__media { max-width: 420px; }
  .register { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 620px) {
  .grid--3 { grid-template-columns: 1fr; }
  .tappe-grid { grid-template-columns: 1fr; }
  .info__layout { grid-template-columns: 1fr; }
  .hero__meta-headline { padding: 10px 20px; gap: 10px; max-width: 100%; white-space: nowrap; font-size: clamp(1.2rem, 5.4vw, 1.7rem); }
  .hero__meta-headline > span { white-space: nowrap; }
  .hero__title br { display: none; }
  .compare { grid-template-columns: 1fr; }
  .bio__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .bio__stats li { align-items: center; text-align: center; }
  .register__form { grid-template-columns: 1fr; padding: 26px; }
  .hero__meta { gap: 12px; flex-wrap: nowrap; justify-content: center; }
  .hero__meta-item { flex: 1; align-items: center; text-align: center; min-width: 0; }
  .hero__meta-item strong { font-size: 0.86rem; }
  .hero__meta-item span { font-size: 0.7rem; line-height: 1.3; }
  .hero__divider { display: block; height: 34px; flex: none; }
  .hero__marquee-track { animation-duration: 38s; }
  .nav__cta { display: none; }
  .nav__brand img { height: 54px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__meta { text-align: center; }
  .footer__links { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: 0 0; transform: none; }
}


/* ============================================================
   REDESIGN 2026 — Topbar sticky, menu, bottoni, hero value-prop
   (regole in coda: hanno la precedenza sull'ordine sorgente)
   ============================================================ */

/* Anchor offset per topbar fissa */
.section { scroll-margin-top: 86px; }

/* ---- Topbar fissa che segue l'utente ---- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.topbar .nav {
  position: static;
  padding: 16px 0;
  transition: padding .35s var(--ease);
}
.topbar.is-scrolled {
  background: rgba(8, 8, 13, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 36px -20px rgba(0, 0, 0, .75);
}
.topbar.is-scrolled .nav { padding: 9px 0; }
.nav__brand img { transition: height .35s var(--ease); }
.topbar.is-scrolled .nav__brand img { height: 50px; }

/* ---- Link con sottolineatura animata + stato attivo (scrollspy) ---- */
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #16d46a, #0fb85f);
  transition: right .3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { right: 0; }
.nav__links a.is-active { color: #fff; }

/* ---- Hamburger (mobile) ---- */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .07);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Bottoni "Iscriviti gratis": più grandi, testo bianco ---- */
.btn--lg { padding: 18px 42px; font-size: 1.08rem; }
.btn--green { background: linear-gradient(120deg, #13c267, #0a9c50); color: #fff; }
.btn--green:hover { box-shadow: 0 20px 44px -12px rgba(15, 184, 95, .85); }
.hero__actions .btn--primary { background: linear-gradient(120deg, #13c267, #0a9c50); color: #fff; }
.nav__cta { color: #fff; }

/* ---- Hero: riga relatore / value proposition ---- */
.hero__author {
  margin-top: 20px;
  max-width: 600px;
  font-size: clamp(.98rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(244, 244, 247, .82);
}
.hero__author strong { color: #fff; font-weight: 600; }
.hero__author .hl {
  background: linear-gradient(110deg, #16d46a, #0fb85f);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* ---- Programma: nota accesso riservato ---- */
.access-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 760px;
  margin: 0 0 42px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-line-2);
  background: linear-gradient(110deg, rgba(134, 0, 189, .09), rgba(169, 46, 224, .09));
  color: var(--light-text);
  font-size: .98rem;
  line-height: 1.55;
}
.access-note__ic { font-size: 1.15rem; line-height: 1.4; flex: none; }
.access-note strong { font-weight: 600; }
.section--dark .access-note {
  border-color: var(--line-strong);
  color: var(--text);
  background: linear-gradient(110deg, rgba(134, 0, 189, .18), rgba(169, 46, 224, .16));
}

/* ---- Menu mobile ---- */
@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; order: 3; }
  .nav__cta {
    display: inline-flex !important;
    order: 2;
    margin-left: auto;
    margin-right: 12px;
    padding: 10px 18px;
    font-size: .85rem;
  }
  .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 6px 24px 16px;
    background: rgba(8, 8, 13, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links li { border-top: 1px solid var(--line); }
  .nav__links a { display: block; padding: 15px 2px; font-size: 1rem; }
  .nav__links a::after { display: none; }
}
@media (max-width: 620px) {
  .nav__cta { padding: 9px 15px; font-size: .8rem; margin-right: 10px; }
  .btn--lg { padding: 16px 32px; font-size: 1rem; }
}


/* ============================================================
   COLOR FIX 2026 — Relatore su sezione CHIARA (leggibilità bio)
   ============================================================ */
.section--light .speaker__role { background: var(--grad-rb); color: #fff !important; }
.section--light .bio__list li { color: var(--light-muted); }
.section--light .bio__list strong { color: var(--light-text); }
.section--light .bio__list li::before { background: var(--violet); }
.section--light .bio__stats strong { color: var(--light-text); }
.section--light .bio__stats span { color: var(--light-muted); }


/* ============================================================
   HERO CTA FIX — il bottone della barra appare solo dopo lo scroll
   (sull'hero starebbe sopra la testa di Giuliano)
   ============================================================ */
.nav__cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.topbar.is-scrolled .nav__cta {
  opacity: 1;
  visibility: visible;
  transform: none;
}


/* ============================================================
   ACCESS NOTE — disclaimer "evento riservato" più pulito/discreto
   ============================================================ */
.access-note {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: none;
  margin: 0 0 46px;
  padding: 16px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: .95rem;
  line-height: 1.5;
}
.access-note p { margin: 0; color: var(--muted); }
.access-note strong { color: var(--text); font-weight: 600; }
.access-note__ic {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
}
.section--dark .access-note { background: rgba(255, 255, 255, 0.04); border-color: var(--line); }
.section--light .access-note { background: var(--light-surface); border-color: var(--light-line); }
.section--light .access-note p { color: var(--light-muted); }
.section--light .access-note strong { color: var(--light-text); }
.section--light .access-note__ic { background: rgba(17, 17, 25, 0.05); border-color: var(--light-line-2); }


/* ============================================================
   PROGRAMMA — box AI in evidenza + icone emoji
   ============================================================ */
.feature__num { font-size: 1.5rem; line-height: 1; }
.program-grid { margin-top: 0; }

.feature--ai {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 22px;
  padding: 28px 34px;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--light-surface), var(--light-surface)) padding-box,
    linear-gradient(110deg, #0500ff 0%, #0a64ec 50%, #00a6e2 100%) border-box;
  box-shadow: 0 26px 62px -28px rgba(10, 100, 236, 0.55);
}
.feature--ai::before { display: none; }
.feature--ai:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 32px 72px -26px rgba(10, 100, 236, 0.7);
}
.feature--ai .feature__num--ai {
  flex: none;
  width: 60px; height: 60px;
  margin: 0;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #0500ff, #00a6e2);
  box-shadow: 0 12px 28px -10px rgba(10, 100, 236, 0.7);
}
.feature--ai .feature__num--ai svg { width: 30px; height: 30px; stroke: #fff; }
.feature--ai__body { display: flex; flex-direction: column; }
.feature__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, #0500ff, #00a6e2);
}
.feature--ai h3 { font-size: 1.6rem; color: var(--light-text); margin-bottom: 8px; }
.feature--ai p { color: var(--light-muted); font-size: 1rem; max-width: 820px; }

@media (max-width: 620px) {
  .feature--ai { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
}


/* ============================================================
   PROGRAMMA — box AI "in risalto" (resta una delle 6 card)
   ============================================================ */
.section--dark .feature--hl,
.section--light .feature--hl {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--light-surface), var(--light-surface)) padding-box,
    linear-gradient(135deg, #0500ff 0%, #0a64ec 50%, #00a6e2 100%) border-box;
  box-shadow: 0 22px 52px -26px rgba(10, 100, 236, 0.50);
}
.section--dark .feature--hl:hover,
.section--light .feature--hl:hover {
  border-color: transparent;
  box-shadow: 0 30px 66px -24px rgba(10, 100, 236, 0.70);
}
.feature--hl .feature__num {
  background: linear-gradient(135deg, rgba(5, 0, 255, 0.12), rgba(0, 166, 226, 0.12));
  border-color: rgba(10, 100, 236, 0.35);
}
.feature--hl .feature__num svg { stroke: #0a64ec; }


/* ============================================================
   PROGRAMMA — box AI: evidenza forte (card piena gradiente)
   ============================================================ */
.section--dark .feature--hl,
.section--light .feature--hl {
  border: 0;
  background: linear-gradient(150deg, #0500ff 0%, #0a64ec 55%, #00a6e2 100%);
  box-shadow: 0 28px 62px -22px rgba(10, 100, 236, 0.75);
}
.section--dark .feature--hl:hover,
.section--light .feature--hl:hover {
  transform: translateY(-6px);
  border: 0;
  box-shadow: 0 36px 74px -22px rgba(10, 100, 236, 0.9);
}
.section--dark .feature--hl h3,
.section--light .feature--hl h3 { color: #fff; }
.section--dark .feature--hl p,
.section--light .feature--hl p { color: rgba(255, 255, 255, 0.85); }
.feature--hl .feature__num {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}
.feature--hl .feature__num svg { stroke: #fff; }


/* ============================================================
   PROGRAMMA — box AI: stessa forma delle altre + accento visibile
   ============================================================ */
.section--dark .feature--hl,
.section--light .feature--hl {
  border: 2px solid transparent;
  background:
    linear-gradient(#f3f7ff, #f3f7ff) padding-box,
    linear-gradient(135deg, #0500ff 0%, #0a64ec 50%, #00a6e2 100%) border-box;
  box-shadow: 0 16px 40px -28px rgba(10, 100, 236, 0.45);
}
.section--dark .feature--hl:hover,
.section--light .feature--hl:hover {
  transform: translateY(-6px);
  border: 2px solid transparent;
  box-shadow: 0 26px 56px -24px rgba(10, 100, 236, 0.6);
}
.section--dark .feature--hl h3,
.section--light .feature--hl h3 { color: var(--light-text); }
.section--dark .feature--hl p,
.section--light .feature--hl p { color: var(--light-muted); }
.feature--hl .feature__num {
  background: linear-gradient(135deg, #0500ff, #00a6e2);
  border-color: transparent;
  box-shadow: 0 10px 22px -10px rgba(10, 100, 236, 0.6);
}
.feature--hl .feature__num svg { stroke: #fff; }

/* prezzo "Gratis" nel box biglietto */
.cart__free { grid-column: 3; align-self: center; font-weight: 700; font-size: 1.1rem; color: #0a9c50; white-space: nowrap; }
