:root {
  --ig-black: #050505;
  --ig-charcoal: #111111;
  --ig-red: #B91C1C;
  --ig-red-dark: #7F1D1D;
  --ig-paper: #F5F5F0;
  --ig-muted: #B8B8B8;
  --ig-archive: #D6B46A;
  --ig-blue: #0F172A;
  --ig-line: rgba(185, 28, 28, 0.42);
  --ig-line-soft: rgba(245, 245, 240, 0.12);
  --ig-panel: rgba(245, 245, 240, 0.055);
  --ig-panel-strong: rgba(245, 245, 240, 0.095);
  --ig-shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.inganno-page {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.42), transparent 460px),
    linear-gradient(180deg, var(--ig-black), #090909 45%, var(--ig-black));
  color: var(--ig-paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0;
}

body.inganno-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 245, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 240, 0.03) 1px, transparent 1px),
    radial-gradient(circle, rgba(245, 245, 240, 0.16) 0 1px, transparent 1px);
  background-size: 76px 76px, 76px 76px, 130px 130px;
  opacity: 0.32;
}

body.inganno-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), transparent 20%, transparent 80%, rgba(5, 5, 5, 0.96));
  mix-blend-mode: screen;
  opacity: 0.24;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p,
h1,
h2,
h3,
ul,
blockquote,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.inganno-container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.inganno-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 12px 28px;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(245, 245, 240, 0.09);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.inganno-header.is-scrolled {
  background: rgba(5, 5, 5, 0.94);
  border-color: rgba(185, 28, 28, 0.34);
}

.inganno-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--ig-paper);
}

.inganno-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ig-line);
  background: rgba(185, 28, 28, 0.14);
  color: var(--ig-archive);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  border-radius: 6px;
}

.inganno-header-badge {
  justify-self: center;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(214, 180, 106, 0.35);
  color: var(--ig-archive);
  background: rgba(214, 180, 106, 0.08);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

.inganno-header-cta,
.inganno-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.inganno-header-cta,
.inganno-btn-primary {
  border: 1px solid rgba(248, 113, 113, 0.56);
  background: linear-gradient(180deg, #D52B2B, var(--ig-red-dark));
  color: #fff;
  box-shadow: 0 16px 42px rgba(185, 28, 28, 0.28);
}

.inganno-header-cta:hover,
.inganno-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(185, 28, 28, 0.36);
}

.inganno-header-cta[aria-disabled="true"],
.inganno-btn[aria-disabled="true"],
.inganno-mobile-sticky[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}

.inganno-btn-secondary {
  border: 1px solid rgba(214, 180, 106, 0.42);
  background: rgba(214, 180, 106, 0.08);
  color: var(--ig-archive);
}

.inganno-btn-secondary:hover {
  border-color: rgba(214, 180, 106, 0.7);
  background: rgba(214, 180, 106, 0.14);
  transform: translateY(-2px);
}

.inganno-btn-wide {
  width: 100%;
}

.inganno-text-link,
.inganno-small-decline {
  color: rgba(245, 245, 240, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(245, 245, 240, 0.28);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.inganno-text-link:hover,
.inganno-small-decline:hover {
  color: var(--ig-paper);
  text-decoration-color: var(--ig-red);
}

.inganno-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 20px 0 12px;
  border-bottom: 1px solid rgba(245, 245, 240, 0.08);
}

.inganno-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 52%;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(185, 28, 28, 0.28) 18% 18.25%, transparent 18.25% 100%),
    linear-gradient(74deg, transparent 0 64%, rgba(214, 180, 106, 0.16) 64% 64.2%, transparent 64.2% 100%);
  opacity: 0.8;
}

.inganno-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.inganno-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: grayscale(0.25) saturate(0.72) contrast(1.12);
}

.inganno-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.86) 42%, rgba(5, 5, 5, 0.58) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.52), rgba(5, 5, 5, 0.94) 82%);
}

.inganno-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 32px;
  align-items: center;
}

.inganno-hero-copy,
.inganno-rich-copy,
.inganno-offer-copy,
.inganno-author-grid > *,
.inganno-two-col > *,
.inganno-audience-grid > *,
.inganno-offer-grid > *,
.inganno-faq-grid > *,
.inganno-materials-grid > *,
.inganno-urgency-grid > * {
  min-width: 0;
}

