/* =========================================================
   RESET & BASE
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --black-2: #141414;
  --red: #E10600;
  --red-dark: #A30400;
  --bone: #F5F1E8;
  --bone-dim: #C9C4B7;
  --yellow: #FFD60A;
  --grey: #2A2A2A;
  --max-hero: 760px;
  --max: 1200px;
}
@media (min-width: 1024px) {
  :root { --max-hero: 1100px; }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.82)),
    url('../images/dna2.png');
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 480px 480px;
  background-position: center center;
  color: var(--bone);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
@media (max-width: 760px) {
  body {
    background-attachment: scroll;
    background-size: 360px 360px;
  }
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }

/* =========================================================
   ALERT BAR (sticky, statico, lampeggiante)
   ========================================================= */
.alert-bar {
  position: static;
  z-index: 50;
  background: var(--red);
  color: var(--bone);
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.02em;
  padding: 10px 8px;
  text-align: center;
  border-bottom: 2px solid var(--black);
  animation: pulseBg 2.4s ease-in-out infinite;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 420px) {
  .alert-bar {
    letter-spacing: 0.12em;
    padding: 10px 16px;
  }
}
@media (min-width: 760px) {
  .alert-bar { position: sticky; top: 0; }
}

.alert-bar__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
}

.alert-bar__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bone);
  box-shadow: 0 0 0 0 rgba(245, 241, 232, 0.7);
  animation: liveDot 1.4s ease-out infinite;
  flex-shrink: 0;
}

@keyframes liveDot {
  0%   { box-shadow: 0 0 0 0 rgba(245, 241, 232, 0.7); transform: scale(1); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 241, 232, 0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(245, 241, 232, 0); transform: scale(1); }
}

@keyframes pulseBg {
  0%, 100% { background: var(--red); }
  50% { background: var(--red-dark); }
}


/* =========================================================
   HERO — single column, mobile-first
   ========================================================= */
.hero {
  position: relative;
  padding: 28px 8px 56px;
  background: var(--black);
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-hero);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* 02 — EVENTO LIVE badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--bone);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 12px;
  padding: 8px 16px;
  border-left: 3px solid var(--yellow);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero__badge::before {
  content: "●";
  color: var(--yellow);
  animation: blink 1.2s infinite;
  font-size: 10px;
}
@keyframes blink {
  0%, 60%, 100% { opacity: 1; }
  30% { opacity: 0.2; }
}

