/* ── 1. Design tokens (merged from tokens.css) ───────────────────── */
:root {
  /* ─── Brand Colors ─── */
  --sun-orange:      #FF6321;
  --apricot-heat:    #FF9A6B;
  --summer-yellow:   #FFD700;
  --cream-light:     #FFF8F0;
  --sky-haze:        #9FD8E5;
  --mediterranean:   #255C7A;
  --night-navy:      #142433;

  /* ─── Warm Palette ─── */
  --warm-cream:      #FFF8F0;
  --warm-sand:       #FFF0E0;
  --sand-border:     #E8D3BC;
  --sand-mid:        #D4B896;

  /* ─── Gradients ─── */
  --summer-gradient: linear-gradient(135deg, #FF6321 0%, #FFD700 100%);
  --navy-gradient:   linear-gradient(135deg, #142433 0%, #255C7A 100%);
  --hero-gradient:   linear-gradient(150deg, #142433 0%, #1a3a52 45%, #1d4a62 100%);
  --warm-gradient:   linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 100%);

  /* ─── Semantic Aliases ─── */
  --color-primary:       var(--sun-orange);
  --color-primary-light: var(--apricot-heat);
  --color-bg:            #FFF8F0;
  --color-bg-alt:        #FFF0E0;
  --color-surface:       #FFFFFF;
  --color-text:          #18181b;
  --color-text-muted:    #71717a;
  --color-text-light:    #a1a1aa;
  --color-accent:        var(--sky-haze);
  --color-link:          var(--mediterranean);
  --color-border:        rgba(232, 211, 188, 0.60);
  --color-border-strong: rgba(232, 211, 188, 0.90);

  /* ─── Difficulty Colors ─── */
  --color-facile:      #22C55E;
  --color-media:       #F59E0B;
  --color-difficile:   #EF4444;
  --color-leggendaria: #8B5CF6;

  /* ─── Status Colors ─── */
  --color-success:  #16A34A;
  --color-warning:  #D97706;
  --color-error:    #DC2626;
  --color-info:     var(--mediterranean);

  /* ─── Fonts ─── */
  --font-headline:  'Outfit', 'Bricolage Grotesque', sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-editorial: 'Cormorant Garamond', 'Georgia', serif;

  /* ─── Type Scale (fluid) ─── */
  --text-xs:   clamp(0.70rem,  1.4vw, 0.80rem);
  --text-sm:   clamp(0.85rem,  1.6vw, 0.95rem);
  --text-base: clamp(1rem,     2vw,   1.0625rem);
  --text-lg:   clamp(1.125rem, 2.4vw, 1.25rem);
  --text-xl:   clamp(1.25rem,  3vw,   1.5rem);
  --text-2xl:  clamp(1.5rem,   4vw,   2rem);
  --text-3xl:  clamp(1.875rem, 5vw,   2.5rem);
  --text-4xl:  clamp(2.25rem,  6vw,   3.25rem);
  --text-hero: clamp(2.75rem,  8vw,   5rem);

  /* ─── Spacing ─── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ─── Border Radius ─── */
  --radius-xs:   0.25rem;
  --radius-sm:   0.5rem;
  --radius-md:   1rem;
  --radius-lg:   1.5rem;
  --radius-xl:   2rem;
  --radius-2xl:  2.5rem;
  --radius-full: 9999px;

  /* ─── Shadows ─── */
  --shadow-sm:          0 1px 4px rgba(180, 120, 60, 0.06);
  --shadow-card:        0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-raised:      0 20px 50px rgba(255, 106, 42, 0.10);
  --shadow-modal:       0 20px 60px rgba(20, 36, 51, 0.18);
  --shadow-orange:      0 8px 24px rgba(255, 99, 33, 0.30);
  --shadow-orange-xl:   0 12px 40px rgba(255, 99, 33, 0.25);
  --shadow-glow-orange: 0 0 15px rgba(255, 106, 42, 0.40);

  /* ─── Transitions ─── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ─── Z-index ─── */
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;

  /* ─── Container ─── */
  --container-max: 1200px;
  --container-padding: var(--space-6);
}

/* ── 2. Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; text-rendering: optimizeSpeed; line-height: 1.6;
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-text); background: var(--color-bg); }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── 3. Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-headline); line-height: 1.1; }
.text-editorial { font-family: var(--font-editorial); font-style: italic; font-size: var(--text-lg); color: var(--color-text-muted); line-height: 1.6; }
.text-muted    { color: var(--color-text-muted); }
.text-light    { color: var(--color-text-light); }
.text-primary  { color: var(--color-primary); }
.label-upper   { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.hidden        { display: none !important; }

/* ── 4. Layout ───────────────────────────────────────────────────── */
.sz-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.sz-container--narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--container-padding); }
.sz-section { padding: var(--space-20) 0; }
.sz-section--sm { padding: var(--space-12) 0; }
.sz-section--lg { padding: var(--space-32) 0; }
.sz-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.sz-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.sz-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: var(--space-6); }
@media (max-width: 768px) {
  .sz-grid-2, .sz-grid-3 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sz-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── 5. Buttons ──────────────────────────────────────────────────── */
.sz-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2); padding: 0.75em 1.75em;
  border-radius: var(--radius-full); font-family: var(--font-headline);
  font-weight: 700; font-size: var(--text-base);
  transition: all var(--transition-base); white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.sz-btn--primary {
  background: var(--color-primary); color: #fff;
  box-shadow: var(--shadow-orange);
}
.sz-btn--primary:hover { background: #e55016; box-shadow: var(--shadow-orange-xl); transform: translateY(-1px); }
.sz-btn--primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.sz-btn--secondary {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-primary);
}
.sz-btn--secondary:hover { background: rgba(255,99,33,0.06); }
.sz-btn--ghost {
  background: transparent; color: var(--color-text);
  border-color: var(--color-border-strong);
}
.sz-btn--ghost:hover { background: var(--color-bg-alt); }
.sz-btn--navy { background: var(--night-navy); color: #fff; }
.sz-btn--navy:hover { background: #1a3048; }
.sz-btn--sm { font-size: var(--text-sm); padding: 0.55em 1.2em; }
.sz-btn--lg { font-size: var(--text-lg); padding: 0.85em 2em; }
.sz-btn--block { width: 100%; }

/* ── 6. Badges / Pills ───────────────────────────────────────────── */
.sz-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 0.25em 0.75em; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.04em;
}
.sz-badge--facile { background: rgba(34,197,94,.12); color: #16a34a; }
.sz-badge--media { background: rgba(245,158,11,.12); color: #b45309; }
.sz-badge--difficile { background: rgba(239,68,68,.12); color: #dc2626; }
.sz-badge--leggendaria { background: rgba(139,92,246,.12); color: #7c3aed; }

.sz-pill {
  display: inline-flex; align-items: center;
  padding: 0.3em 0.9em; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600;
  background: var(--color-bg-alt); color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  cursor: pointer; transition: all var(--transition-fast);
}
.sz-pill:hover, .sz-pill.is-active {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}

/* ── 7. Nav editoriale ───────────────────────────────────────────── */
.sz-nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(255, 248, 240, 0.90);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}
.sz-nav__inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.sz-nav__logo {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-xl); color: var(--night-navy);
  text-decoration: none;
}
.sz-nav__logo img { height: 32px; width: auto; }
.sz-nav__links {
  display: flex; align-items: center; gap: var(--space-1);
  list-style: none;
}
.sz-nav__link {
  padding: 0.4em 0.9em; border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--transition-fast); white-space: nowrap;
}
.sz-nav__link:hover { color: var(--color-text); background: var(--color-bg-alt); }
.sz-nav__link.is-active { color: var(--color-primary); background: rgba(255,99,33,.08); }
.sz-nav__live-label { display: flex; align-items: center; gap: 4px; }
.sz-nav__live-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--color-primary);
  animation: live-pulse 1.8s ease-in-out infinite;
}
.sz-nav__actions { display: flex; align-items: center; gap: var(--space-3); }
.sz-nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--space-2); border-radius: var(--radius-sm);
  cursor: pointer;
}
.sz-nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: all var(--transition-base);
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* Mobile nav */
.sz-nav-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100%;
  background: var(--color-bg); z-index: var(--z-modal);
  padding: var(--space-8) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-2);
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-modal);
}
.sz-nav-drawer.is-open { right: 0; }
.sz-nav-drawer__close {
  align-self: flex-end;
  font-size: 1.5rem; color: var(--color-text-muted);
  padding: var(--space-1) var(--space-2);
  margin-bottom: var(--space-2);
  line-height: 1;
}
.sz-nav-drawer__close:hover { color: var(--color-text); }
.sz-nav-drawer__random {
  margin-bottom: var(--space-4);
  font-size: var(--text-lg); padding: 0.9em 1.5em;
  border-radius: var(--radius-xl); width: 100%;
}
.sz-nav-drawer__link {
  display: block; padding: 0.85em var(--space-4);
  font-size: var(--text-base); font-weight: 600;
  border-radius: var(--radius-md); color: var(--color-text);
  transition: background var(--transition-fast);
}
.sz-nav-drawer__link:hover, .sz-nav-drawer__link.is-active {
  background: var(--color-bg-alt); color: var(--color-primary);
}
.sz-nav-overlay {
  position: fixed; inset: 0; background: rgba(20,36,51,.4);
  z-index: calc(var(--z-modal) - 1); opacity: 0; pointer-events: none;
  transition: opacity var(--transition-slow);
}
.sz-nav-overlay.is-visible { opacity: 1; pointer-events: all; }