.inganno-badge,
.inganno-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(214, 180, 106, 0.32);
  border-left-color: var(--ig-red);
  color: var(--ig-archive);
  background: rgba(17, 17, 17, 0.82);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--ig-paper);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: 46px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 25px;
}

.inganno-lead {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(245, 245, 240, 0.83);
  font-size: 16px;
  line-height: 1.55;
}

.inganno-price-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 10px;
  border: 1px solid rgba(245, 245, 240, 0.13);
  border-left: 3px solid var(--ig-red);
  background: rgba(5, 5, 5, 0.62);
  border-radius: 8px;
}

.inganno-price-strip span {
  color: var(--ig-muted);
}

.inganno-price-strip strong {
  color: var(--ig-archive);
  font-size: 18px;
}

.inganno-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.inganno-actions.is-centered {
  justify-content: center;
}

.inganno-microcopy {
  margin-top: 10px;
  color: rgba(245, 245, 240, 0.68);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.inganno-hero-panel {
  position: relative;
  display: block;
}

.inganno-poster,
.inganno-product-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(245, 245, 240, 0.14);
  background: var(--ig-charcoal);
  border-radius: 8px;
  box-shadow: var(--ig-shadow);
  transform: perspective(1000px) rotateY(-6deg) rotateX(1deg);
}

.inganno-product-hero {
  min-height: auto;
}

.inganno-poster::before,
.inganno-poster::after,
.inganno-product-hero::before,
.inganno-product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.inganno-poster::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.86)),
    linear-gradient(115deg, transparent 0 44%, rgba(185, 28, 28, 0.52) 44% 44.35%, transparent 44.35% 100%),
    linear-gradient(72deg, transparent 0 64%, rgba(214, 180, 106, 0.28) 64% 64.35%, transparent 64.35% 100%);
}

.inganno-product-hero::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.38)),
    linear-gradient(110deg, rgba(185, 28, 28, 0.18), transparent 44%, rgba(214, 180, 106, 0.12));
}

.inganno-poster::after,
.inganno-product-hero::after {
  border: 10px solid rgba(5, 5, 5, 0.38);
  box-shadow: inset 0 0 0 1px rgba(245, 245, 240, 0.1);
}

.inganno-poster img,
.inganno-product-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.16);
}

.inganno-product-hero img {
  aspect-ratio: 3 / 2;
  height: auto;
  object-position: center;
  filter: contrast(1.06) saturate(0.96);
}

.inganno-poster figcaption,
.inganno-product-hero figcaption {
  position: absolute;
  inset: auto 20px 22px 20px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.inganno-poster figcaption span,
.inganno-poster figcaption em,
.inganno-product-hero figcaption span {
  color: rgba(245, 245, 240, 0.78);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.inganno-poster figcaption strong {
  color: #fff;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 44px;
  line-height: 0.95;
  text-transform: uppercase;
}

.inganno-product-hero figcaption {
  inset: auto 16px 16px 16px;
  padding: 12px;
  border: 1px solid rgba(214, 180, 106, 0.28);
  border-left: 3px solid var(--ig-red);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  border-radius: 8px;
}

.inganno-product-hero figcaption strong {
  color: var(--ig-archive);
  font-size: 15px;
  line-height: 1.28;
}

.inganno-dossier-card,
.inganno-visual-card,
.inganno-visual-band,
.inganno-product-showcase,
.inganno-content-grid article,
.inganno-question-grid article,
.inganno-not-for,
.inganno-offer-card,
.inganno-urgency-card,
.inganno-faq-item,
.inganno-paper,
.inganno-timeline,
.inganno-dossier-quote {
  border: 1px solid var(--ig-line-soft);
  background:
    linear-gradient(180deg, rgba(245, 245, 240, 0.075), rgba(245, 245, 240, 0.035)),
    rgba(17, 17, 17, 0.74);
  border-radius: 8px;
}

.inganno-dossier-card {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  align-items: center;
  padding: 12px;
  border-left: 3px solid var(--ig-red);
  margin-top: 14px;
  backdrop-filter: blur(12px);
}

.inganno-dossier-label {
  grid-column: 1 / -1;
  color: var(--ig-archive);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.inganno-dossier-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ig-muted);
  font-size: 15px;
}

.inganno-dossier-row.is-highlighted {
  align-items: baseline;
  color: var(--ig-paper);
}

.inganno-dossier-row strong {
  color: var(--ig-archive);
  font-size: 24px;
}

.inganno-dossier-card > p:last-child {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: rgba(245, 245, 240, 0.76);
  font-size: 13px;
}

.inganno-section {
  padding: 94px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.07);
}