/* 03 — TITLE / LOGO (Special Elite weight 900 — synth-bold sui font single-weight) */
.hero__title {
  font-family: 'Special Elite', 'Courier Prime', monospace;
  font-weight: 900;
  /* riempie tutta la larghezza: 15 char monospace × ~0.6em ≈ 9em.
     font-size = (viewport - padding) / 9.3 → fit edge-to-edge */
  font-size: min(calc((100vw - 24px) / 9.3), 64px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 auto 4px;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  display: block;
}
@media (min-width: 760px) {
  .hero__title { margin-bottom: 8px; }
}

/* 04 — SUBTITLE (supporting al titolo) */
.hero__subtitle {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}

/* 05 — HEADLINE (serif Plex, headline editoriale) */
.hero__headline {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  color: #DDD7C8;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 auto 26px;
  max-width: 820px;
  text-align: center;
}
.hero__headline strong {
  color: var(--bone);
  background: linear-gradient(180deg, transparent 60%, rgba(255, 214, 10, 0.35) 60%);
  padding: 0 4px;
  font-weight: 700;
}
/* primo headline (lead-in prima del titolo) — serif Plex */
.hero__headline--lead {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #DDD7C8;
  letter-spacing: -0.005em;
}
/* secondo headline (dopo il titolo) — più margine sotto */
.hero__headline--main {
  margin-bottom: 40px;
}
@media (min-width: 760px) {
  .hero__headline--main { margin-bottom: 52px; }
}
/* "VIRUS" rosso nel titolo */
.hero__title .title-virus {
  color: var(--red);
}

/* utility: <br class="br-desktop"> attivo solo da desktop */
.br-desktop { display: none; }
@media (min-width: 760px) {
  .br-desktop { display: initial; }
}

/* 06 — SUBHEADLINE — LEGAL PAD CONFIDENZIALE (stropicciato, edge irregolari) */
.hero__subheadline {
  position: relative;
  max-width: 560px;
  margin: 44px auto 8px;
  padding: 50px 22px 28px 48px;
  color: #1a1a1a;
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.005em;
  text-align: left;
  transform: rotate(-1.4deg);

  /* paper realistico: pieghe + ombre più scure + macchie + righe */
  background:
    /* crease diagonale 1 (luce sottile) */
    linear-gradient(108deg, transparent 18%, rgba(255,255,255,0.14) 19%, rgba(255,255,255,0.04) 20%, transparent 21%),
    /* crease diagonale 2 (ombra più marcata) */
    linear-gradient(72deg, transparent 60%, rgba(0,0,0,0.16) 62%, rgba(0,0,0,0.08) 64%, transparent 66%),
    /* piega orizzontale al centro più visibile */
    linear-gradient(180deg, transparent 36%, rgba(0,0,0,0.10) 39%, rgba(0,0,0,0.04) 41%, transparent 44%),
    /* macchia scura angolo alto-dx (più scura) */
    radial-gradient(ellipse 38% 25% at 88% 18%, rgba(70, 50, 25, 0.30), transparent 72%),
    /* macchia scura basso-sx (più scura) */
    radial-gradient(ellipse 34% 22% at 14% 82%, rgba(70, 50, 25, 0.26), transparent 72%),
    /* macchia scura aggiuntiva centro-dx */
    radial-gradient(ellipse 28% 18% at 75% 60%, rgba(80, 55, 25, 0.18), transparent 75%),
    /* punto di luce centro-sx (lievemente ridotto) */
    radial-gradient(ellipse 28% 22% at 30% 45%, rgba(255, 250, 220, 0.22), transparent 70%),
    /* punto di luce alto-sx */
    radial-gradient(ellipse 30% 20% at 20% 12%, rgba(255, 248, 215, 0.18), transparent 75%),
    /* righe legal pad */
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 24px,
      rgba(60, 90, 170, 0.30) 24px,
      rgba(60, 90, 170, 0.30) 25px
    ),
    #C9B27A;

  /* edge irregolari: bordo strappato/sgualcito */
  clip-path: polygon(
    1% 1%,   6% 0%,  14% 2%, 28% 0%, 45% 1%, 62% 0%, 78% 2%, 92% 0%, 99% 1%,
    100% 12%, 99% 30%, 100% 50%, 99% 70%, 100% 88%, 99% 99%,
    94% 100%, 80% 98%, 64% 100%, 48% 99%, 30% 100%, 14% 98%, 4% 100%,
    0% 92%,   1% 70%,  0% 50%, 1% 30%, 0% 10%
  );

  /* ombra che segue la sagoma irregolare */
  filter:
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.hero__subheadline::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(208, 50, 50, 0.55);
}
.hero__subheadline::before {
  content: "CONFIDENZIALE";
  position: absolute;
  top: 14px;
  right: 18px;
  border: 2.5px solid #C8302E;
  color: #C8302E;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 5px 11px;
  transform: rotate(7deg);
  opacity: 0.88;
  background: rgba(201, 178, 122, 0.4);
  text-transform: uppercase;
}
@media (min-width: 760px) {
  .hero__subheadline {
    font-size: 16px;
    line-height: 29px;
    max-width: 620px;
    padding: 60px 32px 36px 64px;
    background:
      linear-gradient(108deg, transparent 18%, rgba(255,255,255,0.14) 19%, rgba(255,255,255,0.04) 20%, transparent 21%),
      linear-gradient(72deg, transparent 60%, rgba(0,0,0,0.16) 62%, rgba(0,0,0,0.08) 64%, transparent 66%),
      linear-gradient(180deg, transparent 36%, rgba(0,0,0,0.10) 39%, rgba(0,0,0,0.04) 41%, transparent 44%),
      radial-gradient(ellipse 38% 25% at 88% 18%, rgba(70, 50, 25, 0.30), transparent 72%),
      radial-gradient(ellipse 34% 22% at 14% 82%, rgba(70, 50, 25, 0.26), transparent 72%),
      radial-gradient(ellipse 28% 18% at 75% 60%, rgba(80, 55, 25, 0.18), transparent 75%),
      radial-gradient(ellipse 28% 22% at 30% 45%, rgba(255, 250, 220, 0.22), transparent 70%),
      radial-gradient(ellipse 30% 20% at 20% 12%, rgba(255, 248, 215, 0.18), transparent 75%),
      repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 28px,
        rgba(60, 90, 170, 0.30) 28px,
        rgba(60, 90, 170, 0.30) 29px
      ),
      #C9B27A;
  }
  .hero__subheadline::before {
    font-size: 14px;
    padding: 6px 14px;
    top: 18px;
    right: 22px;
  }
  .hero__subheadline::after { left: 44px; }
}