@media (max-width: 900px) {
  .sz-nav__links { display: none; }
  .sz-nav__actions .sz-btn { display: none; }
  .sz-nav__toggle { display: flex; }
}

/* ── 8. Hero ─────────────────────────────────────────────────────── */
.sz-hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--hero-gradient);
  padding: var(--space-16) var(--container-padding);
  text-align: center; position: relative; overflow: hidden;
}
.sz-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,99,33,.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 20% 70%, rgba(37,92,122,.20) 0%, transparent 70%);
  pointer-events: none;
}
.sz-hero__eyebrow {
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,.50);
  margin-bottom: var(--space-5);
}
.sz-hero__title {
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-hero); color: #fff;
  line-height: 0.95; margin-bottom: var(--space-6);
}
.sz-hero__title em {
  font-style: italic; font-family: var(--font-editorial);
  color: var(--apricot-heat); display: block; font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 4.5rem); line-height: 1.1;
}
.sz-hero__sub {
  font-family: var(--font-editorial); font-style: italic;
  font-size: var(--text-xl); color: rgba(255,255,255,.70);
  max-width: 520px; margin: 0 auto var(--space-10);
  line-height: 1.5;
}
.sz-hero__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: center; margin-bottom: var(--space-12);
}
.sz-hero__stats {
  display: flex; gap: var(--space-8); align-items: center;
  color: rgba(255,255,255,.45); font-size: var(--text-sm);
}
.sz-hero__stat span { font-family: var(--font-headline); font-weight: 900; font-size: var(--text-2xl); color: rgba(255,255,255,.80); display: block; }
.sz-hero__stat-sep { color: rgba(255,255,255,.20); }