.inganno-intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(127, 29, 29, 0.24), transparent 30rem),
    radial-gradient(circle at 84% 38%, rgba(214, 180, 106, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(18, 18, 18, 0.82));
}

.inganno-intro .inganno-container {
  max-width: 1060px;
}

.inganno-intro-player {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(214, 180, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 180, 106, 0.11), rgba(127, 29, 29, 0.16)),
    rgba(5, 5, 5, 0.7);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.46), 0 0 70px rgba(127, 29, 29, 0.18);
}

.inganno-intro-player::before {
  content: "";
  position: absolute;
  inset: -34px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(214, 180, 106, 0.16), transparent 62%);
  filter: blur(14px);
}

.inganno-intro-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #050505;
  object-fit: cover;
}

.inganno-intro-player figcaption {
  margin-top: 12px;
  color: rgba(245, 245, 240, 0.72);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.42;
  text-transform: uppercase;
}

.inganno-visual-card,
.inganno-visual-band,
.inganno-product-showcase {
  position: relative;
  overflow: hidden;
  border-color: rgba(214, 180, 106, 0.24);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.inganno-visual-card img,
.inganno-visual-band img,
.inganno-product-showcase img,
.inganno-dedication-symbol img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.inganno-visual-card figcaption,
.inganno-visual-band figcaption,
.inganno-product-showcase figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-top: 1px solid rgba(245, 245, 240, 0.1);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.82)),
    rgba(5, 5, 5, 0.5);
}

.inganno-visual-card figcaption span,
.inganno-visual-band figcaption span,
.inganno-product-showcase figcaption span {
  color: var(--ig-archive);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.inganno-visual-card figcaption strong,
.inganno-visual-band figcaption strong,
.inganno-product-showcase figcaption strong {
  color: rgba(245, 245, 240, 0.88);
  font-size: 15px;
  line-height: 1.38;
}

.inganno-two-col,
.inganno-continuity-grid,
.inganno-critical-grid,
.inganno-author-grid,
.inganno-materials-grid,
.inganno-offer-grid,
.inganno-urgency-grid,
.inganno-faq-grid,
.inganno-audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.inganno-rich-copy,
.inganno-large-copy {
  color: rgba(245, 245, 240, 0.78);
}

.inganno-rich-copy p + p,
.inganno-author p + p {
  margin-top: 16px;
}

.inganno-rich-copy .inganno-btn {
  margin-top: 28px;
}

.inganno-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.inganno-section-head h2,
.inganno-two-col h2,
.inganno-author h2,
.inganno-offer h2,
.inganno-faq h2,
.inganno-closing h2,
.inganno-dedication h2 {
  margin-top: 16px;
}

.inganno-section-head p {
  margin-top: 18px;
  color: rgba(245, 245, 240, 0.76);
  font-size: 18px;
}

.inganno-continuity {
  background:
    linear-gradient(90deg, rgba(127, 29, 29, 0.16), transparent 46%),
    rgba(5, 5, 5, 0.6);
}

.inganno-continuity-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.76fr);
  align-items: center;
}

.inganno-continuity-copy h2 {
  margin-top: 16px;
}

.inganno-continuity-copy .inganno-rich-copy {
  margin-top: 20px;
  max-width: 720px;
}

.inganno-continuity-copy .inganno-btn {
  margin-top: 28px;
}

.inganno-bridge-card img {
  aspect-ratio: 4 / 3;
}

.inganno-question {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.22), transparent),
    rgba(17, 17, 17, 0.38);
}

.inganno-signal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: stretch;
  margin-bottom: 22px;
}

