@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/inter-latin.woff2") format("woff2");
}

:root {
  --green-950: #032e1d;
  --green-900: #04452a;
  --green-800: #075036;
  --green-700: #0b5b3e;
  --green-600: #1a6e4d;
  --mint: #93d8b1;
  --mint-soft: #e5f3ea;
  --ink: #13211a;
  --muted: #56655d;
  --line: #dfe5e0;
  --paper: #f6f5f0;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(3, 46, 29, .06), 0 12px 32px rgba(3, 46, 29, .08);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.025em; margin: 0; font-weight: 800; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 10px;
  font: 600 16px/1 "Inter", sans-serif; text-decoration: none; letter-spacing: .01em;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.btn-primary { background: var(--mint); color: var(--green-950); }
.btn-primary:hover { background: #a9e3c2; }
.btn-dark { background: var(--green-700); color: var(--white); }
.btn-dark:hover { background: var(--green-800); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); }
.btn svg { width: 18px; height: 18px; flex: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green-600);
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.site-header .logo img { height: 44px; width: auto; }
.header-meta { display: flex; align-items: center; gap: 22px; }
.header-date { font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.site-header .btn { min-height: 44px; padding: 0 20px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--white); background: var(--green-900); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,46,29,.96) 0%, rgba(3,46,29,.9) 38%, rgba(3,46,29,.55) 70%, rgba(3,46,29,.35) 100%),
              linear-gradient(0deg, rgba(3,46,29,.7) 0%, rgba(3,46,29,0) 40%);
}
.hero .wrap { position: relative; padding: 96px 0 72px; }
.hero-kicker { font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--mint); margin-bottom: 22px; }
.hero h1 { font-size: clamp(40px, 6.2vw, 76px); max-width: 13.5em; }
.hero h1 em { font-style: normal; color: var(--mint); }
.hero-lead { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.55; max-width: 36em; margin: 26px 0 0; color: rgba(255,255,255,.88); }
.hero-lead strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-facts {
  display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 18px 44px;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.2); max-width: 820px;
}
.hero-facts dt { font-size: 14px; font-weight: 500; color: var(--mint); margin-bottom: 2px; }
.hero-facts dd { margin: 0; font-weight: 600; font-size: 17px; line-height: 1.4; }
.hero-facts dd span { display: block; font-weight: 400; color: rgba(255,255,255,.75); font-size: 15px; }
.seats-note { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 8px; }
.seats-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(147,216,177,.25); }

/* ---------- Stats ---------- */
.stats { background: var(--green-950); color: var(--white); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 28px; border-left: 1px solid rgba(255,255,255,.12); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { display: block; font-size: clamp(34px, 3.6vw, 46px); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--mint); }
.stat span { display: block; margin-top: 10px; font-size: 15px; line-height: 1.45; color: rgba(255,255,255,.82); }
.stats-source { grid-column: 1 / -1; font-size: 12px; color: rgba(255,255,255,.5); padding: 0 0 18px; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-paper { background: var(--paper); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(32px, 4.2vw, 52px); }
.section-head p { font-size: 19px; color: var(--muted); margin: 20px 0 0; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.split-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 24px; }
.split p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 12px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; font-weight: 500;
}
.check-list li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: #fbe9e7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b3412f' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.pull { font-size: 20px; font-weight: 600; color: var(--ink) !important; border-left: 3px solid var(--green-700); padding-left: 18px; }

/* ---------- Model ---------- */
.model-visual { position: relative; margin-bottom: 56px; }
.model-visual img { width: 100%; border-radius: var(--radius); aspect-ratio: 21 / 8; object-fit: cover; }
.model-tag {
  position: absolute; left: 24px; bottom: 24px; background: var(--white); border-radius: 10px;
  padding: 14px 18px; box-shadow: var(--shadow); font-weight: 600; font-size: 15px; max-width: 340px; line-height: 1.4;
}
.model-tag small { display: block; font-weight: 500; color: var(--muted); font-size: 13px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.pillar .ico {
  width: 48px; height: 48px; border-radius: 12px; background: var(--mint-soft); color: var(--green-700);
  display: grid; place-items: center; margin-bottom: 20px;
}
.pillar .ico svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 20px; letter-spacing: -.015em; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 16px; margin: 0; }
.not-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.not-list span {
  font-size: 14px; font-weight: 600; padding: 9px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); color: var(--muted);
}
.not-list span b { color: var(--green-700); }