/* 07 — VSL */
.hero__vsl {
  margin: 32px auto 28px;
  max-width: 100%;
}
@media (min-width: 760px) {
  .hero__vsl { margin-top: 48px; }
}
@media (min-width: 1024px) {
  .hero__vsl { max-width: 820px; }
}
.vsl-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black-2);
  border: 2px dashed var(--red);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(225, 6, 0, 0.04) 0px,
      rgba(225, 6, 0, 0.04) 12px,
      transparent 12px,
      transparent 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(225,6,0,0.2);
}
.vsl-frame::before {
  content: "ASSET DA CREARE";
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.15em;
  background: var(--black);
  padding: 4px 8px;
  border: 1px solid var(--red);
}
.vsl-frame__play {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(28px, 6vw, 44px);
  color: var(--yellow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vsl-frame__play::before {
  content: "▶";
  display: inline-block;
  margin-right: 12px;
  color: var(--red);
  animation: pulsePlay 2s ease-in-out infinite;
}
@keyframes pulsePlay {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.vsl-frame__desc {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  color: var(--bone-dim);
  max-width: 44ch;
  line-height: 1.55;
}

/* 08 — CTA BUTTON */
.cta {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 24px;
  background: var(--red);
  color: var(--bone);
  border: none;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: clamp(18px, 4.5vw, 24px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 32px rgba(225, 6, 0, 0.35), 0 0 0 0 rgba(225, 6, 0, 0.5);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(225, 6, 0, 0.5);
}
.cta:active { transform: translateY(0); }

/* CTA con sub-text DENTRO il bottone (2 righe: label + sub) */
.cta--with-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 24px;
}
.cta__label {
  display: block;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: 1.1;
}
.cta__sub {
  display: block;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.25;
}
@media (min-width: 600px) {
  .cta__sub { font-size: 17px; }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(225, 6, 0, 0.35), 0 0 0 0 rgba(225, 6, 0, 0.5); }
  50% { box-shadow: 0 12px 32px rgba(225, 6, 0, 0.4), 0 0 0 12px rgba(225, 6, 0, 0); }
}

.cta__note,
.section .cta__note {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: var(--bone-dim);
  margin: 14px auto 0;
  max-width: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* desktop hero scaling */
@media (min-width: 760px) {
  .hero { padding: 56px 32px 88px; }
  .hero__headline { margin-bottom: 24px; }
  /* VIRUS PRUSSIANO largo come la VSL (max 820px @ 1024+).
     15 char × ~0.59em ≈ 8.85em → font = (vw - padding) / 8.85, cap 92px */
  .hero__title { font-size: min(calc((100vw - 64px) / 8.85), 92px); }
  /* più aria tra la headline principale e la VSL */
  .hero__headline--main { margin-bottom: 88px; }
}

/* =========================================================
   STICKY BOTTOM BAR
   ========================================================= */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(225, 6, 0, 0.45);
  box-shadow:
    0 -10px 30px rgba(0, 0, 0, 0.5),
    0 -1px 0 rgba(225, 6, 0, 0.2);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.22, 0.85, 0.25, 1);
  will-change: transform;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.sticky-cta__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  order: 2;
  text-align: center;
  align-items: center;
}
.sticky-cta__info-title {
  display: none;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--bone);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.sticky-cta__info-meta {
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  color: var(--bone-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sticky-cta__btn {
  order: 1;
  width: 100%;
  background: var(--red);
  color: var(--bone);
  border: 0;
  padding: 20px 24px;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: clamp(18px, 4.5vw, 24px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(225, 6, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.sticky-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(225, 6, 0, 0.5);
  background: #ff1a14;
}
.sticky-cta__btn:active { transform: translateY(0); }

/* sticky CTA con sub-text DENTRO — su mobile matcha la hero CTA */
.sticky-cta__btn--with-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 24px;
}
.sticky-cta__btn-label {
  display: block;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: 1.1;
}
.sticky-cta__btn-sub {
  display: block;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.25;
}
@media (min-width: 640px) {
  .sticky-cta__btn--with-sub { padding: 16px 36px; gap: 4px; }
  .sticky-cta__btn-sub { font-size: 17px; }
}
@media (min-width: 640px) {
  .sticky-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 24px;
  }
  .sticky-cta__info {
    order: 0;
    text-align: left;
    align-items: flex-start;
    flex: 1 1 auto;
  }
  .sticky-cta__info-title {
    display: block;
    font-size: 18px;
  }
  .sticky-cta__info-meta { font-size: 13px; }
  .sticky-cta__btn {
    order: 0;
    width: auto;
    flex: 0 0 auto;
    min-width: 380px;
    max-width: none;
    padding: 18px 36px;
    font-size: clamp(20px, 1.7vw, 24px);
  }
}
/* dare spazio al footer per non finire sotto la barra */
body.has-sticky-cta footer { padding-bottom: 110px; }
@media (min-width: 640px) {
  body.has-sticky-cta { padding-bottom: 96px; }
  body.has-sticky-cta footer { padding-bottom: 0; }
}

/* =========================================================
   MODAL — dossier classified style
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  background: var(--black);
  color: var(--bone);
  max-width: 460px;
  width: 100%;
  max-height: 94vh;
  overflow-y: auto;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--bone-dim);
  border: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 3;
}
.modal__close:hover { color: var(--bone); }

.modal__body {
  padding: 40px 28px 28px;
  text-align: center;
}

/* kicker sopra al title — supporto dell'azione */
.modal__kicker {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--bone-dim);
  letter-spacing: 0.01em;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(225, 6, 0, 0.35);
}
.modal__kicker .accent { color: var(--red); }

/* H2 = nome evento, stile logo hero */
.modal h2 {
  font-family: 'Special Elite', 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  color: var(--bone);
  text-transform: uppercase;
}
.modal h2 .title-virus { color: var(--red); }
.modal h2 .accent { color: var(--red); }

.modal__sub {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 17px;
  line-height: 1.4;
  color: var(--bone-dim);
  margin: 0 0 24px;
}

.modal__form { display: grid; gap: 12px; }

.modal__form input[type="email"],
.modal__form input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--black-2);
  color: var(--bone);
  border: 1px solid var(--grey);
  border-radius: 6px;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal__form input[type="email"]::placeholder,
.modal__form input[type="text"]::placeholder {
  color: rgba(245, 241, 232, 0.4);
}
.modal__form input[type="email"]:focus,
.modal__form input[type="text"]:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.15);
}