.inganno-signal-card img {
  min-height: 250px;
  aspect-ratio: 16 / 7;
}

.inganno-signal-card figcaption {
  align-content: center;
  border-top: 0;
  border-left: 1px solid rgba(245, 245, 240, 0.1);
}

.inganno-question-grid,
.inganno-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inganno-question-grid article,
.inganno-content-grid article {
  position: relative;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
}

.inganno-question-grid article::before,
.inganno-content-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--ig-red), transparent);
}

.inganno-question-grid span,
.inganno-content-grid span {
  display: block;
  color: var(--ig-archive);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.inganno-question-grid p {
  margin-top: 32px;
  color: var(--ig-paper);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 26px;
  line-height: 1.12;
  text-transform: uppercase;
}

.inganno-author {
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.32));
}

.inganno-author blockquote {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--ig-red);
  color: var(--ig-paper);
  background: rgba(185, 28, 28, 0.11);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 30px;
  line-height: 1.16;
  text-transform: uppercase;
  border-radius: 8px;
}

.inganno-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 26px;
  border-color: rgba(214, 180, 106, 0.22);
}

.inganno-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 32px;
  width: 1px;
  background: linear-gradient(180deg, var(--ig-red), rgba(214, 180, 106, 0.52), transparent);
}

.inganno-timeline-item {
  position: relative;
  padding-left: 34px;
}

.inganno-timeline-item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--ig-archive);
  background: var(--ig-red-dark);
  border-radius: 50%;
}

.inganno-timeline-item strong {
  display: block;
  color: var(--ig-paper);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  text-transform: uppercase;
}

.inganno-timeline-item span {
  display: block;
  margin-top: 6px;
  color: rgba(245, 245, 240, 0.72);
}

.inganno-content-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inganno-product-showcase {
  margin-bottom: 24px;
  border-color: rgba(214, 180, 106, 0.3);
  background:
    linear-gradient(180deg, rgba(245, 245, 240, 0.07), rgba(245, 245, 240, 0.025)),
    rgba(5, 5, 5, 0.72);
}

.inganno-product-showcase img {
  aspect-ratio: 3 / 2;
  filter: contrast(1.04) saturate(0.96);
}

.inganno-product-showcase figcaption {
  border-top-color: rgba(214, 180, 106, 0.2);
}

.inganno-content-grid article {
  min-height: 285px;
}

.inganno-content-grid h3 {
  margin-top: 20px;
  font-size: 23px;
}

.inganno-content-grid p {
  margin-top: 14px;
  color: rgba(245, 245, 240, 0.72);
  font-size: 15px;
}

.inganno-materials {
  background:
    linear-gradient(180deg, rgba(214, 180, 106, 0.06), transparent),
    rgba(5, 5, 5, 0.36);
}

.inganno-evidence-board {
  position: relative;
  min-height: 420px;
}

.inganno-evidence-board::before,
.inganno-evidence-board::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(185, 28, 28, 0.72);
  transform-origin: left;
}

.inganno-evidence-board::before {
  top: 118px;
  left: 25%;
  width: 48%;
  transform: rotate(18deg);
}

.inganno-evidence-board::after {
  top: 266px;
  left: 18%;
  width: 58%;
  transform: rotate(-11deg);
}

.inganno-paper {
  position: absolute;
  z-index: 1;
  width: 260px;
  min-height: 150px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(245, 245, 240, 0.92), rgba(214, 180, 106, 0.78)),
    var(--ig-paper);
  color: #151515;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.inganno-paper.is-main {
  top: 0;
  left: 0;
  width: 320px;
  min-height: 210px;
  transform: rotate(-2deg);
}

.inganno-paper:nth-child(2) {
  top: 154px;
  right: 8px;
  transform: rotate(3deg);
}

.inganno-paper:nth-child(3) {
  left: 82px;
  bottom: 8px;
  transform: rotate(-3deg);
}

.inganno-paper span {
  display: block;
  color: var(--ig-red-dark);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.inganno-paper strong {
  display: block;
  margin-top: 18px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}

.inganno-paper p {
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
}

.inganno-note {
  padding: 14px;
  border: 1px dashed rgba(214, 180, 106, 0.42);
  color: rgba(245, 245, 240, 0.64);
  background: rgba(214, 180, 106, 0.06);
  border-radius: 8px;
}

.inganno-emotional {
  background:
    linear-gradient(115deg, rgba(127, 29, 29, 0.22), transparent 48%),
    rgba(17, 17, 17, 0.44);
}

.inganno-critical-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
}