/* ── 9. Come funziona ────────────────────────────────────────────── */
.sz-how { background: var(--color-bg); }
.sz-how__title { text-align: center; font-size: var(--text-3xl); margin-bottom: var(--space-2); }
.sz-how__sub { text-align: center; margin-bottom: var(--space-12); }
.sz-step { text-align: center; padding: var(--space-6); }
.sz-step__num {
  font-family: var(--font-headline); font-weight: 900;
  font-size: clamp(4rem, 10vw, 7rem); color: var(--sand-border);
  line-height: 1; margin-bottom: var(--space-3);
}
.sz-step h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.sz-step p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.6; }

/* ── 10. Mission Cards ───────────────────────────────────────────── */
.sz-mc {
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-surface);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.sz-mc:hover { transform: translateY(-4px); box-shadow: var(--shadow-raised); }
.sz-mc--done { outline: 2px solid var(--color-success); outline-offset: -2px; }

/* Category head gradients */
.sz-mc__head {
  height: 140px; display: flex; align-items: flex-start; justify-content: flex-end;
  padding: var(--space-4); position: relative; overflow: hidden;
}
.sz-mc--coraggio .sz-mc__head      { background: linear-gradient(135deg, #7a1a0a, #c0391a); }
.sz-mc--lentezza .sz-mc__head      { background: linear-gradient(135deg, #1a3a1a, #2d5e2d); }
.sz-mc--meraviglia .sz-mc__head    { background: linear-gradient(135deg, #1e2a5f, #3a4a9e); }
.sz-mc--insieme .sz-mc__head       { background: linear-gradient(135deg, #3a1a2a, #6a2d4a); }
.sz-mc--memoria .sz-mc__head       { background: linear-gradient(135deg, #2a1a3a, #4a2d5a); }
.sz-mc--estate-italiana .sz-mc__head { background: linear-gradient(135deg, #4a1a0a, #7a2d0a); }

.sz-mc__gradi {
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-lg); color: var(--summer-yellow);
  background: rgba(0,0,0,.20); border-radius: var(--radius-full);
  padding: 0.2em 0.6em; line-height: 1;
}
.sz-mc--done .sz-mc__head::after {
  content: '✓'; position: absolute; top: var(--space-3); left: var(--space-4);
  font-size: var(--text-xl); color: var(--color-success);
  background: rgba(22,163,74,.15); border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; font-weight: 900;
}
.sz-mc__body {
  padding: var(--space-5); flex: 1;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.sz-mc__cat {
  font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-light);
}
.sz-mc__title {
  font-family: var(--font-headline); font-size: var(--text-base);
  font-weight: 800; line-height: 1.25; color: var(--color-text);
}
.sz-mc--done .sz-mc__title { color: var(--color-text-muted); }
.sz-mc__quote {
  font-family: var(--font-body); font-style: italic;
  font-size: var(--text-sm); color: #52525b;
  line-height: 1.7; margin-top: auto;
  padding-top: var(--space-2);
  border-left: 2px solid var(--color-primary);
  padding-left: var(--space-3);
  opacity: 0.85;
}
.sz-mc__diff {
  display: inline-block; font-size: var(--text-xs); font-weight: 700;
  padding: 0.2em 0.7em; border-radius: var(--radius-full);
  align-self: flex-start; margin-top: var(--space-2);
}
.sz-mc__diff--leggero { background: rgba(34,197,94,.1); color: #16a34a; }
.sz-mc__diff--medio { background: rgba(245,158,11,.1); color: #b45309; }
.sz-mc__diff--grande { background: rgba(239,68,68,.1); color: #dc2626; }
.sz-mc__footer {
  padding: var(--space-3) var(--space-5); border-top: 1px solid var(--color-border);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-2);
}
.sz-mc__check {
  font-size: var(--text-xs); font-weight: 700; color: var(--color-text-muted);
  padding: 0.4em 0.9em; border-radius: var(--radius-full);
  border: 1px solid var(--color-border); transition: all var(--transition-fast);
}
.sz-mc__check:hover { background: var(--color-bg-alt); }
.sz-mc__check--done { color: var(--color-success); border-color: var(--color-success); background: rgba(34,197,94,.06); }
.sz-mc__detail {
  font-size: var(--text-xs); font-weight: 700; color: var(--color-primary);
  padding: 0.4em 0.9em; border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.sz-mc__detail:hover { background: rgba(255,99,33,.06); }

/* ── 11. Filter bar ──────────────────────────────────────────────── */
.sz-filters { margin-bottom: var(--space-10); display: flex; flex-direction: column; gap: var(--space-4); }
.sz-filters__random {
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  font-size: var(--text-lg); padding: 1em 2em; border-radius: var(--radius-xl);
  background: var(--color-primary); color: #fff; font-family: var(--font-headline); font-weight: 700;
  box-shadow: var(--shadow-orange-xl); border: none; cursor: pointer; width: 100%;
  animation: pulse-orange 3s ease-in-out infinite;
  transition: transform var(--transition-base);
}
.sz-filters__random:hover { transform: translateY(-2px); animation-play-state: paused; }
.sz-filters__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.sz-filters__selects { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.sz-select {
  min-width: 140px; flex: 1;
  border-radius: var(--radius-full); font-size: var(--text-sm);
  border: 1.5px solid var(--color-border-strong);
  padding: 0.6em 2.5em 0.6em 1.2em; background: var(--color-surface);
  color: var(--color-text); cursor: pointer;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1em center;
}
.sz-select:focus { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.sz-filters__count { font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 600; }

@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 8px 24px rgba(255,99,33,.30); }
  50%       { box-shadow: 0 8px 40px rgba(255,99,33,.50), 0 0 0 8px rgba(255,99,33,.07); }
}

/* ── 12. Random Reveal (fullscreen) ──────────────────────────────── */
.sz-random-reveal {
  position: fixed; inset: 0; z-index: var(--z-modal);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-slow);
}
.sz-random-reveal.is-open { opacity: 1; pointer-events: all; }
.sz-reveal__bg {
  position: absolute; inset: 0; background: var(--night-navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: var(--space-12) var(--space-8); text-align: center;
  overflow-y: auto;
}
.sz-reveal__close {
  position: absolute; top: var(--space-6); right: var(--space-6);
  color: rgba(255,255,255,.40); font-size: var(--text-xl);
  padding: var(--space-2); border-radius: 50%;
  transition: color var(--transition-fast);
}
.sz-reveal__close:hover { color: rgba(255,255,255,.80); }
.sz-reveal__inner { max-width: 560px; }
.sz-reveal__cat {
  font-family: var(--font-editorial); font-style: italic;
  font-size: var(--text-base); color: rgba(255,255,255,.45);
  margin-bottom: var(--space-6); letter-spacing: 0.04em;
}
.sz-reveal__title {
  font-family: var(--font-headline); font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem); color: #fff;
  line-height: 1.05; margin-bottom: var(--space-4);
}
.sz-reveal__title--animate {
  animation: reveal-mission 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes reveal-mission {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sz-reveal__quote {
  font-family: var(--font-editorial); font-style: italic;
  font-size: var(--text-lg); color: var(--apricot-heat);
  margin-bottom: var(--space-4); line-height: 1.5;
}
.sz-reveal__desc {
  font-size: var(--text-base); color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: var(--space-8);
}
.sz-reveal__meta {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-4); margin-bottom: var(--space-8);
}
.sz-reveal__gradi {
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-2xl); color: var(--summer-yellow);
}
.sz-reveal__diff {
  font-size: var(--text-xs); font-weight: 700;
  padding: 0.3em 0.9em; border-radius: var(--radius-full);
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.70);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sz-reveal__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center;
}
.sz-reveal__add {
  background: var(--color-primary); color: #fff;
  padding: 0.75em 1.75em; border-radius: var(--radius-full);
  font-family: var(--font-headline); font-weight: 700;
  font-size: var(--text-base); border: none; cursor: pointer;
  box-shadow: var(--shadow-orange); transition: all var(--transition-base);
}
.sz-reveal__add:hover { background: #e55016; transform: translateY(-1px); }
.sz-reveal__add:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.sz-reveal__another {
  background: transparent; color: rgba(255,255,255,.65);
  padding: 0.75em 1.75em; border-radius: var(--radius-full);
  font-family: var(--font-headline); font-weight: 700;
  font-size: var(--text-base); border: 1px solid rgba(255,255,255,.20);
  cursor: pointer; transition: all var(--transition-base);
}
.sz-reveal__another:hover { color: #fff; border-color: rgba(255,255,255,.50); }

/* ── 13. Missione del giorno ─────────────────────────────────────── */
.sz-mdd-section { background: var(--color-bg-alt); }
.sz-mdd-section__eyebrow {
  text-align: center; font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-primary); font-weight: 700; margin-bottom: var(--space-8);
}
.sz-mdd {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card); background: var(--color-surface);
  padding: var(--space-10) var(--space-8); max-width: 640px; margin: 0 auto;
  text-align: center;
}
.sz-mdd__eyebrow {
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--color-primary); font-weight: 700;
  margin-bottom: var(--space-3);
}
.sz-mdd__cat { font-size: var(--text-sm); color: var(--color-text-light); margin-bottom: var(--space-4); }
.sz-mdd__title {
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-3xl); line-height: 1.1; margin-bottom: var(--space-4);
}
.sz-mdd__quote {
  font-family: var(--font-editorial); font-style: italic;
  font-size: var(--text-lg); color: var(--color-text-muted);
  line-height: 1.5; margin-bottom: var(--space-4);
}
.sz-mdd__desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-8); }
.sz-mdd__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

/* ── 14. Hall of Summer ──────────────────────────────────────────── */
.sz-hall { background: var(--night-navy); color: #fff; }
.sz-hall__title {
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-3xl); color: #fff;
  margin-bottom: var(--space-2);
}
.sz-hall__sub {
  font-family: var(--font-editorial); font-style: italic;
  font-size: var(--text-lg); color: rgba(255,255,255,.50);
  margin-bottom: var(--space-12);
}
.sz-hall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.sz-hall-item {
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.sz-hall-item--featured { grid-column: span 2; }
.sz-hall-item__cat {
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--apricot-heat); font-weight: 700;
}
.sz-hall-item__quote {
  font-family: var(--font-editorial); font-style: italic;
  font-size: var(--text-xl); color: rgba(255,255,255,.85);
  line-height: 1.4; flex: 1;
}
.sz-hall-item--featured .sz-hall-item__quote { font-size: var(--text-2xl); }
.sz-hall-item__author { font-size: var(--text-xs); color: rgba(255,255,255,.35); font-weight: 600; }
@media (max-width: 768px) {
  .sz-hall-grid { grid-template-columns: 1fr; }
  .sz-hall-item--featured { grid-column: span 1; }
}

/* ── 15. Playlist ────────────────────────────────────────────────── */
.sz-playlist { background: var(--color-bg); }
.sz-playlist__title { font-size: var(--text-3xl); margin-bottom: var(--space-2); }
.sz-playlist__sub { margin-bottom: var(--space-8); }
.sz-playlist iframe { border-radius: var(--radius-lg); }

/* ── 16. FAQ Accordion ───────────────────────────────────────────── */
.sz-faq { background: var(--color-bg-alt); }
.sz-faq__title { font-size: var(--text-3xl); text-align: center; margin-bottom: var(--space-10); }
.sz-faq-item { border-bottom: 1px solid var(--color-border); }
.sz-faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-5) 0; cursor: pointer;
  font-family: var(--font-headline); font-weight: 700;
  font-size: var(--text-base); list-style: none;
}
.sz-faq-item summary::-webkit-details-marker { display: none; }
.sz-faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--color-primary);
  line-height: 1; flex-shrink: 0;
  transition: transform var(--transition-base);
}
.sz-faq-item[open] summary::after { content: '−'; }
.sz-faq-item__a {
  padding: 0 0 var(--space-5);
  color: var(--color-text-muted); line-height: 1.7;
  font-size: var(--text-sm);
}

/* ── 17. Tracker / Diario ────────────────────────────────────────── */
.sz-tracker__header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8);
  padding: var(--space-6); background: var(--color-surface);
  border-radius: var(--radius-xl); border: 1px solid var(--color-border);
}
.sz-tracker__count {
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-4xl); color: var(--color-primary); line-height: 1;
}
.sz-tracker__label { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-1); }
.sz-tracker__bar { height: 6px; background: var(--color-border); border-radius: 3px; margin-top: var(--space-3); }
.sz-tracker__bar-fill { height: 100%; background: var(--color-primary); border-radius: 3px; transition: width 0.6s ease; }
.sz-tracker__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.sz-tracker-filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-6); }
.sz-tracker-list { display: flex; flex-direction: column; gap: var(--space-2); }