.modal__form button {
  width: 100%;
  padding: 16px;
  margin-top: 4px;
  background: var(--red);
  color: var(--bone);
  border: 0;
  border-radius: 6px;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.modal__form button:hover {
  background: #ff1a14;
  transform: translateY(-1px);
}
.modal__form button:active { transform: translateY(0); }


.modal__note {
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  color: var(--bone-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 14px 0 0;
  text-align: center;
}
.modal__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.modal__error {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #ff6b66;
  margin: 8px 0 0;
  text-align: center;
  min-height: 1.2em;
}
.modal__form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

@media (min-width: 600px) {
  .modal__dialog { max-width: 580px; }
  .modal__body { padding: 56px 48px 40px; }
  .modal__close { top: 16px; right: 16px; width: 38px; height: 38px; font-size: 26px; }
  .modal__kicker { font-size: 17px; margin-bottom: 18px; padding-bottom: 18px; }
  .modal h2 { font-size: clamp(40px, 5vw, 56px); margin-bottom: 16px; }
  .modal__sub { font-size: 20px; line-height: 1.45; margin-bottom: 32px; }
  .modal__form { gap: 14px; }
  .modal__form input[type="email"],
  .modal__form input[type="text"] {
    padding: 17px 20px;
    font-size: 18px;
  }
  .modal__form button {
    padding: 20px;
    font-size: 21px;
    margin-top: 8px;
  }
  .modal__note { font-size: 12px; margin-top: 18px; letter-spacing: 0.14em; }
}

/* =========================================================
   SECTIONS BELOW HERO
   ========================================================= */
.section {
  padding: 20px 20px;
  position: relative;
}
@media (min-width: 760px) { .section { padding: 28px 32px; } }

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section h2 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 auto 36px;
  color: var(--bone);
  max-width: 820px;
  text-align: center;
}
.section h2 .accent { color: var(--red); }

.section p {
  font-size: clamp(20px, 1.5vw, 20px);
  margin-bottom: 22px;
  color: #B8B3A6;
  max-width: 62ch;
}
.section p strong {
  color: var(--bone);
  font-weight: 700;
}
.section p.lead {
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--bone);
  font-weight: 500;
  margin-bottom: 28px;
}