.inganno-critical-panel {
  display: grid;
  gap: 24px;
}

.inganno-critical-panel h2 {
  margin-top: -8px;
}

.inganno-lens-card img {
  aspect-ratio: 4 / 3;
}

.inganno-dossier-quote {
  margin-top: 22px;
  padding: 24px;
  border-color: rgba(185, 28, 28, 0.4);
  color: var(--ig-paper);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 34px;
  line-height: 1.1;
  text-transform: uppercase;
}

.inganno-dedication {
  text-align: center;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(214, 180, 106, 0.08) 16% 16.2%, transparent 16.2% 100%),
    linear-gradient(270deg, transparent 0 16%, rgba(185, 28, 28, 0.11) 16% 16.2%, transparent 16.2% 100%);
}

.inganno-dedication .inganno-container {
  max-width: 880px;
}

.inganno-dedication .inganno-kicker {
  margin-inline: auto;
}

.inganno-dedication-symbol {
  width: min(660px, 100%);
  margin: 24px auto 26px;
  overflow: hidden;
  border: 1px solid rgba(214, 180, 106, 0.24);
  background: rgba(17, 17, 17, 0.66);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.inganno-dedication-symbol img {
  aspect-ratio: 16 / 7;
}

.inganno-dedication p:last-child {
  margin-top: 20px;
  color: rgba(245, 245, 240, 0.78);
  font-size: 18px;
}

.inganno-audience-grid > article {
  padding: 30px;
}

.inganno-audience-grid > article:first-child {
  border: 1px solid rgba(214, 180, 106, 0.22);
  background: rgba(245, 245, 240, 0.045);
  border-radius: 8px;
}

.inganno-check-list,
.inganno-not-for ul,
.inganno-offer-card ul {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.inganno-check-list li,
.inganno-not-for li,
.inganno-offer-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(245, 245, 240, 0.77);
}

.inganno-check-list li::before,
.inganno-offer-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--ig-archive);
  box-shadow: 6px 0 0 var(--ig-red);
}

.inganno-not-for {
  border-color: rgba(185, 28, 28, 0.36);
}

.inganno-not-for li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--ig-red);
}

.inganno-not-for p:last-child {
  margin-top: 24px;
  color: var(--ig-paper);
  font-weight: 800;
}

.inganno-offer {
  background:
    linear-gradient(180deg, rgba(127, 29, 29, 0.24), rgba(5, 5, 5, 0.3)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.28), transparent);
}

.inganno-offer-copy p {
  margin-top: 18px;
  color: rgba(245, 245, 240, 0.78);
  font-size: 18px;
}

.inganno-mini-countdown {
  display: inline-grid;
  gap: 4px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 180, 106, 0.34);
  background: rgba(5, 5, 5, 0.62);
  border-radius: 8px;
}

.inganno-mini-countdown span {
  color: var(--ig-muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.inganno-mini-countdown strong {
  color: var(--ig-archive);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 28px;
}

.inganno-offer-card {
  position: relative;
  padding: 30px;
  border-color: rgba(214, 180, 106, 0.26);
  box-shadow: var(--ig-shadow);
}

.inganno-offer-card::before {
  content: "OFFERTA RISERVATA";
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(248, 113, 113, 0.62);
  background: var(--ig-red-dark);
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
}

.inganno-offer-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--ig-archive);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.inganno-offer-card h3 {
  margin-top: 18px;
  font-size: 44px;
}

.inganno-offer-mockup {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(214, 180, 106, 0.24);
  background: rgba(5, 5, 5, 0.58);
  border-radius: 8px;
}

.inganno-offer-mockup::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(245, 245, 240, 0.08);
}

.inganno-offer-mockup img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.94);
}

.inganno-price-compare {
  display: grid;
  gap: 6px;
  margin: 26px 0 20px;
  padding: 18px;
  border: 1px solid rgba(245, 245, 240, 0.1);
  background: rgba(5, 5, 5, 0.58);
  border-radius: 8px;
}