.sz-tracker-entry {
  background: var(--color-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-5); transition: all var(--transition-fast);
}
.sz-tracker-entry--done { background: rgba(22,163,74,.04); border-color: rgba(22,163,74,.25); }
.sz-tracker-entry__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-2);
}
.sz-tracker-entry__cat { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-light); font-weight: 700; }
.sz-tracker-entry__date { font-size: var(--text-xs); color: var(--color-text-light); }
.sz-tracker-entry__title { font-family: var(--font-headline); font-weight: 800; font-size: var(--text-base); margin-bottom: var(--space-3); }
.sz-tracker-entry__done-badge { color: var(--color-success); font-size: var(--text-sm); font-weight: 700; }
.sz-tracker-entry__mood { display: flex; gap: var(--space-2); margin-bottom: var(--space-3); flex-wrap: wrap; }
.sz-mood-btn {
  font-size: 1.25rem; padding: 0.3em; border-radius: var(--radius-sm);
  background: var(--color-bg-alt); border: 1.5px solid transparent;
  transition: all var(--transition-fast); line-height: 1;
}
.sz-mood-btn.is-selected { border-color: var(--color-primary); background: rgba(255,99,33,.08); }
.sz-tracker-entry__note {
  width: 100%; min-height: 56px; resize: vertical;
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-3); font-size: var(--text-sm);
  color: var(--color-text); background: var(--color-bg);
  transition: border-color var(--transition-fast);
}
.sz-tracker-entry__note:focus { outline: none; border-color: var(--color-primary); }
.sz-tracker-entry__note::placeholder { color: var(--color-text-light); font-style: italic; }