/* =========================================================
   NARRATIVE SECTIONS — template unificato
   Tutte le sezioni narrative (virus, block, antidote, team)
   condividono lo stesso background, grid, behavior.
   ========================================================= */
.section-virus .grid,
.section-block .grid,
.section-antidote .grid,
.section-team .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
/* su mobile: immagine tra h2 e paragrafo (sopra la copy) */
@media (max-width: 899px) {
  .section-virus .grid > .visual-stack,
  .section-block .grid > .visual-stack,
  .section-antidote .grid > .visual-stack,
  .section-team .grid > .visual-stack { order: 1; }
  .section-virus .grid > .copy-rhythm,
  .section-block .grid > .copy-rhythm,
  .section-antidote .grid > .copy-rhythm,
  .section-team .grid > .copy-rhythm { order: 2; }
  /* breathing room sotto l'immagine prima della copy */
  .section-virus .grid > .visual-stack,
  .section-block .grid > .visual-stack,
  .section-antidote .grid > .visual-stack,
  .section-team .grid > .visual-stack {
    margin-bottom: 12px;
  }
}
@media (min-width: 900px) {
  .section-virus .grid,
  .section-block .grid,
  .section-antidote .grid,
  .section-team .grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: start;
  }
  /* immagine sticky: resta visibile mentre la copy scrolla */
  .section-virus .grid > .visual-stack,
  .section-block .grid > .visual-stack,
  .section-antidote .grid > .visual-stack,
  .section-team .grid > .visual-stack {
    position: sticky;
    top: 96px;
    align-self: start;
  }
  /* sezioni con immagine a sinistra (alternanza) */
  .section--reverse .grid {
    grid-template-columns: 1fr 1.3fr;
  }
  .section--reverse .grid > .copy-rhythm { order: 2; }
  .section--reverse .grid > .visual-stack,
  .section--reverse .grid > :not(.copy-rhythm) { order: 1; }
}

.visual-stack { display: grid; gap: 20px; }

/* event section */
.section-event { text-align: center; }
.section-event h2 { margin-left: auto; margin-right: auto; }

.bullets {
  list-style: none;
  max-width: 920px;
  margin: 40px auto 48px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .bullets { grid-template-columns: repeat(3, 1fr); } }
/* SOLO event section desktop: bullets allargate alla width delle narrative */
@media (min-width: 760px) {
  .section-event .bullets { max-width: var(--max); }
}