.inganno-price-compare span {
  color: var(--ig-muted);
}

.inganno-price-compare strong {
  color: var(--ig-archive);
  font-size: 25px;
}

.inganno-card-note {
  margin-top: 12px;
  color: rgba(245, 245, 240, 0.67);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-align: center;
}

.inganno-checkout-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: rgba(245, 245, 240, 0.72);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.inganno-checkout-status:empty {
  display: none;
}

.inganno-checkout-status[data-state="error"] {
  color: #FCA5A5;
}

.inganno-small-decline {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
}

.inganno-urgency {
  background: rgba(5, 5, 5, 0.52);
}

.inganno-urgency p {
  margin-top: 18px;
  color: rgba(245, 245, 240, 0.78);
  font-size: 18px;
}

.inganno-urgency-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-left: 4px solid var(--ig-red);
}

.inganno-urgency-card span,
.inganno-countdown-box small {
  color: var(--ig-muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.inganno-urgency-card s {
  color: rgba(245, 245, 240, 0.58);
  font-size: 28px;
}

.inganno-urgency-card > strong {
  color: var(--ig-archive);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.inganno-countdown-box {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  padding: 16px;
  background: rgba(127, 29, 29, 0.22);
  border: 1px solid rgba(185, 28, 28, 0.34);
  border-radius: 8px;
}

.inganno-countdown-box b {
  color: var(--ig-paper);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 30px;
}

.inganno-faq-grid {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
}

.inganno-faq-grid > div:first-child p {
  margin-top: 18px;
  color: rgba(245, 245, 240, 0.75);
}

.inganno-accordion {
  display: grid;
  gap: 12px;
}

.inganno-faq-item {
  overflow: hidden;
}

.inganno-faq-item button {
  width: 100%;
  min-height: 62px;
  padding: 18px 54px 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ig-paper);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.inganno-faq-item button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--ig-archive);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 24px;
  transform: translateY(-50%);
}

.inganno-faq-item.is-open button::after {
  content: "-";
}

.inganno-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.inganno-faq-panel p {
  min-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: rgba(245, 245, 240, 0.75);
}

.inganno-faq-item.is-open .inganno-faq-panel {
  grid-template-rows: 1fr;
}

.inganno-faq-item.is-open .inganno-faq-panel p {
  padding-bottom: 20px;
}

.inganno-closing {
  padding: 112px 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(5, 5, 5, 0.92)),
    linear-gradient(115deg, rgba(185, 28, 28, 0.2), transparent 44%);
}

.inganno-closing .inganno-container {
  max-width: 920px;
}

.inganno-closing .inganno-kicker {
  margin-inline: auto;
}

.inganno-closing p:not(.inganno-kicker):not(.inganno-microcopy) {
  margin: 20px auto 0;
  max-width: 760px;
  color: rgba(245, 245, 240, 0.78);
  font-size: 19px;
}