/* Missioni non ancora completate (nella lista tracker) */
.sz-tracker-pending {
  background: var(--color-bg-alt); border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); transition: all var(--transition-fast);
}
.sz-tracker-pending:hover { background: var(--color-surface); box-shadow: var(--shadow-sm); }
.sz-tracker-pending__info { flex: 1; min-width: 0; }
.sz-tracker-pending__cat { font-size: var(--text-xs); color: var(--color-text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.sz-tracker-pending__title { font-family: var(--font-headline); font-weight: 700; font-size: var(--text-sm); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sz-tracker-pending__add { flex-shrink: 0; }

/* ── 18. Live Page ───────────────────────────────────────────────── */
.sz-live-hero {
  min-height: 80vh; background: var(--night-navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: var(--space-16) var(--container-padding);
  text-align: center; position: relative; overflow: hidden;
}
.sz-live-hero__watermark {
  position: absolute; font-family: var(--font-headline); font-weight: 900;
  font-size: clamp(8rem, 25vw, 18rem); color: rgba(255,255,255,.04);
  line-height: 1; user-select: none; pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.sz-live-hero__badge {
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--color-primary);
  font-weight: 700; background: rgba(255,99,33,.12);
  padding: 0.4em 1em; border-radius: var(--radius-full);
  margin-bottom: var(--space-6); display: inline-block;
}
.sz-live-hero__numero {
  font-family: var(--font-headline); font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem); color: rgba(255,255,255,.15);
  line-height: 1; margin-bottom: var(--space-4);
}
.sz-live-hero__status {
  font-size: var(--text-lg); color: rgba(255,255,255,.60);
  margin-bottom: var(--space-8);
}
.sz-live-hero__status strong { color: rgba(255,255,255,.85); }

/* Countdown */
.sz-countdown {
  display: flex; align-items: center; gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.sz-countdown__unit { text-align: center; }
.sz-countdown__num {
  font-family: var(--font-headline); font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5rem); color: var(--apricot-heat);
  line-height: 1; display: block;
}
.sz-countdown__label {
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,.35);
}
.sz-countdown__sep {
  font-family: var(--font-headline); font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem); color: rgba(255,255,255,.20);
  padding-bottom: 0.4em;
}

/* Live reveal */
.sz-live-reveal {
  max-width: 520px;
  animation: sz-reveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.sz-live-reveal__title {
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-3xl); color: #fff;
  margin-bottom: var(--space-3);
}
.sz-live-reveal__desc {
  font-size: var(--text-base); color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: var(--space-6);
}
.sz-live-reveal__quote {
  font-family: var(--font-editorial); font-style: italic;
  font-size: var(--text-lg); color: var(--apricot-heat);
  margin-bottom: var(--space-6);
}
@keyframes sz-reveal {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Live past missions */
.sz-live-past { background: var(--color-bg-alt); }
.sz-live-past__title { font-size: var(--text-2xl); margin-bottom: var(--space-8); }
.sz-live-past-item {
  padding: var(--space-5); background: var(--color-surface);
  border-radius: var(--radius-lg); border: 1px solid var(--color-border);
  display: flex; gap: var(--space-4); align-items: flex-start;
}
.sz-live-past-item__num {
  font-family: var(--font-headline); font-weight: 900;
  font-size: var(--text-2xl); color: var(--color-text-light);
  flex-shrink: 0; min-width: 48px;
}
.sz-live-past-item__title { font-weight: 700; margin-bottom: var(--space-1); }
.sz-live-past-item__date { font-size: var(--text-xs); color: var(--color-text-light); }

/* ── 19. Attestato ───────────────────────────────────────────────── */
.sz-attestato-wrap {
  max-width: 640px; margin: 0 auto;
  text-align: center;
}
.sz-attestato-wrap h1 { font-size: var(--text-4xl); margin-bottom: var(--space-2); }
.sz-attestato__intro {
  margin-bottom: var(--space-10);
}
.sz-attestato__form {
  display: flex; flex-direction: column; gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.sz-attestato__input {
  width: 100%; padding: 0.85em 1.2em;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-lg); font-size: var(--text-base);
  background: var(--color-surface); color: var(--color-text);
  transition: border-color var(--transition-fast);
}
.sz-attestato__input:focus { outline: none; border-color: var(--color-primary); }
.sz-attestato__preview { margin-top: var(--space-8); }
.sz-attestato__preview canvas { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-modal); }
.sz-attestato__download { margin-top: var(--space-5); }

/* ── 20. Toast ───────────────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  z-index: var(--z-toast); display: flex; flex-direction: column;
  gap: var(--space-2); pointer-events: none;
}
.sz-toast {
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-lg);
  font-size: var(--text-sm); font-weight: 600;
  box-shadow: var(--shadow-modal); pointer-events: all;
  opacity: 0; transform: translateY(8px) scale(0.96);
  transition: all var(--transition-base);
}
.sz-toast.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.sz-toast--success { background: var(--night-navy); color: #fff; }
.sz-toast--info    { background: var(--night-navy); color: #fff; }
.sz-toast--warning { background: var(--color-warning); color: #fff; }
.sz-toast--error   { background: var(--color-error); color: #fff; }

/* ── 21. Footer ──────────────────────────────────────────────────── */
.sz-footer {
  background: var(--night-navy); color: rgba(255,255,255,.55);
  padding: var(--space-16) 0 var(--space-8);
}
.sz-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10); margin-bottom: var(--space-12);
}
.sz-footer__brand { color: #fff; font-family: var(--font-headline); font-weight: 900; font-size: var(--text-xl); margin-bottom: var(--space-3); }
.sz-footer__tagline { font-family: var(--font-editorial); font-style: italic; font-size: var(--text-base); line-height: 1.5; }
.sz-footer__col-title { color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 0.1em; font-size: var(--text-xs); font-weight: 700; margin-bottom: var(--space-4); }
.sz-footer__links { display: flex; flex-direction: column; gap: var(--space-2); }
.sz-footer__link { color: rgba(255,255,255,.55); font-size: var(--text-sm); transition: color var(--transition-fast); }
.sz-footer__link:hover { color: rgba(255,255,255,.90); }
.sz-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--space-6); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); }
.sz-footer__copy { font-size: var(--text-xs); }
.sz-footer__hash { font-family: var(--font-headline); font-weight: 700; color: var(--apricot-heat); font-size: var(--text-sm); }
@media (max-width: 768px) {
  .sz-footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ── 22. Utility ─────────────────────────────────────────────────── */
.sz-divider { height: 1px; background: var(--color-border); margin: var(--space-12) 0; }
.sz-text-center { text-align: center; }
.sz-mt-2  { margin-top: var(--space-2); }
.sz-mt-4  { margin-top: var(--space-4); }
.sz-mt-6  { margin-top: var(--space-6); }
.sz-mt-8  { margin-top: var(--space-8); }
.sz-mb-4  { margin-bottom: var(--space-4); }
.sz-mb-8  { margin-bottom: var(--space-8); }
.sz-mb-12 { margin-bottom: var(--space-12); }
.sz-empty-state { text-align: center; padding: var(--space-16) var(--space-4); color: var(--color-text-muted); }

/* ── 23. Annunci ─────────────────────────────────────────────────── */


/* Badge tipo */
.sz-ann-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  line-height: 1.4;
  white-space: nowrap;
}
.sz-ann-badge--novita        { background: var(--color-primary); color: #fff; }
.sz-ann-badge--aggiornamento { background: var(--night-navy); color: #fff; }
.sz-ann-badge--comunicazione { background: var(--color-text-muted); color: #fff; }

/* Banner pinned (sopra hero) */
.sz-ann-banner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--container-padding);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  flex-wrap: wrap;
}
.sz-ann-banner__text {
  flex: 1;
  min-width: 0;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sz-ann-banner__link {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.sz-ann-banner__link:hover { text-decoration: underline; }
.sz-ann-banner__close {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1;
  padding: var(--space-1);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.sz-ann-banner__close:hover { color: var(--color-text); }

/* Card archivio */
.sz-ann-card {
  padding: var(--space-8);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: box-shadow var(--transition-base);
}
.sz-ann-card:hover { box-shadow: var(--shadow-md); }
.sz-ann-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.sz-ann-card__pin {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
}
.sz-ann-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-left: auto;
}
.sz-ann-card__title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.sz-ann-card__sommario {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}
.sz-ann-card__corpo {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* Lista archivio */
.sz-ann-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (max-width: 600px) {
  .sz-ann-banner__text { white-space: normal; }
}
.sz-empty-state h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); color: var(--color-text); }

/* ── 24. Responsive ──────────────────────────────────────────────── */

/* Tablet (641–1024px) */
@media (max-width: 1024px) {
  :root { --container-padding: var(--space-5); }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  :root { --container-padding: var(--space-4); }

  /* Section padding */
  .sz-section     { padding: var(--space-12) 0; }
  .sz-section--sm { padding: var(--space-8)  0; }
  .sz-section--lg { padding: var(--space-16) 0; }

  /* Hero */
  .sz-hero { padding: var(--space-12) var(--container-padding); }
  .sz-hero__title em { font-size: clamp(1.9rem, 9vw, 3rem); }
  .sz-hero__sub { font-size: var(--text-base); }
  .sz-hero__actions { flex-direction: column; align-items: stretch; }
  .sz-hero__actions .sz-btn { width: 100%; justify-content: center; }
  .sz-hero__stats {
    gap: var(--space-4); flex-wrap: wrap;
    justify-content: center;
  }
  .sz-hero__stat-sep { display: none; }
  .sz-hero__stats .sz-hero__stat { text-align: center; }

  /* How-it-works steps */
  .sz-step { padding: var(--space-4) var(--space-2); }

  /* Mission card head */
  .sz-mc__head { height: 100px; }

  /* Missione del giorno */
  .sz-mdd { padding: var(--space-8) var(--space-5); }
  .sz-mdd__actions { flex-direction: column; }
  .sz-mdd__actions .sz-btn { width: 100%; }

  /* Filter chips: horizontal scroll instead of wrap */
  .sz-filters__chips,
  .sz-tracker-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-2);
  }
  .sz-filters__chips::-webkit-scrollbar,
  .sz-tracker-filters::-webkit-scrollbar { display: none; }
  .sz-pill { flex-shrink: 0; }

  /* Random Mission filters button */
  .sz-filters__random { font-size: var(--text-base); padding: 0.9em 1.2em; }

  /* Random reveal fullscreen */
  .sz-reveal__bg { padding: var(--space-10) var(--space-5); }
  .sz-reveal__actions { flex-direction: column; align-items: stretch; }
  .sz-reveal__add,
  .sz-reveal__another { width: 100%; }

  /* Countdown */
  .sz-countdown { gap: var(--space-2); }
  .sz-countdown__sep { font-size: clamp(1.5rem, 5vw, 2.5rem); padding-bottom: 0.25em; }

  /* Live hero */
  .sz-live-hero { padding: var(--space-12) var(--container-padding); min-height: 65vh; }
  .sz-live-hero__status { font-size: var(--text-base); }

  /* Tracker header: stack vertically */
  .sz-tracker__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
  }
  .sz-tracker__header > div:last-child { align-self: stretch; text-align: left; }
  .sz-tracker__bar { width: 100% !important; max-width: 260px; }
  .sz-tracker__actions { width: 100%; }
  .sz-tracker__actions .sz-btn { flex: 1; justify-content: center; }

  /* Pending mission rows: stack */
  .sz-tracker-pending { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
  .sz-tracker-pending__add { align-self: stretch; }
  .sz-tracker-pending__title { white-space: normal; }

  /* Attestato */
  .sz-attestato-wrap h1 { font-size: var(--text-3xl); }

  /* Toast: full-width */
  #toast-container {
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
  }
  .sz-toast { text-align: center; }

  /* Footer */
  .sz-footer { padding: var(--space-10) 0 var(--space-6); }

  /* Annunci card */
  .sz-ann-card { padding: var(--space-5); }

  /* Hall of Summer: tighter inner padding */
  .sz-hall-item { padding: var(--space-5); }
}