.bullets li {
  background: var(--black-2);
  border: 1px solid var(--grey);
  border-top: 3px solid var(--red);
  padding: 26px 22px;
  text-align: left;
  font-size: 18px;
  line-height: 1.55;
  color: var(--bone);
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
@media (min-width: 760px) {
  .bullets li { font-size: 20px; }
}
/* event: testo non-bold leggermente sbiadito, strong resta full bone */
.section-event .bullets li { color: #B8B3A6; }
.section-event .bullets li strong { color: var(--bone); }

/* bio editorial copy (magazine style — niente cards) */
.section-bio .bio-copy {
  text-align: left;
}
.section-bio .bio-copy p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: #B8B3A6;
  max-width: none;
}
.section-bio .bio-copy p:last-child {
  margin-bottom: 0;
}
.section-bio .bio-copy p strong {
  color: var(--bone);
  font-weight: 700;
}
@media (min-width: 760px) {
  .section-bio .bio-copy p {
    font-size: 20px;
    margin-bottom: 22px;
  }
}
.bullets li:hover { border-color: var(--red); transform: translateY(-3px); }
.bullets li::before {
  content: counter(bullet, decimal-leading-zero);
  counter-increment: bullet;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.bullets { counter-reset: bullet; }

/* placeholder reused in body sections */
.placeholder {
  border: 2px dashed var(--red);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(225, 6, 0, 0.04) 0px,
      rgba(225, 6, 0, 0.04) 12px,
      transparent 12px,
      transparent 24px
    ),
    var(--black-2);
  color: var(--bone);
  padding: 36px 22px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
}
.placeholder::before {
  content: "ASSET DA CREARE";
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.15em;
  background: var(--black);
  padding: 4px 8px;
  border: 1px solid var(--red);
}
.placeholder__title {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.placeholder__desc {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  color: var(--bone-dim);
  max-width: 38ch;
  line-height: 1.55;
}
.placeholder--portrait { min-height: 360px; }
.placeholder--map { min-height: 340px; }
.placeholder--brain { min-height: 280px; }

/* utilities */
.stamp {
  display: inline-block;
  transform: rotate(-4deg);
  border: 3px solid var(--red);
  color: var(--red);
  font-family: 'IBM Plex Serif', Georgia, serif;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.85;
}
.quote-mark {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 80px;
  color: var(--red);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}
/* tutti i paragrafi della copy hanno lo stesso ritmo — un a capo = un paragrafo */
.copy-rhythm p,
.copy-rhythm p.short {
  margin-bottom: 22px;
  font-size: clamp(20px, 1.5vw, 20px);
}

/* mid-section heading inside copy-rhythm */
.copy-rhythm h3 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 34px);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--bone);
  margin: 32px 0 18px;
  letter-spacing: 0.02em;
  max-width: 22ch;
}
.copy-rhythm h3 .accent { color: var(--red); }

/* AUTHOR CARD (riusabile in più sezioni team) */
.author-card {
  background: var(--black-2);
  border: 1px solid var(--grey);
  border-top: 4px solid var(--red);
  padding: 22px;
  text-align: center;
}
@media (min-width: 900px) {
  .author-card { position: sticky; top: 60px; }
}
.author-card__photo {
  width: 100%;
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(225, 6, 0, 0.04) 0,
      rgba(225, 6, 0, 0.04) 12px,
      transparent 12px,
      transparent 24px
    ),
    var(--black);
  border: 2px dashed var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  color: var(--bone-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  text-align: center;
  line-height: 1.5;
}
.author-card__name {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}
.author-card__role {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 6px;
}
.author-card__stat {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--grey);
}
.author-card__stat-num {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--red);
  line-height: 1;
}
.author-card__stat-lbl {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: var(--bone-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================
   BIO PIN (Chi è Sam?) — scrollytelling
   Mobile: stack normale.
   Desktop: section pinned, cards animano con scroll.
   ============================================ */

/* MOBILE DEFAULT */
.section-bio { text-align: center; }
.bio-pin__stage {
  max-width: var(--max);
  margin: 0 auto;
}
.bio-pin__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}
.bio-pin__photo { width: 100%; max-width: 420px; }
.bio-pin__viewport { width: 100%; }
.bio-pin__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: biopin;
}
.bio-pin__card {
  counter-increment: biopin;
  background: var(--black-2);
  border: 1px solid var(--grey);
  border-radius: 4px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
  text-align: left;
}
.bio-pin__card::before {
  content: counter(biopin, decimal-leading-zero);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
  /* nudge to align cap-top of digit with cap-top of first text line */
  margin-top: -1px;
  transform: translateY(2px);
}
.bio-pin__card p {
  font-size: 17px;
  line-height: 1.55;
  color: #B8B3A6;
  margin: 0;
}
.bio-pin__card p strong {
  color: var(--bone);
  font-weight: 700;
}