.inganno-footer {
  padding: 32px 0 92px;
  background: var(--ig-black);
  border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.inganno-footer .inganno-container {
  display: grid;
  gap: 16px;
}

.inganno-footer p {
  max-width: 940px;
  color: rgba(245, 245, 240, 0.58);
  font-size: 13px;
}

.inganno-footer span {
  color: rgba(245, 245, 240, 0.44);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.inganno-downsell-anchor {
  width: 1px;
  height: 1px;
}

.inganno-mobile-sticky {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 80;
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(248, 113, 113, 0.58);
  background: linear-gradient(180deg, #D52B2B, var(--ig-red-dark));
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 40px;
  }

  .inganno-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inganno-question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .inganno-header {
    grid-template-columns: 1fr auto;
  }

  .inganno-header-badge {
    display: none;
  }

  .inganno-hero {
    padding-top: 76px;
  }

  .inganno-hero-grid,
  .inganno-two-col,
  .inganno-continuity-grid,
  .inganno-critical-grid,
  .inganno-author-grid,
  .inganno-materials-grid,
  .inganno-offer-grid,
  .inganno-urgency-grid,
  .inganno-faq-grid,
  .inganno-audience-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .inganno-hero-panel {
    max-width: 680px;
    margin-inline: auto;
  }

  .inganno-intro-player {
    max-width: 760px;
    margin-inline: auto;
  }

  .inganno-poster,
  .inganno-product-hero {
    max-width: 460px;
    min-height: 380px;
    margin-inline: auto;
    transform: none;
  }

  .inganno-poster img {
    height: 380px;
  }

  .inganno-product-hero {
    max-width: 680px;
    min-height: auto;
  }

  .inganno-signal-card {
    grid-template-columns: 1fr;
  }

  .inganno-signal-card figcaption {
    border-top: 1px solid rgba(245, 245, 240, 0.1);
    border-left: 0;
  }

  .inganno-evidence-board {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  body.inganno-page {
    font-size: 16px;
  }

  .inganno-container {
    width: min(1160px, calc(100% - 28px));
  }

  .inganno-header {
    grid-template-columns: auto auto;
    justify-content: start;
    min-height: 64px;
    padding: 10px 14px;
  }

  .inganno-brand {
    font-size: 13px;
  }

  .inganno-brand > span:not(.inganno-brand-mark) {
    display: none;
  }

  .inganno-brand-mark {
    width: 32px;
    height: 32px;
  }

  .inganno-header-cta {
    width: auto;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .inganno-hero {
    padding: 28px 0 20px;
  }

  .inganno-hero-panel {
    display: block;
    max-width: 100%;
  }

  .inganno-hero-copy {
    max-width: 362px;
  }

  .inganno-intro-player {
    max-width: 100%;
    min-width: 0;
  }

  .inganno-intro-player {
    padding: 6px;
  }

  .inganno-intro-player video {
    max-width: 100%;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .inganno-lead {
    font-size: 17px;
  }

  .inganno-actions,
  .inganno-actions.is-centered {
    align-items: stretch;
    flex-direction: column;
  }

  .inganno-badge,
  .inganno-kicker {
    display: block;
    width: 100%;
    font-size: 10px;
  }

  .inganno-price-strip,
  .inganno-offer-card-head {
    display: grid;
  }

  .inganno-btn,
  .inganno-header-cta {
    width: 100%;
  }

  .inganno-text-link {
    text-align: center;
  }

  .inganno-section {
    padding: 68px 0;
  }

  .inganno-visual-card figcaption,
  .inganno-visual-band figcaption,
  .inganno-product-showcase figcaption {
    padding: 16px;
  }

  .inganno-signal-card img {
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .inganno-dedication-symbol {
    margin-block: 20px 24px;
  }

  .inganno-dedication-symbol img {
    aspect-ratio: 4 / 3;
  }

  .inganno-question-grid,
  .inganno-content-grid {
    grid-template-columns: 1fr;
  }

  .inganno-content-grid article {
    min-height: auto;
  }

  .inganno-question-grid p {
    font-size: 23px;
  }

  .inganno-poster,
  .inganno-product-hero {
    min-height: 360px;
  }

  .inganno-poster img {
    height: 360px;
  }

  .inganno-product-hero {
    min-height: auto;
  }

  .inganno-poster figcaption strong {
    font-size: 48px;
  }

  .inganno-evidence-board {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .inganno-evidence-board::before,
  .inganno-evidence-board::after {
    display: none;
  }

  .inganno-paper,
  .inganno-paper.is-main,
  .inganno-paper:nth-child(2),
  .inganno-paper:nth-child(3) {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 130px;
    transform: none;
  }

  .inganno-audience-grid > article,
  .inganno-offer-card {
    padding: 22px;
  }

  .inganno-offer-card h3 {
    font-size: 34px;
  }

  .inganno-urgency-card > strong {
    font-size: 44px;
  }

  .inganno-closing {
    padding: 80px 0;
  }

  .inganno-mobile-sticky {
    display: inline-flex;
    right: auto;
    width: min(362px, calc(100% - 28px));
    font-size: 12px;
    white-space: normal;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 30px;
  }

  .inganno-badge,
  .inganno-kicker {
    font-size: 11px;
  }

  .inganno-poster figcaption {
    inset: auto 18px 24px 18px;
  }

  .inganno-poster figcaption strong {
    font-size: 40px;
  }
}