/* ---------- Investors ---------- */
.investors { background: var(--green-900); color: var(--white); }
.investors .eyebrow { color: var(--mint); }
.investors .section-head p { color: rgba(255,255,255,.78); }
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.reason { background: var(--green-900); padding: 40px 38px; }
.reason .num { font-size: 13px; font-weight: 700; letter-spacing: .16em; color: var(--mint); }
.reason h3 { font-size: 24px; margin: 0 0 12px; letter-spacing: -.02em; }
.reason p { color: rgba(255,255,255,.78); margin: 0; font-size: 16px; }
.role {
  margin-top: 56px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start;
  padding: 40px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
}
.role h3 { font-size: 26px; }
.role p { color: rgba(255,255,255,.78); margin-top: 14px; }
.role ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.role li { display: flex; gap: 14px; color: rgba(255,255,255,.9); }
.role li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23032e1d' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Program ---------- */
.program-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.agenda { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.agenda li { display: grid; grid-template-columns: 92px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.agenda time { font-weight: 700; font-size: 18px; color: var(--green-700); font-variant-numeric: tabular-nums; }
.agenda strong { font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.agenda li.muted time, .agenda li.muted strong { color: var(--muted); font-weight: 500; }
.side-card { background: var(--paper); border-radius: var(--radius); padding: 32px; }
.side-card + .side-card { margin-top: 20px; }
.side-card h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
.speaker { display: flex; gap: 16px; align-items: center; }
.speaker img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.speaker b { display: block; font-size: 18px; }
.speaker span { color: var(--muted); font-size: 15px; line-height: 1.4; display: block; }
.org-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.org-list li { font-size: 15px; color: var(--muted); line-height: 1.45; }
.org-list b { color: var(--ink); font-weight: 600; }
.logos { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--line); }
.logos p { font-size: 15px; font-weight: 500; color: var(--muted); margin-bottom: 26px; text-align: center; }
.logos ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px 48px; }
.logos img { height: 48px; width: auto; }

/* ---------- Timeline ---------- */
.journey { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.journey figure { margin: 0; }
.journey figure img { border-radius: var(--radius); width: 100%; }
.journey figcaption { font-size: 14px; color: var(--muted); margin-top: 12px; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 30px 40px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 3px solid var(--green-700); }
.timeline li.next::before { background: var(--green-700); box-shadow: 0 0 0 5px var(--mint-soft); }
.timeline .when { font-size: 15px; font-weight: 600; color: var(--green-600); }
.timeline h3 { font-size: 20px; margin: 6px 0 6px; letter-spacing: -.015em; }
.timeline p { color: var(--muted); font-size: 16px; margin: 0; }

/* ---------- Registration ---------- */
.register { background: var(--green-950); color: var(--white); scroll-margin-top: 72px; }
.register .eyebrow { color: var(--mint); }
.register-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.register h2 { font-size: clamp(34px, 4.2vw, 52px); margin: 0 0 20px; }
.register-grid > div:first-child { position: sticky; top: 110px; }
.register-intro { color: rgba(255,255,255,.8); font-size: 18px; }
.info-list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 22px; }
.info-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.info-list .ico { width: 44px; height: 44px; border-radius: 10px; background: rgba(147,216,177,.14); color: var(--mint); display: grid; place-items: center; }
.info-list .ico svg { width: 22px; height: 22px; }
.info-list b { display: block; font-size: 17px; }
.info-list span { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.5; display: block; }
.info-list a { color: var(--mint); }
.form-card { background: var(--white); color: var(--ink); border-radius: 18px; padding: 34px 34px 18px; box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.form-card h3 { font-size: 22px; letter-spacing: -.015em; }
.form-card > p { color: var(--muted); font-size: 15px; margin: 8px 0 18px; }
.form-card iframe { width: 100%; border: 0; min-height: 640px; }
.form-fallback { font-size: 14px; color: var(--muted); padding: 10px 0 12px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; font-size: 19px; font-weight: 600; position: relative; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 22px; height: 22px; margin-top: -11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5b3e' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:focus-visible { outline: 3px solid var(--mint); outline-offset: 2px; }
.faq details p { color: var(--muted); padding: 0 40px 24px 0; margin: 0; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--paper); padding: 90px 0; text-align: center; }
.final-cta h2 { font-size: clamp(30px, 4vw, 48px); max-width: 18em; margin: 0 auto; }
.final-cta p { color: var(--muted); font-size: 18px; margin: 18px auto 32px; max-width: 34em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: rgba(255,255,255,.72); font-size: 14px; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.site-footer img { height: 46px; width: auto; margin-bottom: 20px; }
.site-footer h4 { color: var(--white); font-size: 16px; margin: 0 0 12px; }
.site-footer p { margin: 0 0 6px; line-height: 1.6; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: none;
  transform: translateY(140%); transition: transform .25s ease;
}
.mobile-cta.show { transform: none; }
.mobile-cta .btn { width: 100%; box-shadow: 0 10px 30px rgba(3,46,29,.35); }

/* ---------- Simple pages ---------- */
.page-simple { background: var(--paper); min-height: 100vh; }
.page-simple main { padding: 80px 0 100px; }
.doc { background: var(--white); border-radius: 18px; padding: clamp(28px, 5vw, 64px); max-width: 860px; margin: 0 auto; box-shadow: var(--shadow); }
.doc h1 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 18px; }
.doc h2 { font-size: 22px; margin: 36px 0 12px; letter-spacing: -.015em; }
.doc p, .doc li { color: #34443b; }
.doc ul { padding-left: 20px; }
.doc .lead { font-size: 19px; color: var(--muted); }
.thanks-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--mint-soft); color: var(--green-700); display: grid; place-items: center; margin-bottom: 26px; }
.thanks-icon svg { width: 30px; height: 30px; }
.event-box { background: var(--paper); border-radius: 12px; padding: 24px 26px; margin: 28px 0; display: grid; gap: 8px; }
.event-box b { font-size: 18px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.btn-outline { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-outline:hover { border-color: var(--green-700); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split, .program-grid, .journey, .register-grid, .faq-grid, .role { grid-template-columns: 1fr; gap: 44px; }
  .register-grid > div:first-child { position: static; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .split-media img { aspect-ratio: 16 / 10; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 32px); }
  .site-header .wrap { height: 62px; }
  .site-header .logo img { height: 36px; }
  .header-date { display: none; }
  .site-header .btn { min-height: 40px; padding: 0 14px; font-size: 14px; }
  .hero .wrap { padding: 60px 0 48px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(3,46,29,.82) 0%, rgba(3,46,29,.93) 55%, rgba(3,46,29,.98) 100%); }
  .hero-actions .btn { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 17px; }
  .pillars, .reasons { grid-template-columns: 1fr; }
  .reason { padding: 30px 24px; }
  .role { padding: 28px 22px; margin-top: 40px; }
  .model-visual img { aspect-ratio: 4 / 3; }
  .model-tag { position: relative; left: auto; bottom: auto; margin-top: -24px; margin-inline: 14px; max-width: none; }
  .agenda li { grid-template-columns: 70px 1fr; gap: 12px; }
  .agenda strong { font-size: 17px; }
  .logos img { height: 38px; }
  .logos ul { gap: 20px 30px; }
  .form-card { padding: 24px 18px 8px; border-radius: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  .final-cta { padding: 64px 0 100px; }
  .faq summary { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .mobile-cta, .faq summary::after { transition: none; }
}

/* ---------- Hero: differenziazione e punti per investitori ---------- */
.hero h1 { max-width: 12.5em; }
.hero-not { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; margin: 26px 0 0; font-size: clamp(16px, 1.6vw, 19px); }
.hero-not s { color: rgba(255,255,255,.9); text-decoration: none; position: relative; white-space: nowrap; }
.hero-not s::after {
  content: ""; position: absolute; left: -3px; right: -3px; top: 54%; height: 1.5px; background: rgba(147,216,177,.85);
  transform: scaleX(0); transform-origin: left; animation: strike .6s cubic-bezier(.6,0,.2,1) forwards;
}
.hero-not s:nth-child(2)::after { animation-delay: .25s; }
.hero-not s:nth-child(3)::after { animation-delay: .5s; }
.hero-not strong { color: var(--mint); font-weight: 700; white-space: nowrap; opacity: 0; animation: fadeUp .6s ease .85s forwards; }
@keyframes strike { to { transform: scaleX(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.hero-points { list-style: none; padding: 0; margin: 30px 0 0; max-width: 700px; display: grid; gap: 0; counter-reset: pt; }
.hero-points li {
  position: relative; padding: 14px 0 14px 34px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: 17px; line-height: 1.5; color: rgba(255,255,255,.8);
}
.hero-points li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-points li::before {
  content: ""; position: absolute; left: 2px; top: 22px; width: 14px; height: 8px;
  border-left: 2.5px solid var(--mint); border-bottom: 2.5px solid var(--mint); transform: rotate(-45deg);
}
.hero-points b { color: var(--white); font-weight: 600; }

/* ---------- Contatore posti ---------- */
.seats { margin-top: 26px; max-width: 520px; }
.seats[hidden], .seats-note[hidden] { display: none; }
.seats-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 15px; margin-bottom: 10px; }
.seats-msg { font-weight: 600; color: var(--mint); display: inline-flex; align-items: center; gap: 8px; }
.seats-msg::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: pulse 1.8s ease-in-out infinite; }
.seats.low .seats-msg { color: #ffc9a8; }
.seats.low .seats-msg::before { background: #ffb38a; }
.seats-count { color: rgba(255,255,255,.75); font-variant-numeric: tabular-nums; }
.seats-count b { color: var(--white); font-size: 22px; font-weight: 800; }
.seats-bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.14); overflow: hidden; }
.seats-bar span { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--mint), #d7f5e3); }
.seats.low .seats-bar span { background: linear-gradient(90deg, #ffb38a, #ffd9c2); }
.seats-lg { margin-top: 28px; padding: 20px 22px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(147,216,177,.55); } 50% { box-shadow: 0 0 0 6px rgba(147,216,177,0); } }

/* ---------- Problema: offerta superata ---------- */
.problem .split { align-items: end; }
.problem .split-media img { aspect-ratio: 4 / 3; }
.old-offer-label { margin: 90px 0 8px; font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; color: var(--ink); }
.old-offer-label mark { background: linear-gradient(transparent 58%, rgba(147,216,177,.75) 58%); color: inherit; padding: 0 2px; }
.old-offer { list-style: none; margin: 0; padding: 0; }
.old-offer li {
  border-bottom: 1px solid #d6dbd4; padding: 26px 0;
  font-size: clamp(22px, 2.9vw, 36px); font-weight: 600; letter-spacing: -.02em; line-height: 1.25; color: var(--ink);
}
.old-offer li span {
  background-image: linear-gradient(rgba(179,65,47,.8), rgba(179,65,47,.8)); background-repeat: no-repeat;
  background-size: 0% 2px; background-position: 0 58%;
  transition: background-size .9s cubic-bezier(.6,0,.2,1) calc(var(--d, 0ms) + 350ms), color .6s ease calc(var(--d, 0ms) + 900ms);
}
.old-offer li.in span { background-size: 100% 2px; color: #4a5750; }

.scrub-text {
  margin: 90px 0 0; max-width: 22em;
  font-size: clamp(30px, 4.4vw, 58px); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; color: var(--ink);
}
.scrub-text span { color: rgba(19,33,26,.16); transition: color .25s ease; }
.scrub-text span.on { color: var(--ink); }
.scrub-text span.on:nth-last-child(-n+6) { color: var(--green-700); }

/* ---------- Reveal generico ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease var(--d, 0ms), transform .7s cubic-bezier(.2,.7,.2,1) var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Cosa non è ---------- */
.not-block { margin-top: 64px; background: var(--green-900); color: var(--white); border-radius: 18px; padding: clamp(36px, 6vw, 72px); }
.not-title { font-size: clamp(18px, 1.8vw, 22px); color: rgba(255,255,255,.75); margin: 0 0 18px; }
.not-title strong { color: var(--white); }
.not-items { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px 40px; }
.not-items li { font-size: clamp(30px, 4.6vw, 60px); font-weight: 800; letter-spacing: -.03em; line-height: 1.22; }
.not-items s {
  text-decoration: none; color: rgba(255,255,255,.92);
  background-image: linear-gradient(var(--mint), var(--mint)); background-repeat: no-repeat;
  background-size: 0% .055em; background-position: 0 56%;
  transition: background-size .7s cubic-bezier(.6,0,.2,1) calc(var(--d, 0ms) + 300ms), color .6s ease calc(var(--d, 0ms) + 700ms);
}
.not-items li.in s { background-size: 100% .055em; color: rgba(255,255,255,.8); }
.not-is { margin: 40px 0 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.16); font-size: clamp(28px, 4vw, 52px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; --d: 700ms; }
.not-is em { font-style: normal; color: var(--mint); }

@media (max-width: 720px) {
  .hero-not { gap: 6px 16px; }
  .hero-points li { font-size: 16px; padding: 12px 0 12px 30px; }
  .hero-points li::before { top: 19px; }
  .old-offer-label { margin-top: 56px; }
  .old-offer li { padding: 20px 0; }
  .scrub-text { margin-top: 56px; }
  .not-block { margin-top: 48px; border-radius: 14px; }
  .not-items { gap: 2px 24px; }
  .journey figure img { aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 55%; }
  .seats-top { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-not s::after { animation: none; transform: scaleX(1); }
  .not-items s { background-size: 100% .055em; transition: none; }
  .hero-not strong { animation: none; opacity: 1; }
  .old-offer li span { background-size: 100% 2px; transition: none; }
  .seats-msg::before { animation: none; }
}