/* DESKTOP — scrollytelling pin */
@media (min-width: 900px) {
  .section-bio.bio-pin {
    height: 500vh;
    padding: 0;
  }
  .bio-pin__stage {
    position: sticky;
    top: 0;
    height: 100vh;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 32px;
    overflow: hidden;
  }
  .bio-pin__stage > h2 { margin-bottom: 36px; }
  .bio-pin__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
    align-items: center;
    flex-direction: row;
  }
  .bio-pin__photo { max-width: none; }
  .bio-pin__viewport {
    position: relative;
    height: 70vh;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  }
  .bio-pin__cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.22, 0.85, 0.25, 1);
    will-change: transform;
  }
  .bio-pin__card {
    flex-shrink: 0;
    height: 260px;
    background: linear-gradient(135deg, var(--black-2) 0%, #0E0E0E 100%);
    border: 1px solid var(--grey);
    border-radius: 6px;
    padding: 32px 36px;
    align-items: start;
    column-gap: 28px;
    opacity: 0.22;
    transform: scale(0.93);
    filter: blur(0.5px);
    transition:
      opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      filter 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      border-color 0.6s,
      box-shadow 0.6s;
  }
  .bio-pin__card::before {
    font-size: 72px;
    color: var(--red);
    opacity: 0.5;
    margin-top: 0;
    transform: translateY(-3px);
    transition: opacity 0.6s, color 0.6s;
  }
  .bio-pin__card p {
    font-size: 19px;
    line-height: 1.55;
  }
  .bio-pin__card.is-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
    border-color: var(--red);
    box-shadow:
      0 28px 64px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(225, 6, 0, 0.4),
      0 0 60px rgba(225, 6, 0, 0.15);
  }
  .bio-pin__card.is-active::before { opacity: 1; }
  .bio-pin__card.is-active p { color: #B8B3A6; }
  .bio-pin__card.is-active p strong { color: var(--bone); }
  .bio-pin__progress {
    position: absolute;
    bottom: 24px;
    right: 32px;
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 14px;
    color: var(--bone-dim);
    letter-spacing: 0.1em;
    font-feature-settings: "tnum";
    z-index: 5;
  }
  .bio-pin__progress span { color: var(--red); }
}
@media (max-width: 899px) {
  .bio-pin__progress { display: none; }
}
.section-bio h2 {
  margin: 0 auto 32px;
  max-width: 18ch;
}
.section-bio__placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  background: var(--black-2);
  border: 2px dashed var(--red);
  font-family: 'Special Elite', monospace;
  color: var(--bone-dim);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  line-height: 1.6;
}
.section-bio__placeholder::before {
  content: "COPY DA SCRIVERE";
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  background: var(--red);
  color: var(--bone);
  padding: 4px 8px;
  border: 1px solid var(--red);
}

/* FAQ SECTION */
.section-faq h2 {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 22ch;
}
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: var(--black-2);
  border: 1px solid var(--grey);
  border-left: 3px solid var(--red);
  transition: border-color 0.2s, background 0.2s;
}
.faq details[open] {
  border-color: var(--red);
  background:
    linear-gradient(180deg, rgba(225, 6, 0, 0.04), transparent 100%),
    var(--black-2);
}
.faq summary {
  list-style: none;
  padding: 22px 56px 22px 24px;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bone);
  cursor: pointer;
  position: relative;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--red); }
