/* ════════════════════════════════════════════════════════════════════
   STOP GHOSTING · DESIGN SYSTEM v2
   Editorial / Calm / Trustworthy
   ════════════════════════════════════════════════════════════════════ */

/* ──── RESET & BASE ──── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;     /* offset nav fissa per anchor links */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══ View Transitions API ═══ */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: fade-out 280ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
::view-transition-new(root) {
  animation: fade-in 380ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
}
@keyframes fade-out {
  to { opacity: 0; transform: translateY(-8px); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(12px) scale(0.998); }
  to { opacity: 1; transform: none; }
}
/* Mantiene il logo della nav stabile durante il transition */
.nav-logo { view-transition-name: brand-logo; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
body { min-height:100vh; overflow-x:hidden; }
img, svg { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
input, textarea { font:inherit; color:inherit; }

/* ──── TOKENS · LIGHT (default) ──── */
:root {
  /* Cromatica calda da rivista */
  --bg:        #FAF6EC;          /* avorio caldo */
  --bg-soft:   #F2EBDB;
  --bg-card:   #FFFAEC;
  --ink:       #1A1612;          /* nero inchiostro */
  --ink-soft:  #3A322A;
  --muted:     #6B604F;          /* scurito da #7A6E5E per contrast AA (4.6:1 su --bg) */
  --ink-muted: var(--muted);     /* alias usato in alcuni componenti */
  --line:      #D9CFB9;
  --rule:      #D9CFB9;          /* alias semantico per bordi/regole */
  --rust:      #A14525;          /* scurito da #B85530 per AA testo (5.1:1 su --bg) */
  --rust-soft: #D87A55;
  --rust-tint: rgba(161,69,37,0.08);
  --paper-tint:rgba(218,200,160,0.10);

  /* Tipografia */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body:    'Newsreader', Georgia, serif;
  --f-ui:      'Inter', system-ui, sans-serif;

  /* Spazi */
  --measure: 64ch;          /* larghezza ottimale lettura */
  --pad-x: clamp(20px, 5vw, 56px);
  --pad-section: clamp(80px, 12vh, 160px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ──── TOKENS · DARK ──── */
[data-theme="dark"] {
  --bg:        #0F0D0A;          /* nero notturno soft */
  --bg-soft:   #16130E;
  --bg-card:   #1B1813;
  --ink:       #F2EBD9;          /* crema chiaro */
  --ink-soft:  #D6CDB6;          /* alzato per leggibilità body sub */
  --muted:     #B5AB94;          /* alzato sensibilmente · era #837A68 troppo basso su nero */
  --ink-muted: var(--muted);
  --line:      #3A342A;
  --rule:      #3A342A;
  --rust:      #E08A65;          /* accent ruggine più caldo e visibile in dark */
  --rust-soft: #F0A483;
  --rust-tint: rgba(224,138,101,0.12);
  --paper-tint:rgba(50,42,30,0.40);
}

/* ──── FOCUS VISIBILE GLOBALE (WCAG 2.4.7) ────
   Anello rust attorno a tutti gli interattivi quando navighi da tastiera.
   Non si vede col mouse grazie a :focus-visible. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ──── ARTICLE H3 — era orfano, cadeva su Times bold del browser ──── */
.article-h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 420;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 36px 0 14px;
}

/* ──── EFFETTI ATMOSFERICI — disabilitati su touch (perf + jank) ──── */
@media (hover: none) and (pointer: coarse) {
  .light-leak,
  .paper-grain,
  .particles { display: none; }
  /* Hero photo: niente parallax su mobile (will-change costa video RAM) */
  .hero-photo img { will-change: auto; transform: none; }
}

/* ──── BODY ──── */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;
  font-feature-settings: "ss01", "kern", "liga";
  transition: background .6s var(--ease-out), color .6s var(--ease-out);
}

/* ──── PAPER GRAIN (full screen, fixed) ──── */
.paper-grain {
  position: fixed; inset: 0; z-index: 1; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.10;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .paper-grain { opacity: 0.18; mix-blend-mode: screen; }

/* ──── LIGHT LEAK (drift slow) ──── */
.light-leak {
  position: fixed; inset: 0; z-index: 0; pointer-events:none;
  background:
    radial-gradient(ellipse 700px 500px at 12% 18%, var(--rust-tint), transparent 70%),
    radial-gradient(ellipse 600px 600px at 88% 82%, var(--paper-tint), transparent 70%);
  animation: drift 28s linear infinite alternate;
  will-change: transform;
}
@keyframes drift {
  0% { transform: translate3d(-2%, -1%, 0); }
  100% { transform: translate3d(2%, 1%, 0); }
}
@media (prefers-reduced-motion: reduce) { .light-leak { animation: none; } }

/* ──── CUSTOM CURSOR ──── */
.cursor-dot, .cursor-ring {
  position: fixed; top:0; left:0; pointer-events:none; z-index:9999;
  transform: translate(-50%, -50%);
  border-radius:50%;
}
.cursor-dot { width:6px; height:6px; background:var(--rust); transition:transform .15s var(--ease-out); }
.cursor-ring {
  width:34px; height:34px;
  border:1.5px solid var(--rust);
  opacity:.45;
  transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .3s var(--ease-out), border-color .3s var(--ease-out);
}
.cursor-ring.hover { width:64px; height:64px; opacity:.75; background:var(--rust-tint); }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ──── READING PROGRESS BAR ──── */
.read-progress {
  position: fixed; top:0; left:0; height:2px; width:0%;
  background: var(--rust); z-index:1000; transition: width .1s linear;
}

/* ──── SELECTION ──── */
::selection { background: var(--rust); color: var(--bg); }

/* ──── NAV ──── */
.nav {
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  padding: 24px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  transition: transform .35s var(--ease-out), background .3s, backdrop-filter .3s;
  will-change: transform;
}
.nav.nav-hidden { transform: translateY(-110%); }
.nav > * { pointer-events: auto; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { height: 28px; width: auto; }
.nav-logo-text {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 14, "SOFT" 30;
}

.nav-menu {
  display: flex; align-items: center; gap: 32px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-menu a {
  position: relative;
  color: var(--ink-soft);
  transition: color .25s var(--ease-out);
}
.nav-menu a::after {
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:1px;
  background: var(--rust); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-substack {
  font-family: var(--f-ui);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  transition: color .3s var(--ease-out);
  position: relative;
}
.nav-substack::after {
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:1px;
  background: var(--rust); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-substack:hover { color: var(--ink); }
.nav-substack:hover::after { transform: scaleX(1); }

.theme-toggle {
  width: 44px; height: 44px; /* WCAG 2.5.5: touch target min 44x44 */
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { border-color: var(--rust); background: var(--rust-tint); }
.theme-toggle svg {
  width: 16px; height: 16px; stroke: var(--ink); fill:none; stroke-width:1.5;
  position: absolute; top: 50%; left: 50%;
  transform-origin: center;
  transition: transform .55s var(--ease-out), opacity .35s var(--ease-out);
}
/* Default (light theme): show moon */
.theme-toggle .icon-moon {
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  opacity: 1;
}
.theme-toggle .icon-sun {
  transform: translate(-50%, -50%) rotate(90deg) scale(0.4);
  opacity: 0;
}
/* Dark theme: show sun */
[data-theme="dark"] .theme-toggle .icon-moon {
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.4);
  opacity: 0;
}
[data-theme="dark"] .theme-toggle .icon-sun {
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  opacity: 1;
}

@media (max-width: 720px) {
  .nav-menu { display: none; }
}

/* ──── MAIN CONTAINER ──── */
.wrap {
  position: relative; z-index: 2;
}

/* ──── HERO v3 · accoglienza scannabile ──── */
.hero {
  min-height: 100vh;
  padding: 140px var(--pad-x) 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}

/* ──── TIMBRO "vol · zero" · HTML/CSS pure ──── */
.stamp {
  position: absolute;
  top: 132px;
  right: 64px;
  width: 118px; height: 118px;
  z-index: 6;
  border: 2.5px solid var(--rust);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  transform: rotate(-9deg);
  opacity: 0.88;
  pointer-events: none;
  text-align: center;
  animation: stampSettle 1.6s var(--ease-out) .5s both;
  background: transparent;
}
.stamp::before {
  /* cerchio interno decorativo */
  content:'';
  position: absolute; inset: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.4;
}
.stamp-volume, .stamp-date {
  font-family: var(--f-ui);
  font-size: 9.5px;
  letter-spacing: 0.20em;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  position: relative; z-index: 2;
}
.stamp-zero {
  font-family: var(--f-display);
  font-size: 50px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  margin: 6px 0;
  position: relative; z-index: 2;
}
.stamp-date { opacity: 0.85; font-size: 8.5px; }
@media (max-width: 1100px) {
  .stamp { display: none; }
}
.stamp svg {
  width: 100%; height: 100%;
  fill: var(--rust);
  filter: drop-shadow(0 1px 0 rgba(184,85,48,0.4));
}
.stamp text {
  font-family: var(--f-ui);
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: var(--rust);
}
@keyframes stampSettle {
  0%   { opacity: 0; transform: rotate(20deg) scale(2); }
  60%  { opacity: 0.95; transform: rotate(-15deg) scale(0.92); }
  100% { opacity: 0.85; transform: rotate(-12deg) scale(1); }
}
@media (max-width: 720px) {
  .stamp { width: 80px; height: 80px; top: 92px; }
}

/* ──── FRAMMENTO 1 · lettera di carta incollata ──── */
.fragment-letter {
  background: #FAF6EC;            /* avorio FISSO anche in dark mode */
  color: #1A1612;                  /* nero inchiostro fisso */
  padding: 56px 64px 48px;
  position: relative;
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 12px 32px rgba(0,0,0,0.18),
    0 24px 60px rgba(0,0,0,0.10);
  transform: rotate(-0.6deg);
  max-width: 760px;
  margin: 0 auto;
}
.fragment-letter::before {
  /* texture carta sopra il bg */
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.42 0 0 0 0 0.28 0 0 0 0.20 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
  border-radius: 2px;
}
/* tape-strip in alto */
.fragment-letter::after {
  content:'';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 110px; height: 26px;
  background: rgba(216,160,74,0.55);
  border: 1px solid rgba(120,80,30,0.18);
  border-radius: 1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.fragment-letter .fragment-tag {
  color: var(--rust);
  margin-bottom: 28px;
}
.fragment-letter .fragment-tag::before { background: var(--rust); }
.fragment-letter .fragment-text {
  color: #1A1612;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.fragment-letter .fragment-text::first-letter {
  color: var(--rust);
  font-weight: 400;
  font-style: italic;
}
.fragment-letter .fragment-text em {
  color: var(--rust);
  font-style: italic;
}
.fragment-letter .fragment-attribution {
  color: rgba(26,22,18,0.65);
  position: relative; z-index: 2;
}
.fragment-letter .fragment-attribution::before { color: var(--rust); }
.fragment-letter .fragment-attribution a { color: var(--rust); }
.fragment-letter .fragment-time {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,22,18,0.5);
  position: absolute;
  top: 22px; right: 28px;
  font-style: normal;
}
@media (max-width: 720px) {
  .fragment-letter { padding: 40px 28px 32px; }
}

/* ──── SPLITTER ICONS hand-drawn ──── */
.splitter-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  display: block;
}
.splitter-icon svg {
  width: 100%; height: 100%;
  stroke: var(--rust);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .5s var(--ease-out);
}
.splitter-card:hover .splitter-icon svg {
  transform: rotate(-4deg) scale(1.08);
}

/* ──── MINI BIO "Chi scrive" ──── */
.bio {
  padding: clamp(40px, 6vh, 60px) var(--pad-x);
  background: var(--bg);
  position: relative; z-index: 2;
  text-align: center;
}
.bio-card {
  display: inline-flex; flex-direction: column; align-items: center;
  max-width: 580px; margin: 0 auto;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.bio-glyph {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rust);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--bg-card);
}
.bio-glyph svg { width: 18px; height: 18px; stroke: var(--rust); fill: none; stroke-width: 1.5; }
.bio-line {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.bio-line strong {
  font-weight: 500;
  color: var(--ink);
  font-style: normal;
}
.bio-meta {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 6px;
}

/* ──── PULL-QUOTE virgolette FLOAT ──── */
.pullquote-major::before {
  animation: floatQuote 9s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes floatQuote {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); opacity: 0.10; }
  50%      { transform: translateX(-50%) translateY(-14px) rotate(-1deg); opacity: 0.13; }
}
@media (prefers-reduced-motion: reduce) {
  .pullquote-major::before { animation: none; }
  .stamp { animation: none; opacity: 0.85; transform: rotate(-12deg); }
}

/* ──── PARTICELLE FLUTTUANTI hero ──── */
.particles {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rust);
  opacity: 0;
  animation: float 14s linear infinite;
}
.particles span:nth-child(1) { left:8%;  animation-duration:18s; animation-delay:0s; width:3px; height:3px; }
.particles span:nth-child(2) { left:22%; animation-duration:22s; animation-delay:3s; width:5px; height:5px; opacity:.4; }
.particles span:nth-child(3) { left:38%; animation-duration:16s; animation-delay:6s; width:3px; height:3px; }
.particles span:nth-child(4) { left:55%; animation-duration:24s; animation-delay:1s; width:4px; height:4px; }
.particles span:nth-child(5) { left:70%; animation-duration:19s; animation-delay:4s; width:6px; height:6px; opacity:.3; }
.particles span:nth-child(6) { left:84%; animation-duration:21s; animation-delay:7s; width:3px; height:3px; }
.particles span:nth-child(7) { left:92%; animation-duration:17s; animation-delay:2s; width:4px; height:4px; }
@keyframes float {
  0%   { transform: translate3d(0, 105vh, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.45; }
  85%  { opacity: 0.45; }
  100% { transform: translate3d(20px, -10vh, 0) scale(1.1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .particles { display: none; } }

/* ──── MARQUEE: prossime uscite ──── */
.marquee {
  position: relative; z-index: 5;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
  background: var(--bg-soft);
  margin-top: 24px;
}
.marquee-track {
  display: flex; gap: 64px;
  width: max-content;
  animation: marquee 38s linear infinite;
  align-items: center;
}
.marquee-track > span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 16px;
}
.marquee-track > span::after {
  content:'·';
  color: var(--rust);
  font-size: 22px;
  margin-left: 16px;
}
.marquee-track .mq-tag {
  font-family: var(--f-ui);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  background: var(--rust-tint);
  padding: 4px 10px;
  border-radius: 999px;
  font-style: normal;
  margin-right: 16px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
/* WCAG 2.2.2: pausa marquee se l'utente preferisce ridurre il movimento */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ──── COUNTER live (next letter) ──── */
.next-letter {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin-top: 18px;
  padding: 8px 16px;
  background: var(--rust-tint);
  border-radius: 999px;
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--ink-soft);
}
.next-letter .nl-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rust);
  align-self: center;
  position: relative;
}
.next-letter .nl-pulse::before {
  content:''; position:absolute; inset:0;
  border-radius: 50%;
  background: var(--rust);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}
.next-letter strong {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* ──── PARALLAX hero photo ──── */
.hero-photo {
  position: relative;
}
.hero-photo img {
  transform: scale(1.04) translate3d(0, var(--parallax, 0), 0);
  transition: transform .1s linear;
  will-change: transform;
}

/* ──── MAGNETIC card ──── */
.excerpt-card {
  transform-origin: center;
  transform-style: preserve-3d;
}
.excerpt-card.tilt {
  transition: transform .2s var(--ease-out);
}
.hero-eyebrow {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content:''; display:inline-block; width:36px; height:1px;
  background: var(--rust);
}
.hero-h1 {
  font-family: var(--f-display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 56px;
  display: flex; flex-direction: column; gap: 0;
}
.hero-h1 .line { display:block; }
.hero-h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--rust);
  font-weight: 380;
}

/* ──── VALIDATE · "Non sei pazza. Non sei tu il problema." ──── */
.hero-validate {
  margin-bottom: 40px;
}
.validate-line {
  display: flex; flex-wrap: wrap; gap: 28px;
  font-family: var(--f-display);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.validate-line .word-mark:nth-child(1) { color: var(--ink); }
.validate-line .word-mark:nth-child(2) { color: var(--ink); }
.validate-strong {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.validate-strong strong {
  font-weight: 600;
  font-style: italic;
  color: var(--rust);
  position: relative;
  padding: 0 6px;
}
.validate-strong strong::before {
  content:''; position:absolute;
  left: 4px; right: 4px; bottom: 4px;
  height: 0.36em;
  background: var(--rust-tint);
  z-index: -1;
}

/* LEGACY (compat se esistono ancora) */
.hero-welcome {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-bottom: 48px;
  align-items: baseline;
}
.welcome-1, .welcome-2 {
  font-family: var(--f-display);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.welcome-2 .word-mark { color: var(--rust); }

/* Word mark · sottolineatura disegnata a mano in SVG */
.word-mark {
  position: relative;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2,6 Q40,2 80,6 T160,6 T198,4' fill='none' stroke='%23E08A65' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.32em;
  padding-bottom: 0.18em;
  animation: drawUnderline 1.4s var(--ease-out) forwards;
  animation-delay: calc(0.18s * var(--i, 1) + 0.4s);
  background-size: 0% 0.32em;
}
@keyframes drawUnderline {
  to { background-size: 100% 0.32em; }
}

/* ──── HERO H1 · multi-line ──── */
.hero-h1 .line:nth-child(1) {}
.hero-h1 .line:nth-child(2) em {
  display: inline-block;
  margin-left: 0;
}
.hero-h1 .line:nth-child(3) {}

/* ──── PROMISES · niente questo, niente quello (LEGACY) ──── */
.hero-promises {
  list-style: none;
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-promises li {
  font-family: var(--f-body);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-promises li::before {
  content:'×'; color: var(--rust);
  font-family: var(--f-display);
  font-size: 1.4em; line-height: 0.6;
  margin-right: -2px;
}
.hero-promises li em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

/* ──── CLOSING · frase finale forte ──── */
.hero-closing {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 380;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 40px;
}
.hero-closing strong {
  font-weight: 500;
  font-style: italic;
  color: var(--rust);
  font-size: 1.15em;
  position: relative;
  padding: 0 4px;
}
.hero-closing .dot {
  color: var(--rust);
  margin: 0 8px;
}
.cursor-blink {
  display: inline-block;
  color: var(--rust);
  animation: blink 1.05s steps(2) infinite;
  font-weight: 200;
  margin-left: 2px;
  font-family: var(--f-body);
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ──── STAGGER REVEAL ──── */
.stagger {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  animation: stagger-in 1.1s var(--ease-out) forwards;
  animation-delay: calc(0.13s * var(--i, 1));
}
@keyframes stagger-in {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .stagger { opacity: 1; transform: none; filter: none; animation: none; }
  .word-mark { background-size: 100% 0.32em; animation: none; }
  .cursor-blink { animation: none; }
}

/* CTA primario */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-ui);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-primary svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.btn-primary:hover { background: var(--rust); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(4px); }

/* CTA secondario */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 0;
  color: var(--ink);
  font-family: var(--f-ui);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}
.btn-ghost::after {
  content:''; position:absolute; left:0; right:0; bottom:8px; height:1px;
  background: var(--ink); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.btn-ghost:hover::after { transform: scaleX(0.4); }

/* Hero scroll hint */
.hero-scroll {
  position: absolute; bottom: 48px; left: var(--pad-x);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-ui); font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll svg { width:16px; height:16px; }
@keyframes bob {
  0%,100% { transform: translateY(0); opacity:.6; }
  50%     { transform: translateY(6px); opacity:1; }
}

/* ──── SECTION ──── */
.section { padding: var(--pad-section) var(--pad-x); position: relative; }
.section-label {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.section-label-num {
  display: inline-block; min-width: 32px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px; font-weight: 400;
  color: var(--rust);
  letter-spacing: 0;
  text-transform: none;
}
.section-h2 {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 56px;
}
.section-h2 em { font-style: italic; color: var(--rust); }

/* ──── FRAMMENTO INSTANT · lettura immediata post-hero ──── */
.fragment {
  padding: clamp(50px, 8vh, 90px) var(--pad-x);
  position: relative;
  z-index: 2;
  background: var(--bg);
}
.fragment-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.fragment-tag {
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.fragment-tag::before {
  content:''; width: 28px; height: 1px; background: var(--rust);
}
.fragment-text {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fragment-text::first-letter {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  margin: 8px 18px 0 0;
  color: var(--rust);
}
.fragment-text em {
  font-style: italic;
  color: var(--rust);
  font-weight: 400;
}
.fragment-attribution {
  margin-top: 32px;
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 16px;
}
.fragment-attribution::before {
  content:''; display:inline-block; width:18px; height:1px;
  background: var(--rust); margin-right: 6px; vertical-align: middle;
}
.fragment-attribution a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* ──── BAITER · micro-conduttore "continua qui sotto" ──── */
.baiter {
  text-align: center;
  padding: 32px var(--pad-x) 8px;
  background: var(--bg);
  position: relative; z-index: 2;
}
.baiter span {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  position: relative;
}
.baiter span::before, .baiter span::after {
  content:''; display:block; width: 36px; height: 1px;
  background: var(--line);
}
.baiter strong {
  font-weight: 500;
  color: var(--rust);
  font-style: normal;
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ──── PULL-QUOTE major · colpo emotivo ──── */
.pullquote-major {
  padding: clamp(60px, 10vh, 120px) var(--pad-x);
  text-align: center;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.pullquote-major::before {
  content:'"'; position: absolute;
  top: 8%; left: 50%; transform: translateX(-50%);
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(180px, 24vw, 320px);
  color: var(--rust);
  opacity: 0.10;
  line-height: 1; pointer-events: none;
}
.pullquote-major-text {
  position: relative;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 28px;
}
.pullquote-major-text strong {
  font-weight: 500;
  color: var(--rust);
}
.pullquote-major-source {
  position: relative;
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pullquote-major-source::before {
  content:''; display:inline-block; width:24px; height:1px;
  background: var(--rust); margin-right: 8px; vertical-align: middle;
}

/* ──── SPLITTER cosa cerchi (3 vie data-driven) ──── */
.splitter {
  padding: clamp(60px, 10vh, 100px) var(--pad-x);
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.splitter-label {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 36px;
  text-align: center;
}
.splitter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.splitter-card {
  display: flex; flex-direction: column;
  padding: 36px 32px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .3s, background .3s;
  cursor: pointer;
}
.splitter-card::before {
  content:''; position:absolute; left:0; top:0; right:0; height:3px;
  background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.splitter-card:hover {
  transform: translateY(-6px);
  border-color: var(--rust);
  background: var(--bg-card);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
.splitter-card:hover::before { transform: scaleX(1); }
.splitter-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.splitter-arrow {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
  transition: letter-spacing .3s var(--ease-out);
}
.splitter-card:hover .splitter-arrow { letter-spacing: 0.22em; }
.splitter-detail {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ──── HERO PHOTO (full-width respiro) ──── */
.hero-photo {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.hero-photo-caption {
  display: block;
  padding: 18px var(--pad-x) 4px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  max-width: 56ch;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
.hero-photo-caption::before {
  content: '↑ ';
  color: var(--rust);
  font-style: normal;
  font-family: var(--f-ui);
  margin-right: 4px;
}

/* ──── EDITORIAL ASIDE (testo + immagine asimmetrica) ──── */
.aside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-top: 56px;
}
.aside-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.aside-photo img {
  width: 100%; height: auto;
  display: block;
  filter: saturate(0.95);
  aspect-ratio: 16/10;
  object-fit: cover;
}
.aside-photo::before {
  /* sottile texture carta sopra */
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.18; mix-blend-mode: multiply; z-index: 1;
}
.aside-text p {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.aside-text p:first-child::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 4.2em;
  line-height: 0.85;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--rust);
}
@media (max-width: 820px) {
  .aside-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ──── EXCERPT CARDS · "ritagli di giornale" ──── */
.excerpts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.excerpt-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), border-color .3s, box-shadow .5s;
  cursor: pointer;
  overflow: hidden;
}
.excerpt-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.excerpt-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92);
  transition: transform .9s var(--ease-out);
}
.excerpt-card:hover .excerpt-thumb img { transform: scale(1.04); }
.excerpt-content {
  padding: 32px 32px 28px;
  display: flex; flex-direction: column; flex: 1;
}
.excerpt-card::before {
  /* texture carta */
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.45 0 0 0 0 0.3 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
  opacity: .45;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .excerpt-card::before { mix-blend-mode: overlay; opacity: .25; }
.excerpt-card:hover {
  transform: translateY(-4px);
  border-color: var(--rust);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}

.excerpt-tag {
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.excerpt-tag::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--rust); }
.excerpt-title {
  font-family: var(--f-display);
  font-weight: 420;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.excerpt-body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  position: relative; z-index: 2;
  flex: 1;
}
.excerpt-body::first-letter {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 3.2em;
  line-height: 0.85;
  float: left;
  margin: 6px 10px 0 0;
  color: var(--rust);
}
.excerpt-link {
  font-family: var(--f-ui);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; z-index: 2;
}
.excerpt-link svg { width:12px; height:12px; transition: transform .3s var(--ease-out); }
.excerpt-card:hover .excerpt-link svg { transform: translateX(4px); }

/* ──── PERCHÉ · sezione editoriale ──── */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.editorial p {
  font-family: var(--f-body);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.editorial p:first-of-type::first-letter,
.editorial p.big-cap::first-letter {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: 5.2em;
  line-height: 0.82;
  float: left;
  margin: 8px 14px -2px 0;
  color: var(--rust);
  font-style: italic;
}
.editorial p strong {
  color: var(--ink);
  font-weight: 600;
  font-style: italic;
}

/* Pull quote a margine (desktop) */
.pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--rust);
  border-left: 2px solid var(--rust);
  padding-left: 28px;
  margin: 56px 0;
}

/* ──── BAND CTA ──── */
.band {
  padding: clamp(60px, 10vh, 120px) var(--pad-x);
  background: #1A1612;          /* nero inchiostro fisso */
  color: #FAF6EC;                /* avorio fisso */
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .band {
  background: var(--rust);       /* in dark mode diventa ruggine solido */
  color: #FAF6EC;
}
[data-theme="dark"] .band-h em { color: #1A1612; }
[data-theme="dark"] .band-sub { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .band .btn-primary { background: #1A1612; color: #FAF6EC; }
[data-theme="dark"] .band .btn-primary:hover { background: #FAF6EC; color: var(--rust); }
.band-grain {
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.08; pointer-events:none;
}
.band-h {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 22ch; margin: 0 auto 24px;
  position: relative;
}
.band-h em { font-style: italic; color: var(--rust-soft); }
.band-sub {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.3vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 48ch; margin: 0 auto 40px;
  position: relative;
}
.band .btn-primary { background: var(--bg); color: var(--ink); position: relative; }
.band .btn-primary:hover { background: var(--rust); color: var(--bg); }

/* ──── SIGNUP form embedded ──── */
.signup {
  position: relative; z-index: 2;
  display: flex; gap: 0;
  max-width: 520px;
  margin: 0 auto 18px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px;
  transition: border-color .3s, background .3s;
}
.signup:focus-within {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.12);
}
.signup input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 16px;
  color: #FAF6EC;
}
.signup input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.signup button {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: #FAF6EC;
  color: #1A1612;
  font-family: var(--f-ui);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s, transform .25s var(--ease-out);
  white-space: nowrap;
}
.signup button:hover { background: var(--rust); color: #FAF6EC; transform: translateY(-1px); }
.signup button svg { width: 14px; height: 14px; }
[data-theme="dark"] .signup button { background: #1A1612; color: #FAF6EC; }
[data-theme="dark"] .signup button:hover { background: #FAF6EC; color: var(--rust); }
.signup-note {
  position: relative; z-index: 2;
  font-family: var(--f-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
@media (max-width: 520px) {
  .signup { flex-direction: column; border-radius: 24px; padding: 12px; gap: 8px; }
  .signup input[type="email"] { padding: 14px 18px; }
  .signup button { justify-content: center; padding: 14px 22px; }
}

/* ──── SECTION INTRO ──── */
.section-intro {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 56px;
  margin-top: -32px;
}

/* ──── BLOG GRID RICH · preview articoli ──── */
.blog-grid-rich {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.blog-rich {
  display: flex; flex-direction: column;
  padding: 32px 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
}
.blog-rich::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px;
  background: var(--rust);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease-out);
}
.blog-rich:hover {
  transform: translateY(-6px);
  border-color: var(--rust);
  box-shadow: 0 24px 48px rgba(0,0,0,0.10);
}
.blog-rich:hover::before { transform: scaleY(1); }
.blog-rich-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.blog-rich-cat {
  color: var(--rust);
  text-transform: lowercase;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.blog-rich-cat::after {
  content: '·'; color: var(--ink-soft); margin-left: 14px;
}
.blog-rich-time {
  font-style: italic;
  font-family: var(--f-display);
  font-size: 14px;
}
.blog-rich-title {
  font-family: var(--f-display);
  font-weight: 420;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.blog-rich-excerpt {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 22px;
  flex: 1;
}
.blog-rich-arrow {
  font-family: var(--f-ui);
  font-size: 14px; font-weight: 500;
  color: var(--rust);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .3s var(--ease-out);
}
.blog-rich:hover .blog-rich-arrow { gap: 12px; }

/* ──── BLOG GRID · minimal (LEGACY non più usato in home) ──── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.blog-link {
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .3s var(--ease-out);
}
.blog-link:hover { background: var(--bg-card); }
.blog-link:last-child { border-right: 0; }
.blog-link-tag {
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.blog-link-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.blog-link-arrow {
  margin-top: auto;
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--rust);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ──── FOOTER ──── */
footer {
  padding: 80px var(--pad-x) 40px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
/* Variante compact per pagine secondarie */
footer.compact {
  padding: 56px var(--pad-x) 32px;
}
footer.compact .foot-inner {
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
  text-align: center;
}
footer.compact .foot-col,
footer.compact .foot-credits .foot-honest {
  display: none;
}
footer.compact .foot-credits {
  border-top: 1px solid var(--line);
  padding: 28px 0 16px;
  text-align: center;
}
footer.compact .foot-credits::before {
  content: "Una piccola redazione, in Italia. La newsletter resta gratis.";
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}
footer.compact .foot-bottom {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 20px;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
footer.compact .foot-brand-text { display: none; }
footer.compact .foot-brand .nav-logo { justify-content: center; }
.foot-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.foot-brand-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 32ch;
  margin-top: 16px;
}
.foot-col h4 {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  transition: color .25s var(--ease-out);
}
.foot-col a:hover { color: var(--rust); }
.foot-credits {
  border-top: 1px solid var(--line);
  padding: 36px 0 24px;
  text-align: center;
}
.foot-honest {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
}
.foot-honest strong {
  font-weight: 500;
  color: var(--rust);
  font-style: normal;
  font-family: var(--f-ui);
  font-size: 16px;
  letter-spacing: 0.01em;
}
.foot-honest a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap:wrap; gap: 12px;
  font-family: var(--f-ui);
  font-size: 14px; color: var(--ink-soft);
}
.foot-sostieni {
  font-style: italic;
  color: var(--muted);
  text-decoration: underline; text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: color .25s, text-decoration-color .25s;
}
.foot-sostieni:hover { color: var(--rust); text-decoration-color: var(--rust); }

@media (max-width: 720px) {
  .foot-inner { grid-template-columns: 1fr 1fr; }
}

/* ──── REVEAL ON SCROLL ──── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out), filter 1.1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ──── FORMA EDITORIALE · small caps lab ──── */
.smallcaps {
  font-family: var(--f-ui);
  font-feature-settings: "smcp", "c2sc";
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ──── FAQ asciutte ──── */
.faq-section {
  padding: clamp(60px, 10vh, 100px) var(--pad-x);
  background: var(--bg);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-label {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}
.faq-label::before {
  content:''; display:inline-block; width:36px; height:1px;
  background: var(--rust);
}
.faq-list {
  display: flex; flex-direction: column;
  gap: 0;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: start;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: var(--f-display);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-a {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.faq-a a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
@media (max-width: 720px) {
  .faq-item { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; }
}

/* ──── TOAST easter egg ──── */
.sg-toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  z-index: 10000;
  pointer-events: none;
}
.sg-toast.in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ──── SKIP TO CONTENT (a11y) ──── */
.skip-link {
  position: absolute; top: -200px; left: 16px;
  padding: 12px 20px;
  background: var(--rust);
  color: #FAF6EC;
  font-family: var(--f-ui);
  font-size: 14px;
  border-radius: 999px;
  z-index: 9999;
  transition: top .25s var(--ease-out);
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ──── PAGE HERO (per pagine secondarie) ──── */
.page-hero {
  padding: 140px var(--pad-x) 60px;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
@media (max-width: 720px) {
  .page-hero { padding: 110px var(--pad-x) 40px; }
}
.page-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 32px;
  transition: gap .3s var(--ease-out), color .25s var(--ease-out);
}
.page-back:hover { gap: 14px; color: var(--rust); }
.page-back svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.page-back:hover svg { transform: translateX(-3px); }

.page-hero-eyebrow {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.page-hero-eyebrow::before {
  content:''; display:inline-block; width:36px; height:1px; background: var(--rust);
}
.page-hero-title {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 24px;
}
/* Variante più piccola per articoli con titoli lunghi */
.page-hero-title.compact {
  font-size: clamp(28px, 3.6vw, 44px);
}
.page-hero-title em {
  font-style: italic;
  color: var(--rust);
  font-weight: 380;
}
.page-hero-sub {
  font-family: var(--f-body);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ──── ARTICLE (corpo lungo editoriale) ──── */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 80px;
  position: relative;
}
/* Transizione respiro tra page-hero e article */
.article::before {
  content:'';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--rust);
  margin: 0 auto 40px;
}
.article > * { position: relative; z-index: 2; }

.article-lede {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 36px;
  border-left: 2px solid var(--rust);
  padding-left: 28px;
}

.article p {
  font-family: var(--f-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.article p strong {
  font-weight: 600;
  color: var(--ink);
}
.article p em {
  font-style: italic;
  color: var(--rust);
}
.article p.big-cap::first-letter {
  font-family: var(--f-display);
  font-weight: 380;
  font-style: italic;
  font-size: 5em;
  line-height: 0.82;
  float: left;
  margin: 8px 14px -2px 0;
  color: var(--rust);
}

.article-h2 {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 56px 0 20px;
}

.article-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--rust);
  border-left: 2px solid var(--rust);
  padding: 8px 0 8px 28px;
  margin: 48px 0;
  max-width: 28ch;
}
.article-quote em {
  font-style: italic;
  color: var(--ink);
  font-weight: 380;
}

.article-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}
.article-list li {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.article-list li:last-child { border-bottom: 0; }
.article-list li::before {
  content: '·';
  position: absolute;
  left: 8px; top: 14px;
  color: var(--rust);
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.article-list li strong {
  color: var(--ink);
  font-weight: 600;
}

.ink-link {
  color: var(--rust);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-thickness .25s var(--ease-out);
}
.ink-link:hover { text-decoration-thickness: 2px; }

.article-figure {
  margin: 56px 0;
  position: relative;
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  filter: saturate(0.95);
}
.article-figure figcaption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: right;
  letter-spacing: 0.01em;
}
.article-figure figcaption::first-letter {
  color: var(--rust);
  font-style: normal;
}

.article-end-rule {
  height: 1px;
  width: 60px;
  background: var(--rust);
  margin: 56px auto 24px;
}

.article-signoff {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: right;
}

/* Override Payhip default button style */
.payhip-buy-button.btn-primary,
.payhip-buy-button.btn-primary:link,
.payhip-buy-button.btn-primary:visited {
  background: var(--ink) !important;
  color: var(--bg) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px 28px !important;
  border-radius: 999px !important;
  font-family: var(--f-ui) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  border: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out) !important;
}
.payhip-buy-button.btn-primary:hover {
  background: var(--rust) !important;
  transform: translateY(-2px) !important;
}

/* ──── PRODUCT CARD (sostieni.html) ──── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 40px;
  margin: 56px 0;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:4px;
  background: var(--rust);
}
.product-card-tag {
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
}
.product-card-title {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.product-card-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.product-card-list li {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 8px 0 8px 24px;
  position: relative;
}
.product-card-list li::before {
  content:''; position:absolute;
  left: 0; top: 16px;
  width: 12px; height: 1px;
  background: var(--rust);
}
.product-card-price-row {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.product-card-price {
  display: flex; flex-direction: column;
}
.product-card-price-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: var(--rust);
}
.product-card-price-label {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.product-card-fineprint {
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 18px;
  font-style: italic;
}

/* ──── STORY FORM ──── */
.story-form {
  display: flex; flex-direction: column;
  gap: 28px;
  margin: 36px 0 56px;
}
.story-field {
  display: flex; flex-direction: column;
}
.story-field label {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}
.story-field input[type="text"],
.story-field input[type="number"],
.story-field input[type="email"],
.story-field textarea {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.story-field input:focus,
.story-field textarea:focus {
  border-color: var(--rust);
  background: var(--bg);
}
.story-field input::placeholder,
.story-field textarea::placeholder {
  color: var(--muted);
  font-style: italic;
}
.story-field textarea {
  resize: vertical;
  min-height: 200px;
  font-family: var(--f-body);
  line-height: 1.6;
}
.story-help {
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  font-style: italic;
}
.story-field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.story-field-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--rust);
  cursor: pointer;
  flex-shrink: 0;
}
.story-field-checkbox label {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  cursor: pointer;
  margin: 0;
  font-style: normal;
}
.story-submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* SUCCESS STATE */
.success-state {
  display: none;
  text-align: center;
  padding: 60px 20px 40px;
}
.success-state.show { display: block; }
.success-glyph {
  width: 80px; height: 80px;
  margin: 0 auto 32px;
  border: 1px solid var(--rust);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--rust-tint);
}
.success-glyph svg { width: 40px; height: 40px; stroke: var(--rust); }
.success-title {
  font-family: var(--f-display);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--rust);
  margin-bottom: 18px;
}
.success-text {
  font-family: var(--f-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 auto 32px;
}

/* ──── PILLAR (ghosting hub) ──── */
.pillar {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}
.pillar:last-of-type { border-bottom: 1px solid var(--line); }
.pillar-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 380;
  font-size: 64px;
  line-height: 1;
  color: var(--rust);
  letter-spacing: -0.03em;
  text-align: right;
}
.pillar-title {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.pillar-lede {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 56ch;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pillar-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.pillar-list li:last-child { padding-bottom: 0; }
.pillar-list a {
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--ink);
  flex: 1;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color .25s var(--ease-out), color .25s var(--ease-out);
}
.pillar-list a:hover {
  color: var(--rust);
  text-decoration-color: var(--rust);
}
.pillar-list span {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-style: italic;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .pillar { grid-template-columns: 1fr; gap: 16px; }
  .pillar-num { text-align: left; font-size: 48px; }
}

/* ──── ARCHIVE timeline ──── */
.archive-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px var(--pad-x) 80px;
}
.archive-divider {
  position: relative;
  margin: 56px 0 36px;
  text-align: center;
}
.archive-divider::before {
  content:''; position:absolute; left:0; right:0; top:50%;
  height:1px; background: var(--line);
}
.archive-divider span {
  position: relative;
  background: var(--bg);
  padding: 0 20px;
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}
.archive-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.archive-item:last-of-type { border-bottom: 1px solid var(--line); }
.archive-date {
  display: flex; flex-direction: column;
  text-align: right;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.archive-date-day {
  font-family: var(--f-display);
  font-weight: 380;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--rust);
  letter-spacing: -0.02em;
}
.archive-date-month {
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}
.archive-body { padding-top: 8px; }
.archive-tag {
  font-family: var(--f-ui);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
  display: inline-block;
}
.archive-title {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.archive-excerpt {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.archive-link {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 500;
  color: var(--rust);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em;
}
.archive-link svg { width: 12px; height: 12px; }
.archive-link-pending {
  color: var(--ink-soft);
  font-style: italic;
  cursor: default;
}
.archive-more {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 60px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.archive-more strong, .archive-more em {
  color: var(--rust);
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 720px) {
  .archive-item { grid-template-columns: 1fr; gap: 16px; }
  .archive-date { text-align: left; padding-right: 0; border-right: 0;
    flex-direction: row; align-items: baseline; gap: 12px; }
  .archive-date-day { font-size: 36px; }
}

/* ──── THANKS page (post-acquisto) ──── */
.thanks {
  max-width: 720px;
  margin: 0 auto;
  padding: 180px var(--pad-x) 100px;
  text-align: center;
}
.thanks-glyph {
  width: 100px; height: 100px;
  margin: 0 auto 36px;
  border-radius: 50%;
  background: var(--rust-tint);
  border: 1px solid var(--rust);
  display: flex; align-items: center; justify-content: center;
}
.thanks-glyph svg { width: 56px; height: 56px; stroke: var(--rust); }
.thanks-eyebrow {
  font-family: var(--f-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}
.thanks-title {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.thanks-title em {
  font-style: italic;
  color: var(--rust);
  font-weight: 380;
}
.thanks-sub {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 56px;
}
.thanks-next {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.thanks-next p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.thanks-actions {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center;
}
.thanks-foot {
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.thanks-foot strong {
  color: var(--rust);
  font-weight: 600;
}

/* ──── RELATED ARTICLES ──── */
.related-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px var(--pad-x) 40px;
}
.related-label {
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.related-label::before {
  content:''; display:inline-block; width:36px; height:1px; background: var(--rust);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.related-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .35s var(--ease-out), border-color .25s, box-shadow .35s;
  position: relative;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--rust);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}
.related-cat {
  font-family: var(--f-ui);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
.related-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
}
.related-arrow {
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--rust);
  margin-top: auto;
  letter-spacing: 0.04em;
}

/* ──── 404 PAGE ──── */
.not-found-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px var(--pad-x) 80px;
}
.not-found {
  max-width: 720px;
  text-align: center;
  position: relative;
}
.not-found-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.85;
  color: var(--rust);
  margin-bottom: 40px;
  letter-spacing: -0.04em;
}
.not-found-title {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.not-found-title em {
  font-style: italic;
  color: var(--rust);
}
.not-found-sub {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 18px;
}
.not-found-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.not-found-link {
  padding: 22px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
  transition: transform .35s var(--ease-out), border-color .25s, box-shadow .35s;
}
.not-found-link:hover {
  transform: translateY(-3px);
  border-color: var(--rust);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}
.nfl-tag {
  font-family: var(--f-ui);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
}
.nfl-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
}

/* ──── HIDDEN ──── */
.sr-only {
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ════════════════════════════════════════════════════════
   HERO SIGNUP · form inline above-the-fold
   Discreto, editoriale, non commerciale
   ════════════════════════════════════════════════════════ */
.hero-signup {
  margin: 28px auto 0;
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}
.hero-signup-label {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
/* Promise block · data + titolo prossima storia (sostituisce il counter astratto) */
.hero-signup-promise {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  text-align: center;
}
.hsp-when {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
.hsp-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  max-width: 380px;
}
@media (max-width: 520px) {
  .hsp-when { font-size: 10.5px; }
  .hsp-title { font-size: 14.5px; }
}
.hero-signup-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.hero-signup-row:focus-within {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(184, 85, 48, 0.12);
}
.hero-signup-row input[type="email"] {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  font-family: var(--f-ui);
  font-size: 16px; /* >=16px previene zoom-on-focus iOS */
  padding: 13px 18px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.hero-signup-row input[type="email"]::placeholder {
  color: var(--ink-muted);
  opacity: 0.7;
}
.hero-signup-row button {
  flex: 0 0 auto;
  border: 0;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s ease;
}
.hero-signup-row button:hover {
  background: var(--rust);
}
.hero-signup-row button svg {
  width: 14px; height: 14px;
  transition: transform .25s ease;
}
.hero-signup-row button:hover svg {
  transform: translateX(3px);
}
.hero-signup-note {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  opacity: 0.75;
  margin-top: 4px;
}

@media (max-width: 520px) {
  .hero-signup { margin-top: 22px; max-width: 100%; }
  .hero-signup-label { font-size: 11px; }
  .hero-signup-row input[type="email"] { font-size: 16px; padding: 12px 16px; }
  .hero-signup-row button { padding: 0 16px; font-size: 12px; }
  .hero-signup-row button span,
  .hero-signup-row button { gap: 6px; }
  .hero-signup-note { font-size: 10.5px; text-align: center; }
}

/* ════════════════════════════════════════════════════════
   STICKY MOBILE BAR · cattura chi sta scrollando senza convertire
   Compare solo su mobile, dopo soglia scroll, dismissibile
   ════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 90;
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
  padding: 12px 14px;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  font-family: var(--f-ui);
  transform: translateY(140%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta-text {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.3;
  min-width: 0;
}
.sticky-cta-text strong {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 1px;
}
.sticky-cta-text span {
  font-size: 11.5px;
  opacity: 0.75;
}
.sticky-cta-btn {
  flex: 0 0 auto;
  background: var(--rust);
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.sticky-cta-btn:hover {
  background: var(--rust-deep, var(--rust));
  filter: brightness(0.92);
}
.sticky-cta-close {
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  color: var(--bg);
  opacity: 0.55;
  cursor: pointer;
  padding: 10px; /* hit-area 40x40 */
  margin-right: -6px;
  font-size: 18px;
  line-height: 1;
}
.sticky-cta-close:hover { opacity: 1; }

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

/* ════════════════════════════════════════════════════════
   INLINE BLOG NEWSLETTER · fine articolo blog
   Quando uno ha finito di leggere è il momento di intent massimo
   ════════════════════════════════════════════════════════ */
.inline-newsletter {
  margin: 60px auto 40px;
  max-width: 620px;
  padding: 36px 32px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 6px;
  text-align: center;
}
.inline-newsletter-eyebrow {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.inline-newsletter-h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 3.4vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
}
.inline-newsletter-h em {
  font-style: italic;
  color: var(--rust);
}
.inline-newsletter-sub {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink-muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.inline-newsletter form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
}
.inline-newsletter form:focus-within {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(184, 85, 48, 0.12);
}
.inline-newsletter input[type="email"] {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  font-family: var(--f-ui);
  font-size: 16px; /* >=16px previene zoom-on-focus iOS */
  padding: 12px 18px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.inline-newsletter input[type="email"]::placeholder {
  color: var(--ink-muted); opacity: 0.7;
}
.inline-newsletter button {
  flex: 0 0 auto;
  border: 0;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 22px;
  cursor: pointer;
  transition: background .25s ease;
}
.inline-newsletter button:hover { background: var(--rust); }
.inline-newsletter-note {
  font-family: var(--f-ui);
  font-size: 11px;
  color: var(--ink-muted);
  opacity: 0.7;
  margin: 14px 0 0;
}
.inline-upsell {
  margin: 22px auto 0;
  max-width: 480px;
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.inline-upsell strong { color: var(--ink); font-weight: 600; }
.inline-upsell a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.inline-upsell a:hover { color: var(--ink); }

/* Variante mid-article del box newsletter — appare a meta' articolo
   dopo aver gia' consegnato 2 dei 4 modi, punto di massima reciprocita' */
.inline-newsletter--mid {
  margin-top: 48px;
  margin-bottom: 48px;
}
.inline-newsletter--mid .inline-newsletter-eyebrow {
  color: var(--rust);
}

/* Soft upsell separato dal box newsletter, in fondo all'articolo */
.inline-upsell-block {
  max-width: 680px;
  margin: 32px auto 56px;
  padding: 0 24px;
}
.inline-upsell-block .inline-upsell {
  border-top: 1px solid var(--rule);
  margin-top: 0;
  padding-top: 18px;
}

/* Referrer context · banner discreto su /anteprima-replay quando si arriva da un blog
   specifico. Riconosce l'intent del lettore senza essere invasivo. */
.ref-context {
  max-width: 640px;
  margin: 12px auto 28px;
  padding: 14px 20px;
  border-left: 2px solid var(--rust);
  background: rgba(199, 244, 107, 0.04);
}
.ref-context-eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}
.ref-context-msg {
  margin: 0;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.ref-context-msg strong {
  color: var(--ink);
  font-weight: 500;
}

/* Skip link nel hero di /anteprima-replay verso la card newsletter free */
.hero-skip {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.hero-skip:hover { color: var(--ink); }

/* Crisis line · rinvio professionisti, sempre visibile in footer (audit clinico) */
.foot-crisis-line {
  border-top: 1px solid var(--rule);
  padding: 18px 24px 14px;
  max-width: 760px;
  margin: 12px auto 0;
}
.foot-crisis-line p {
  font-family: var(--f-ui);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
}
.foot-crisis-line strong { color: var(--ink); font-weight: 500; white-space: nowrap; }
@media (max-width: 520px) {
  .foot-crisis-line { padding: 14px 16px 10px; }
  .foot-crisis-line p { font-size: 12px; text-align: left; }
}

/* ════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER · GDPR-minimal, on-brand
   ════════════════════════════════════════════════════════ */
.sg-cookie {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
  font-family: var(--f-ui);
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
  max-width: 720px;
  margin: 0 auto;
}
.sg-cookie.is-visible { transform: translateY(0); }
.sg-cookie-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.sg-cookie-title {
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
  flex-basis: 100%;
  opacity: 0.85;
}
/* Su mobile il banner deve essere il piu' compatto possibile per non oscurare il fold.
   Visivamente nascondiamo il titolo, lo manteniamo come sr-only per aria-labelledby. */
@media (max-width: 520px) {
  .sg-cookie {
    padding: 10px 14px;
    left: 8px; right: 8px; bottom: 8px;
    border-radius: 14px;
  }
  .sg-cookie-title {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    border: 0; overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .sg-cookie-inner { gap: 10px; }
  .sg-cookie-text { font-size: 12.5px; line-height: 1.4; }
  .sg-cookie-buttons { width: 100%; }
  .sg-cookie-essential, .sg-cookie-all {
    flex: 1; min-width: 0;
    padding: 9px 12px; font-size: 12px;
  }
}
.sg-cookie-text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
}
/* Pulsanti del cookie banner equivalenti per Garante: stesso peso visivo,
   solo l'accent rust distingue la scelta "tutti" come confermativa colorata */
.sg-cookie-essential, .sg-cookie-all {
  min-width: 140px;
}
.sg-cookie-text a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
}
.sg-cookie-text a:hover { opacity: 1; }
.sg-cookie-buttons {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.sg-cookie-btn {
  border: 0;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--f-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: filter .2s ease, transform .15s ease;
  white-space: nowrap;
}
.sg-cookie-essential {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255,255,255,0.35);
}
.sg-cookie-essential:hover {
  border-color: rgba(255,255,255,0.7);
}
.sg-cookie-all {
  background: var(--rust);
  color: var(--bg);
}
.sg-cookie-all:hover { filter: brightness(1.1); }

/* ════════════════════════════════════════════════════════
   PREVIEW CARDS · per anteprima-replay.html
   ════════════════════════════════════════════════════════ */
.preview-card {
  margin: 36px 0;
  padding: 32px 36px;
  background: var(--bg-soft);
  border-left: 3px solid var(--rust);
  border-radius: 4px;
}
.preview-num {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 12px;
}
.preview-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.preview-sub {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
}
.preview-psych {
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  font-style: italic;
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 1px solid var(--rule);
}
.preview-frase {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 12px;
  padding: 18px 22px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px dashed rgba(184, 85, 48, 0.3);
}
.preview-why {
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
  padding-left: 4px;
}
@media (max-width: 520px) {
  .preview-card { padding: 24px 22px; }
}

/* ════════════════════════════════════════════════════════
   DUAL CTA · iscrizione gratis vs diventa Sostenitore
   ════════════════════════════════════════════════════════ */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 36px 0;
}
.dual-cta-card {
  padding: 28px 28px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.dual-cta-card.primary {
  border-color: var(--rust);
  border-width: 2px;
  background: var(--bg-soft);
}
.dual-cta-tag {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.dual-cta-card.primary .dual-cta-tag { color: var(--rust); }
.dual-cta-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 12px;
}
.dual-cta-text {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
  flex: 1;
}
.dual-cta-form {
  display: flex;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
}
.dual-cta-form input[type=email] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 11px 16px;
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.dual-cta-form button {
  border: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0 16px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.dual-cta-form button:hover { background: var(--rust); }
.dual-cta-note {
  font-family: var(--f-ui);
  font-size: 11px;
  color: var(--ink-muted);
  opacity: 0.75;
  margin: 12px 0 0;
}
@media (max-width: 720px) {
  .dual-cta { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   ITER 32 · DETTAGLI EDITORIALI
   Tipografia raffinata + micro-interazioni sottovoce
   ════════════════════════════════════════════════════════ */

/* ── Hanging punctuation: virgolette/trattini escono dal margine ── */
article.article p,
article.article blockquote,
.editorial p,
.preview-frase,
.fragment-text,
.article-quote {
  hanging-punctuation: first last;
}

/* ── Numeri oldstyle nel body, tabular nelle data card ── */
article.article p, article.article li, .editorial p, .fragment-text {
  font-variant-numeric: oldstyle-nums proportional-nums;
}
.product-card-price-num,
.dual-cta-note,
.hsp-when,
.faq-q,
.preview-num {
  font-variant-numeric: tabular-nums lining-nums;
}

/* ── Optical legibility + kerning sui titoli grandi ── */
.hero-h1,
.page-hero-title,
.section-h2,
.preview-title {
  text-rendering: optimizeLegibility;
  letter-spacing: -0.012em;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1, "ss01" 1;
}

/* ── Italico letterario via opsz Newsreader ── */
em, i {
  font-variation-settings: "opsz" 16;
}
.fragment-text em,
.article-lede em,
blockquote em,
.preview-frase em,
.hero-h1 em,
.page-hero-title em {
  font-variation-settings: "opsz" 36;
}

/* ── Drop cap Fraunces SOFT sul primo paragrafo SOLO articoli blog ── */
body.is-blog-article article.article > p.article-lede:first-of-type::first-letter,
body.is-blog-article article.article > p:first-of-type:not(.article-signoff)::first-letter {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 4.6em;
  line-height: 0.85;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  float: left;
  margin: 0.06em 0.1em -0.08em 0;
  color: var(--rust);
  padding: 0;
}

/* ── Caporali italiane: leggera estetica diversa ── */
article.article p, .editorial p {
  quotes: "«" "»" "‹" "›";
}

/* ── Pause editoriali · · · tra sezioni ── */
.sg-pausa {
  border: 0;
  margin: clamp(40px, 6vh, 72px) auto;
  text-align: center;
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 0.5em;
  color: var(--rust);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.sg-pausa::before {
  content: "·  ·  ·";
}
.sg-pausa.visible {
  opacity: 0.55;
}

/* ── Fraunces che respira: parole che pesano (.silenzio, .attesa) ── */
@property --sg-w {
  syntax: "<number>";
  inherits: false;
  initial-value: 400;
}
.silenzio, .attesa, em.peso {
  font-variation-settings: "wght" var(--sg-w, 400);
  animation: sg-respiro 6.5s ease-in-out infinite;
}
@keyframes sg-respiro {
  0%, 100% { --sg-w: 380; }
  50% { --sg-w: 460; }
}
@media (prefers-reduced-motion: reduce) {
  .silenzio, .attesa, em.peso { animation: none; }
}

/* ── Lettere sul tavolo: archive con tilt random ── */
.lettera, .blog-rich {
  scroll-snap-align: start;
}
.blog-rich:nth-child(2n) {
  rotate: -0.3deg;
}
.blog-rich:nth-child(3n) {
  rotate: 0.4deg;
}
.blog-rich:nth-child(5n) {
  rotate: -0.5deg;
}
.blog-rich {
  transition: rotate .4s ease, translate .3s ease;
}
.blog-rich:hover {
  rotate: 0deg;
  translate: 0 -2px;
}
@media (prefers-reduced-motion: reduce) {
  .blog-rich, .blog-rich:nth-child(2n), .blog-rich:nth-child(3n), .blog-rich:nth-child(5n) {
    rotate: 0deg !important;
  }
}

/* ════════════════════════════════════════════════════════
   MARGINALIA · "—UA" appare a margine selezione testo
   ════════════════════════════════════════════════════════ */
.sg-marginalia {
  position: absolute;
  pointer-events: none;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rust);
  opacity: 0;
  animation: sg-marg-fade-in .4s ease forwards;
  z-index: 50;
  font-weight: 600;
}
@keyframes sg-marg-fade-in {
  from { opacity: 0; transform: translateX(-4px); }
  to { opacity: 0.7; transform: translateX(0); }
}

/* ════════════════════════════════════════════════════════
   STA SCRIVENDO · puntini sotto blockquote dopo hover 2.5s
   ════════════════════════════════════════════════════════ */
.sg-typing {
  position: absolute;
  bottom: -28px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: var(--ink);
  border-radius: 12px;
  transition: opacity .5s ease;
}
.sg-typing.fade { opacity: 0; }
.sg-typing i {
  width: 5px; height: 5px;
  background: var(--bg);
  border-radius: 50%;
  opacity: 0.7;
  animation: sg-typing-bounce 1s ease-in-out infinite;
}
.sg-typing i:nth-child(2) { animation-delay: .15s; }
.sg-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes sg-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ════════════════════════════════════════════════════════
   DOPPIA SPUNTA BLU · idle 47s
   ════════════════════════════════════════════════════════ */
.sg-double-tick {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  width: 36px;
  height: 22px;
  color: #4FC3F7;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s ease, transform .8s ease, color 1.5s ease, filter 1.5s ease;
  pointer-events: none;
}
.sg-double-tick.show {
  opacity: 0.85;
  transform: translateY(0);
}
.sg-double-tick.gray {
  color: rgba(140,140,140,0.55);
}
.sg-double-tick.blur {
  filter: blur(0.5px);
}
.sg-double-tick svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 520px) {
  .sg-double-tick { right: 14px; bottom: 90px; }
}

/* ════════════════════════════════════════════════════════
   SEGNALIBRO · banner riprendi dove avevi lasciato
   ════════════════════════════════════════════════════════ */
.sg-bookmark-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--ink);
  color: var(--bg);
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.02em;
  z-index: 90;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  transition: transform .45s cubic-bezier(.2,.7,.3,1), opacity .45s ease;
  opacity: 0;
}
.sg-bookmark-banner.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.sg-bookmark-banner button {
  background: var(--rust);
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  padding: 5px 12px;
  margin-left: 8px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.sg-bookmark-banner button:hover {
  filter: brightness(1.1);
}

/* ════════════════════════════════════════════════════════
   CALVINO HIDDEN · sussurro invisibile su crema
   Visibile solo selezionando il testo
   ════════════════════════════════════════════════════════ */
.sg-whisper {
  display: block;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--bg);
  user-select: text;
  margin: 64px auto 24px;
  max-width: 480px;
  letter-spacing: 0.02em;
}
.sg-whisper::selection { background: var(--rust); color: var(--bg); }

/* ════════════════════════════════════════════════════════
   GRAZIE PAGE · varianti duali (Payhip / Substack / Neutral)
   Mostra solo la variante che corrisponde a ?from=...
   ════════════════════════════════════════════════════════ */
.thanks-variant { display: none; }
html[data-from="payhip"] .thanks-variant[data-show="payhip"],
html[data-from="substack"] .thanks-variant[data-show="substack"],
html[data-from="neutral"] .thanks-variant[data-show="neutral"],
html:not([data-from]) .thanks-variant[data-show="neutral"] {
  display: block;
}

/* Lista nella grazie page */
.thanks-list {
  list-style: none;
  padding: 0;
  margin: 18px auto 24px;
  max-width: 540px;
  text-align: left;
}
.thanks-list li {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}
.thanks-list li:last-child { border-bottom: none; }
.thanks-list li::before {
  content: "·";
  position: absolute;
  left: 4px; top: 6px;
  color: var(--rust);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.thanks-list li a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* PS in grazie page */
.thanks-ps {
  margin: 36px auto 0;
  max-width: 520px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
  font-style: italic;
  text-align: center;
  padding: 16px 20px;
  border-top: 1px dashed var(--rule);
}
.thanks-ps strong {
  font-style: normal;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-right: 6px;
}
.thanks-ps code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--ink);
}

/* ════════════════════════════════════════════════════════
   INLINE CTA · dentro articoli blog
   Editoriale, in linea col testo, non bottoneggiante
   ════════════════════════════════════════════════════════ */
.inline-cta {
  display: inline-block;
  margin: 28px 0;
  padding: 12px 22px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--rust);
  border-radius: 4px;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .15s ease;
}
.inline-cta em {
  font-style: italic;
  color: var(--rust);
}
.inline-cta:hover {
  background: var(--rust);
  color: var(--bg);
  transform: translateY(-1px);
}
.inline-cta:hover em {
  color: var(--bg);
}
@media (max-width: 520px) {
  .inline-cta { font-size: 15px; padding: 10px 16px; display: block; text-align: center; }
}

/* Varianti CTA inline blog: soft (anteprima) vs warm (Sostenitori) */
.inline-cta-soft {
  /* outline ruggine, sfondo soft */
  background: var(--bg-soft);
  border-color: var(--rust);
}
.inline-cta-warm {
  /* riempito ruggine: invito più chiaro */
  background: var(--rust);
  color: var(--bg);
  border-color: var(--rust);
  font-weight: 500;
}
.inline-cta-warm em { color: var(--bg); }
.inline-cta-warm:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.inline-cta-warm:hover em { color: var(--bg); }

/* ════════════════════════════════════════════════════════
   ARTICOLI BLOG · nuovi componenti voce Stop Ghosting
   ════════════════════════════════════════════════════════ */

/* Eyebrow editoriale (sopra il lede) */
.article-eyebrow {
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--rust);
  font-style: italic;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule);
  max-width: 580px;
}

/* Bridge editoriale (in fondo all'articolo, prima del rule + signoff) */
.article-bridge {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
  margin: 44px 0 22px;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-left: 2px solid var(--rust);
  border-radius: 4px;
  max-width: 680px;
}
.article-bridge strong {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.article-bridge em {
  font-style: italic;
  color: var(--ink);
}
.article-bridge a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-style: normal;
  font-weight: 500;
}
.article-bridge a:hover {
  color: var(--ink);
}
@media (max-width: 520px) {
  .article-bridge { padding: 20px 22px; font-size: 15.5px; }
}

/* Related card (per Storia del lunedì #01 e futuri) */
.related-card {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .2s ease, transform .15s ease;
}
.related-card:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
}
.related-cat {
  font-family: var(--f-ui);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 10px;
}
.related-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   TRACKS · "Adesso, due strade"
   Primary card full-width (Sostenitori) + 2 secondary 50/50 sotto
   ════════════════════════════════════════════════════════ */
.tracks-section {
  margin: 64px auto 40px;
  max-width: 760px;
}
.tracks-eyebrow {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  text-align: center;
  margin-bottom: 14px;
}
.tracks-h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 38px);
  line-height: 1.15;
  text-align: center;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.012em;
}
.tracks-h2 em {
  font-style: italic;
  color: var(--rust);
}
.tracks-intro {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 44px;
}

/* PRIMARY · Sostenitori card */
.track-primary {
  position: relative;
  background: var(--bg-soft);
  border: 2px solid var(--rust);
  border-radius: 12px;
  padding: 48px 40px 40px;
  margin: 0 0 22px;
  box-shadow: 0 8px 32px rgba(184, 85, 48, 0.08);
}
.track-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--rust);
  color: var(--bg);
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
}
.track-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.track-title em {
  font-style: italic;
  color: var(--rust);
}
.track-price {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--ink-muted);
  font-style: italic;
  margin: 0 0 26px;
}
.track-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.track-list li {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}
.track-list li:last-child { border-bottom: none; }
.track-list li::before {
  content: "—";
  position: absolute;
  left: 0; top: 10px;
  color: var(--rust);
  font-weight: 700;
}
.track-list li strong { font-weight: 600; }
.track-list li em { color: var(--rust); font-style: italic; }
.track-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rust);
  color: var(--bg);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: filter .2s ease, transform .15s ease;
}
.track-cta svg { width: 16px; height: 16px; }
.track-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.track-microcopy {
  font-family: var(--f-ui);
  font-size: 12.5px;
  color: var(--ink-muted);
  margin: 14px 0 0;
  opacity: 0.8;
}

/* SECONDARY · 2 cards alternative (asimmetriche: prodotto vs form) */
.track-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 32px;
}
.track-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Filetto ruggine in alto SOLO sulla newsletter (lead magnet) */
.track-card-form-card {
  border-top: 2px solid var(--rust);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.track-card-tag {
  font-family: var(--f-ui);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin: 0 0 18px;
}

/* Prezzo block: numero grande Fraunces + caption Inter caps */
.track-price-block {
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.track-price-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 48px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.track-price-note {
  font-family: var(--f-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.track-card-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
/* Promise paragraph (newsletter card) */
.track-card-promise {
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
  flex: 1;
}
.track-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.track-card-list li {
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding: 6px 0 6px 16px;
  position: relative;
}
.track-card-list li::before {
  content: "·";
  position: absolute;
  left: 4px; top: 4px;
  color: var(--rust);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.track-card-cta {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1.5px solid var(--rust);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color .2s ease, border-color .2s ease;
}
.track-card-cta:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.track-card-form {
  display: flex;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
}
.track-card-form input[type=email] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-family: var(--f-ui);
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.track-card-form button {
  border: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0 14px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.track-card-form button:hover { background: var(--rust); }

/* ── Hover system per le 3 tracks · sintesi panel UX/Visual/A11y ── */
.track-primary {
  transition: box-shadow .22s ease-out, transform .22s ease-out;
}
.track-primary:hover {
  box-shadow: 0 14px 40px rgba(184, 85, 48, 0.18);
  transform: translateY(-2px);
}

.track-card {
  transition:
    border-color .2s ease-out,
    background-color .2s ease-out,
    box-shadow .2s ease-out,
    transform .2s ease-out;
}
.track-card:hover {
  border-color: var(--rust);
  background: rgba(184, 85, 48, 0.04);
  box-shadow: 0 8px 24px rgba(184, 85, 48, 0.12);
  transform: translateY(-2px);
}
.track-card:hover .track-card-tag {
  color: var(--rust);
}
.track-card:hover .track-card-cta {
  color: var(--ink);
  border-color: var(--ink);
}
/* primo tile (REPLAY) ha un cursor pointer perché è cliccabile come blocco; il secondo (newsletter) ha un form quindi cursor default */
.track-card:has(.track-card-cta) { cursor: pointer; }
.track-card:has(.track-card-cta):active { transform: scale(.99); transition-duration: .08s; }
.track-card:has(.track-card-form) { cursor: default; }
.track-card:has(.track-card-form) input { cursor: text; }

/* Touch device: rimuovo lift (no hover su mobile) */
@media (hover: none) {
  .track-primary:hover, .track-card:hover {
    transform: none;
    box-shadow: none;
  }
  .track-card:active {
    border-color: var(--rust);
    background: rgba(184, 85, 48, 0.05);
    transform: scale(.985);
    transition-duration: .08s;
  }
}

/* Reduced motion: solo cambio bordo, niente lift */
@media (prefers-reduced-motion: reduce) {
  .track-primary, .track-card {
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .track-primary:hover, .track-card:hover {
    transform: none;
  }
}

/* Focus visible per tastiera */
.track-card:focus-within {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}

/* Click-target: tutta la card "REPLAY" è cliccabile via overlay invisibile */
.track-card:has(.track-card-cta) {
  position: relative;
}
.track-card:has(.track-card-cta) .track-card-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* GROUND TRUTH · onesty closer */
.tracks-honest {
  margin: 36px auto 0;
  max-width: 600px;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  text-align: center;
  padding: 22px 24px;
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
}

/* MOBILE · stack tutto verticale */
@media (max-width: 720px) {
  .track-primary { padding: 38px 24px 30px; }
  .track-title { font-size: 24px; }
  .track-list li { font-size: 15.5px; }
  .track-secondary { grid-template-columns: 1fr; gap: 16px; }
  .track-card { padding: 24px 22px; }
  .tracks-h2 { font-size: 26px; }
  .tracks-intro { font-size: 15.5px; padding: 0 12px; }
}

@media (max-width: 520px) {
  .sg-cookie { padding: 14px 16px; left: 10px; right: 10px; bottom: 10px; }
  .sg-cookie-text { font-size: 12.5px; flex: 1 1 100%; }
  .sg-cookie-buttons { width: 100%; }
  .sg-cookie-btn { flex: 1; padding: 11px 12px; font-size: 12px; }
}

@media (max-width: 520px) {
  .inline-newsletter { padding: 28px 20px; margin: 44px auto 28px; }
  .inline-newsletter input[type="email"] { font-size: 16px; padding: 11px 14px; }
  .inline-newsletter button { padding: 0 14px; font-size: 11px; }
}

/* ════════════════════════════════════════════════════════
   SERIES TEASER · REPLAY №2 / №3 in arrivo
   ════════════════════════════════════════════════════════ */
.series-teaser {
  margin: 28px auto 0;
  max-width: 620px;
  padding: 22px 26px;
  border-left: 2px solid var(--rust);
  background: transparent;
  font-family: var(--f-body);
}
.series-teaser-label {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
  font-weight: 600;
}
.series-teaser-list {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 12px;
}
.series-teaser-list strong {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--rust);
  text-transform: none;
  margin-right: 4px;
}
.series-teaser-note {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  font-style: italic;
  margin: 0;
}
@media (max-width: 520px) {
  .series-teaser { padding: 18px 18px; }
  .series-teaser-list { font-size: 14.5px; }
  .series-teaser-note { font-size: 12.5px; }
}

/* ════════════════════════════════════════════════════════
   FROM-BLOG CARD · visibile solo se referrer dal blog
   Aiuta il lettore SEO a connettere "ho letto questo articolo"
   con "ah, c'è un manuale che risponde a quella domanda"
   ════════════════════════════════════════════════════════ */
.from-blog-card {
  margin: 0 0 36px;
  padding: 22px 26px;
  background: rgba(184, 85, 48, 0.06);
  border: 1px solid rgba(184, 85, 48, 0.18);
  border-radius: 6px;
}
.from-blog-kicker {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 10px;
}
.from-blog-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
}

/* ════════════════════════════════════════════════════════
   BENEFIT LIST · "cosa ricevi se diventi Sostenitore"
   ════════════════════════════════════════════════════════ */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.benefit-list li {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before {
  content: "·";
  position: absolute;
  left: 8px;
  top: 8px;
  color: var(--rust);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}
.benefit-list li strong {
  font-weight: 600;
}
@media (max-width: 520px) {
  .benefit-list li { font-size: 15px; padding-left: 22px; }
}

/* ════════════════════════════════════════════════════════
   FAQ LIST minimal · per /sostieni FAQ
   ════════════════════════════════════════════════════════ */
.faq-list-min {
  margin: 0 0 40px;
  padding: 0;
}
.faq-list-min .faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.faq-list-min .faq-q {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 8px;
}
.faq-list-min .faq-a {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 520px) {
  .faq-list-min .faq-q { font-size: 17px; }
  .faq-list-min .faq-a { font-size: 14.5px; }
}

/* ─────────────────────── Hero CTA pair · "leggi gratis | iscriviti" ─────────────────────── */
.hero-cta-pair {
  margin: 18px auto 0;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}
.hero-cta-promise {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.hero-cta-promise .hsp-when {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
.hero-cta-promise .hsp-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  max-width: 380px;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.hero-cta-primary:hover {
  background: var(--rust);
  transform: translateY(-2px);
}
.hero-cta-primary svg {
  width: 14px; height: 14px;
  transition: transform .25s ease;
}
.hero-cta-primary:hover svg { transform: translateX(4px); }
.hero-cta-secondary {
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color .2s ease;
}
.hero-cta-secondary:hover { color: var(--rust); }

/* Divider tra primary CTA e mini-form email · "oppure" */
.hero-cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  margin: 14px auto 4px;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.65;
}
.hero-cta-divider::before,
.hero-cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

/* Mini-form email diretto nell'hero · variante compatta del form principale */
.hero-cta-form {
  display: flex;
  width: 100%;
  max-width: 460px;
  margin: 4px auto 0;
  background: var(--rust-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  transition: border-color .2s ease, background .2s ease;
}
[data-theme="dark"] .hero-cta-form {
  background: rgba(250, 246, 236, 0.04);
  border-color: rgba(250, 246, 236, 0.18);
}
.hero-cta-form:focus-within {
  border-color: var(--rust);
  background: rgba(250, 246, 236, 0.06);
}
.hero-cta-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 10px 16px;
  font-family: var(--f-ui);
  font-size: 16px; /* >=16px previene zoom-on-focus iOS */
  color: var(--ink);
  min-width: 0;
}
.hero-cta-form input[type="email"]::placeholder {
  color: var(--ink-muted);
  opacity: 0.7;
}
.hero-cta-form button {
  background: var(--rust);
  color: #FAF6EC;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}
.hero-cta-form button:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.hero-cta-note {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  opacity: 0.75;
  text-align: center;
  margin-top: 2px;
}
@media (max-width: 520px) {
  .hero-cta-pair { margin-top: 14px; max-width: 100%; gap: 10px; }
  .hero-cta-promise .hsp-when { font-size: 10.5px; }
  .hero-cta-promise .hsp-title { font-size: 14.5px; }
  .hero-cta-primary { font-size: 13px; padding: 12px 22px; }
  .hero-cta-secondary { font-size: 12.5px; }
  .hero-cta-note { font-size: 10.5px; }
  .hero-cta-form { flex-direction: column; border-radius: 18px; padding: 8px; gap: 6px; }
  .hero-cta-form input[type="email"] { padding: 12px 16px; font-size: 16px; }
  .hero-cta-form button { width: 100%; padding: 12px 18px; }
}

/* ─────────────────────── Sostieni block · home reciprocity ─────────────────────── */
.sostieni-block .section-h2 em { color: var(--rust); font-style: italic; }
.sostieni-block .editorial p strong { color: var(--ink); }

/* Proof line · social proof discreto dentro l'editoriale del manifesto */
.proof-line {
  font-family: var(--f-ui);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  border-left: 2px solid var(--rust);
  padding: 10px 18px;
  margin-top: 24px;
  background: rgba(199, 244, 107, 0.03);
}
.proof-line strong { color: var(--ink); font-weight: 500; }

/* Hero soft fallback · /sostieni — link gratis discreto per cold leads */
.hero-soft-fallback {
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  opacity: 0.85;
  margin-top: 16px;
  text-align: center;
}
.hero-soft-fallback a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.hero-soft-fallback a:hover { color: var(--ink); }

/* Anchor annuale visivo nel product card */
.product-card-price-anchor {
  display: block;
  font-style: normal;
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--rust);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* Blog cluster label · sub-heading per raggruppare articoli del blog index */
.blog-cluster-label {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 8px 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

/* Why now · FOMO + tribe-belonging micro-frase */
.why-now {
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--ink-soft);
  border-left: 2px solid var(--rust);
  padding: 12px 18px;
  margin: 24px auto;
  max-width: 640px;
  background: rgba(199, 244, 107, 0.03);
}
.why-now strong { color: var(--ink); font-weight: 500; }

/* Success newsletter · cross-conversion dentro success-state di /storia.html
   momento di massima reciprocità post-submit */
.success-newsletter {
  margin-top: 32px;
  padding: 24px 20px;
  border: 1px solid rgba(199, 244, 107, 0.18);
  border-radius: 16px;
  background: rgba(199, 244, 107, 0.04);
}
.success-newsletter-intro {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 14px;
  text-align: center;
}
.success-newsletter .hero-cta-form {
  margin: 0 auto;
}
.success-newsletter-note {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  opacity: 0.75;
  text-align: center;
  margin: 8px 0 0;
}