.faq__answer {
  padding: 0 24px 24px;
  color: var(--bone);
  font-size: 16px;
  line-height: 1.7;
}
.faq__answer p { margin-bottom: 12px; max-width: none; }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer strong { color: var(--bone); font-weight: 700; }

/* =========================================================
   FIGURE / IMAGE WRAPPER
   ========================================================= */
.figure {
  position: relative;
  width: 100%;
  margin: 0;
  background: var(--black-2);
  border: 1px solid var(--grey);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.figure img {
  display: block;
  width: 100%;
  height: auto;
}
.figure__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  color: var(--bone);
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 32px 14px 12px;
  text-align: center;
  pointer-events: none;
}
.figure__caption .accent { color: var(--red); }

/* =========================================================
   VSL FRAME — FILLED (con immagine reale)
   ========================================================= */
.vsl-frame--filled {
  background: transparent;
  background-image: none;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
  cursor: pointer;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 14px 28px rgba(0, 0, 0, 0.4),
    0 0 24px 6px rgba(225, 6, 0, 0.45),
    0 0 60px 12px rgba(225, 6, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vsl-frame--filled::before {
  display: none;
}
.vsl-frame--filled:hover {
  transform: translateY(-3px);
  box-shadow:
    0 38px 80px rgba(0, 0, 0, 0.6),
    0 18px 36px rgba(0, 0, 0, 0.45),
    0 0 32px 8px rgba(225, 6, 0, 0.6),
    0 0 80px 16px rgba(225, 6, 0, 0.3);
}
.vsl-frame__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.vsl-frame__urgent {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--bone);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 11px;
  z-index: 2;
  text-transform: uppercase;
}
.vsl-frame__urgent::before {
  content: "● ";
  color: var(--yellow);
  font-size: 9px;
  animation: blink 1.2s infinite;
}
.vsl-frame__overlay-text {
  position: absolute;
  bottom: 18px; left: 16px; right: 16px;
  text-align: center;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 32px);
  letter-spacing: 0.04em;
  color: var(--bone);
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 2px 14px rgba(0,0,0,0.95), 0 0 4px rgba(0,0,0,0.9);
  line-height: 1.05;
}
.vsl-frame__play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 12vw, 92px);
  height: clamp(64px, 12vw, 92px);
  background: rgba(225, 6, 0, 0.92);
  color: var(--bone);
  border: 3px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 4vw, 32px);
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 0 0 0 rgba(225,6,0,0.6), 0 12px 30px rgba(0,0,0,0.5);
  animation: ctaPulse 2.4s ease-in-out infinite;
  padding-left: 6px;
}
.vsl-frame--filled:hover .vsl-frame__play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--red);
}

/* =========================================================
   VSL PLAYER — wrapper per il video VTurb (no aspect-ratio,
   il player gestisce la sua altezza). Mantiene border-radius
   e glow rosso del .vsl-frame--filled.
   ========================================================= */
.vsl-player {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 14px 28px rgba(0, 0, 0, 0.4),
    0 0 24px 6px rgba(225, 6, 0, 0.45),
    0 0 60px 12px rgba(225, 6, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vsl-player:hover {
  transform: translateY(-3px);
  box-shadow:
    0 38px 80px rgba(0, 0, 0, 0.6),
    0 18px 36px rgba(0, 0, 0, 0.45),
    0 0 32px 8px rgba(225, 6, 0, 0.6),
    0 0 80px 16px rgba(225, 6, 0, 0.3);
}

/* =========================================================
   AUTHOR CARD — FILLED
   ========================================================= */
.author-card__photo--filled {
  padding: 0;
  border: 2px solid var(--red);
  background: var(--black);
  overflow: hidden;
}
.author-card__photo--filled img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* fade-in on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* footer */
footer {
  background: var(--black);
  color: var(--bone-dim);
  text-align: center;
  padding: 32px 20px;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--grey);
}
footer p { margin-bottom: 6px; max-width: none; font-size: 12px; }
footer a { color: var(--red); text-decoration: none; }
footer a:hover { text-decoration: underline; }
