    /* ============================================================
   TOKENS
   ============================================================ */
    :root {
      --ink: #1A1A1A;
      --ink-2: #2a2a2a;
      --ink-3: #3a3a3a;
      --paper: #F5F2ED;
      --paper-2: #ECE7DE;
      --paper-3: #E2DCD0;
      --accent: #FF4758;
      --accent-ink: #1A1A1A;
      --on-dark: #F5F2ED;
      --on-dark-mute: #8c8a86;
      --on-light-mute: #6b6862;
      --rule-dark: rgba(245, 242, 237, .18);
      --rule-light: rgba(26, 26, 26, .16);

      --f-display: "Fraunces", Georgia, serif;
      --f-body: "Source Serif 4", "Source Serif Pro", Georgia, serif;
      --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

      --maxw: 1240px;
      --gutter: clamp(20px, 4vw, 48px);
    }

    /* Accent variants */
    html[data-accent="black"] {
      --accent: #1A1A1A;
      --accent-ink: #F5F2ED;
    }

    html[data-accent="green"] {
      --accent: #1F4D3A;
      --accent-ink: #F5F2ED;
    }

    /* Headline font variants */
    html[data-headline="fraunces"] {
      --f-display: "Fraunces", Georgia, serif;
    }

    html[data-headline="instrument"] {
      --f-display: "Instrument Serif", Georgia, serif;
    }

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

    html {
      -webkit-text-size-adjust: 100%;
      scroll-behavior: smooth;
    }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--f-body);
      font-size: clamp(17px, 1.05vw + 12px, 20px);
      line-height: 1.55;
      font-feature-settings: "ss01", "kern";
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

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

    a {
      color: inherit;
    }

    ::selection {
      background: var(--accent);
      color: var(--accent-ink);
    }

    /* Type roles */
    .kicker {
      font-family: var(--f-mono);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .eyebrow {
      font-family: var(--f-mono);
      font-size: 13px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--on-light-mute);
    }

    .h-display {
      font-family: var(--f-display);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.02;
      text-wrap: balance;
    }

    .h-section {
      font-family: var(--f-display);
      font-weight: 600;
      letter-spacing: -0.018em;
      line-height: 1.04;
      font-size: clamp(32px, 4.8vw, 68px);
      text-wrap: balance;
      margin-bottom: clamp(28px, 3.5vw, 48px);
    }

    .lede {
      font-family: var(--f-body);
      font-size: clamp(19px, 1.4vw + 10px, 26px);
      line-height: 1.45;
      text-wrap: pretty;
    }

    .body {
      font-size: clamp(17px, .55vw + 14px, 19px);
      line-height: 1.6;
      text-wrap: pretty;
    }

    .body p+p {
      margin-top: 1em;
    }

    /* Layout primitives */
    .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding-inline: var(--gutter);
    }

    .section {
      padding-block: clamp(80px, 10vw, 140px);
      position: relative;
    }

    .section--light {
      background: var(--paper);
      color: var(--ink);
    }

    .section--dark {
      background: var(--ink);
      color: var(--on-dark);
    }

    /* Section number chapter mark */
    .chapter {
      display: flex;
      align-items: baseline;
      gap: 16px;
      font-family: var(--f-mono);
      font-size: 14px;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: clamp(28px, 3vw, 40px);
    }

    .chapter .num {
      color: var(--accent);
      font-weight: 500;
    }

    .chapter .label {
      opacity: .85;
    }

    .chapter .rule {
      flex: 1;
      height: 1px;
      background: currentColor;
      opacity: .25;
      align-self: center;
    }

    html[data-section-numbers="false"] .chapter {
      display: none;
    }

    /* Reveals */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    .reveal-stagger>* {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
    }

    .reveal-stagger.in>* {
      opacity: 1;
      transform: none;
    }

    .reveal-stagger.in>*:nth-child(1) {
      transition-delay: .00s;
    }

    .reveal-stagger.in>*:nth-child(2) {
      transition-delay: .08s;
    }

    .reveal-stagger.in>*:nth-child(3) {
      transition-delay: .16s;
    }

    .reveal-stagger.in>*:nth-child(4) {
      transition-delay: .24s;
    }

    .reveal-stagger.in>*:nth-child(5) {
      transition-delay: .32s;
    }

    .reveal-stagger.in>*:nth-child(6) {
      transition-delay: .40s;
    }

    @media (prefers-reduced-motion: reduce) {

      .reveal,
      .reveal-stagger>* {
        opacity: 1;
        transform: none;
        transition: none;
      }

      html {
        scroll-behavior: auto;
      }
    }

    /* Grain & paper textures (toggled by data attr on <html>) */
    .grain::after {
      content: "";
      position: fixed;
      inset: -50%;
      pointer-events: none;
      z-index: 9000;
      opacity: .07;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    }

    html[data-grain="false"] .grain::after {
      display: none;
    }

    .section--light.paper-tex {
      background-image:
        radial-gradient(rgba(26, 26, 26, .04) 1px, transparent 1.4px),
        linear-gradient(180deg, var(--paper), var(--paper));
      background-size: 3px 3px, auto;
    }

    html[data-paper="false"] .section--light.paper-tex {
      background-image: none;
      background: var(--paper);
    }

    /* ============================================================
   PAGE FRAME (top + bottom bars)
   ============================================================ */
    .page-meta {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 12px var(--gutter);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
      font-family: var(--f-mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      pointer-events: none;
      /* la barra non cattura i click; solo i link sì (vedi sotto) */
      color: #b9b6b1;
      background: rgba(0, 0, 0, .2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: transform .35s ease, color .25s ease, background .25s ease;
    }

    .page-meta__home,
    .page-meta__blog {
      pointer-events: auto;
    }

    /* Hide-on-scroll-down / reveal-on-scroll-up */
    .page-meta.is-hidden {
      transform: translateY(-100%);
    }

    /* — Logo WeRoad (sinistra) → home del sito — */
    .page-meta__home {
      justify-self: start;
      display: inline-flex;
      align-items: center;
      line-height: 0;
      transition: opacity .2s ease;
    }

    .page-meta__home:hover {
      opacity: .8;
    }

    .page-meta__home .wr-logo {
      height: 19px;
      width: auto;
      display: block;
    }

    /* il monogramma WR è solo per mobile */
    .page-meta__home .wr-logo--mono {
      display: none;
    }

    .page-meta__home .wr-road {
      fill: #fff;
      transition: fill .25s ease;
    }

    /* — Titolo + edizione (centro) — */
    .page-meta__center {
      justify-self: center;
      display: flex;
      align-items: baseline;
      gap: 14px;
      min-width: 0;
      white-space: nowrap;
    }

    .page-meta__sep {
      opacity: .45;
    }

    .page-meta__edition {
      opacity: .5;
    }

    /* — Link al blog (destra): wordmark "Stories." con freccia — */
    .page-meta__blog {
      justify-self: end;
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      color: #fff;
      text-decoration: none;
      transition: opacity .2s ease, color .25s ease;
    }

    .page-meta__blog:hover {
      opacity: .7;
    }

    .page-meta__arrow {
      font-size: 13px;
      transform: translateY(1px);
    }

    .page-meta__blog-mark {
      font-family: var(--f-display);
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: none;
    }

    .page-meta__blog-mark .dot {
      color: #ff4758;
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      width: 0%;
      background: var(--accent);
      z-index: 60;
      transition: width .1s linear;
    }

    /* ============================================================
   HERO  (Section 0)
   ============================================================ */
    .hero {
      background: var(--ink);
      color: var(--on-dark);
      min-height: 100svh;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .hero__video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.28;
      z-index: 0;
    }

    .hero__inner {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(80px, 12vw, 140px) var(--gutter) clamp(40px, 6vw, 72px);
      max-width: var(--maxw);
      width: 100%;
      margin: 0 auto;
    }

    .hero__meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: clamp(40px, 8vw, 80px);
    }

    .hero__issue {
      font-family: var(--f-mono);
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--on-dark-mute);
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .hero__issue strong {
      color: var(--on-dark);
      font-weight: 500;
    }

    .hero__headline {
      font-family: var(--f-display);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 0.98;
      font-size: clamp(38px, 6vw, 88px);
      text-wrap: balance;
      margin-bottom: clamp(28px, 4vw, 48px);
    }

    .hero__headline em {
      font-style: normal;
      color: var(--accent);
    }

    .hero__sub {
      font-family: var(--f-body);
      font-style: italic;
      font-size: clamp(20px, 1.6vw + 10px, 28px);
      color: var(--on-dark-mute);
      line-height: 1.45;
      margin-bottom: clamp(24px, 3vw, 40px);
    }

    .hero__bottom {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 16px;
      border-top: 1px solid var(--rule-dark);
      padding-top: 20px;
      font-family: var(--f-mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--on-dark-mute);
    }

    .scroll-cue {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .scroll-cue .arrow {
      width: 1px;
      height: 28px;
      background: currentColor;
      position: relative;
      animation: drop 2.4s ease-in-out infinite;
    }

    .scroll-cue .arrow::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: -3px;
      width: 7px;
      height: 7px;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transform: rotate(45deg) translate(-1px, -1px);
    }

    @keyframes drop {

      0%,
      100% {
        transform: translateY(-6px);
        opacity: .4;
      }

      50% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Hero ambient art — abstract concentric arcs (geometric, not figurative) */
    .hero__art {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .55;
    }

    .hero__art svg {
      width: 100%;
      height: 100%;
    }

    /* ============================================================
   SECTION 1 — DATA ESCALATION
   ============================================================ */
    .s-data {
      background: var(--paper);
      color: var(--ink);
    }

    .s-data .lede {
      max-width: 680px;
      margin-top: 28px;
      color: var(--ink-2);
    }

    .stat-row {
      display: grid;
      grid-template-columns: minmax(200px, 0.9fr) 1.1fr;
      gap: clamp(24px, 4vw, 64px);
      align-items: start;
      padding-block: clamp(48px, 6vw, 80px);
      border-top: 1px solid var(--rule-light);
    }

    .stat-row:last-child {
      border-bottom: 1px solid var(--rule-light);
    }

    .stat-num {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(72px, 11vw, 168px);
      line-height: 0.9;
      letter-spacing: -0.04em;
      color: var(--accent);
      font-variant-numeric: tabular-nums;
    }

    .stat-num .unit {
      font-size: .42em;
      color: var(--ink);
      margin-left: .04em;
      letter-spacing: -0.02em;
    }

    .stat-body {
      padding-top: 12px;
    }

    .stat-body .stat-label {
      font-family: var(--f-display);
      font-weight: 500;
      font-size: clamp(22px, 2vw + 6px, 32px);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
      text-wrap: balance;
    }

    .stat-body .stat-context {
      color: var(--on-light-mute);
      font-size: clamp(15px, .4vw + 12px, 17px);
      font-family: var(--f-mono);
      letter-spacing: .02em;
    }

    .stat-body .stat-context strong {
      color: var(--ink);
      font-weight: 500;
    }

    /* Reasons grid */
    .reasons {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--rule-light);
      margin-top: clamp(48px, 6vw, 72px);
      border: 1px solid var(--rule-light);
    }

    .reason {
      background: var(--paper);
      padding: clamp(24px, 3vw, 36px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 220px;
    }

    .reason__num {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(40px, 4vw, 64px);
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--accent);
      font-variant-numeric: tabular-nums;
    }

    .reason__label {
      font-family: var(--f-body);
      font-size: 17px;
      font-weight: 600;
      line-height: 1.4;
      margin-top: auto;
      color: var(--ink);
    }

    /* Pull quote (shared) */
    .pullquote {
      margin-block: clamp(64px, 8vw, 110px);
      max-width: 920px;
      border-left: 2px solid var(--accent);
      padding-left: clamp(20px, 3vw, 36px);
    }

    .pullquote .q {
      font-family: var(--f-body);
      font-style: italic;
      font-size: clamp(22px, 2vw + 8px, 36px);
      line-height: 1.3;
      letter-spacing: -0.005em;
      text-wrap: pretty;
      color: var(--ink);
    }

    .pullquote .q::before {
      content: "“";
      color: var(--accent);
      font-style: normal;
      font-family: var(--f-display);
      font-size: 1.1em;
      line-height: 0;
      position: relative;
      top: .08em;
      margin-right: .04em;
    }

    .pullquote .attr {
      margin-top: 18px;
      font-family: var(--f-mono);
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--on-light-mute);
    }

    .section--dark .pullquote .q {
      color: var(--on-dark);
    }

    .section--dark .pullquote .attr {
      color: var(--on-dark-mute);
    }

    /* ============================================================
   SECTION 2 — GEOGRAPHY
   ============================================================ */
    .s-geo {
      background: var(--paper-2);
      color: var(--ink);
    }

    .geo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 5vw, 80px);
      align-items: center;
      margin-top: clamp(48px, 6vw, 80px);
    }

    .geo-map {
      aspect-ratio: 1 / 1.05;
      background: var(--paper);
      border: 1px solid var(--rule-light);
      position: relative;
      padding: clamp(20px, 2.5vw, 36px);
    }

    .geo-map svg {
      width: 100%;
      height: 100%;
    }

    /* Realistic Europe map — REPLACED with editorial country bars */
    .geo-map {
      background: var(--paper);
      border: 1px solid var(--rule-light);
      position: relative;
      padding: clamp(16px, 2vw, 24px) clamp(24px, 3vw, 40px) clamp(8px, 1vw, 12px);
    }

    .geo-map .map-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-family: var(--f-mono);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink);
      padding: 12px 0 14px;
      margin-bottom: clamp(16px, 2vw, 24px);
      border-bottom: 1px solid var(--rule-light);
    }

    .geo-countries {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .geo-country {
      display: grid;
      grid-template-columns: 28px 1fr auto;
      grid-template-rows: auto 6px;
      column-gap: 14px;
      row-gap: 8px;
      align-items: center;
      padding: clamp(14px, 1.8vw, 20px) 0;
    }

    .geo-country__flag {
      font-size: 20px;
      grid-row: 1;
      grid-column: 1;
      line-height: 1;
    }

    .geo-country__name {
      font-family: var(--f-display);
      font-size: clamp(14px, 1.2vw, 17px);
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--ink);
      grid-row: 1;
      grid-column: 2;
    }

    .geo-country__pct {
      font-family: var(--f-display);
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--accent);
      grid-row: 1;
      grid-column: 3;
      text-align: right;
      line-height: 1;
    }

    .geo-country__pct span {
      font-size: 0.6em;
      color: var(--ink-3);
      font-weight: 500;
    }

    .geo-country__bar {
      grid-row: 2;
      grid-column: 1 / -1;
      height: 3px;
      background: var(--paper-3);
      position: relative;
      overflow: hidden;
    }

    .geo-country__fill {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 0%;
      background: var(--accent);
      opacity: 0.7;
      transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .geo-country__fill.is-in {
      width: calc(var(--w, 0) * 1%);
    }

    .geo-insight {
      margin-top: clamp(20px, 2.5vw, 28px);
      font-family: var(--f-mono);
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--on-light-mute);
      text-align: right;
    }

    .geo-side h3 {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(28px, 2.6vw + 8px, 44px);
      line-height: 1.05;
      letter-spacing: -0.018em;
      margin-bottom: 20px;
      text-wrap: balance;
    }

    .geo-side .body {
      color: var(--ink-2);
    }

    .geo-side .body strong {
      color: var(--ink);
      font-weight: 500;
    }

    .who-stats {
      margin-top: clamp(40px, 5vw, 60px);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--rule-light);
      border: 1px solid var(--rule-light);
    }

    .who-stats>div {
      background: var(--paper-2);
      padding: 24px;
    }

    .who-stats .who-num {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(34px, 3vw + 10px, 48px);
      line-height: 1;
      letter-spacing: -0.025em;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .who-stats .who-lbl {
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 1.35;
      color: var(--ink-2);
    }

    .who-stats .who-cite {
      font-family: var(--f-mono);
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-top: 8px;
      color: var(--on-light-mute);
    }

    /* ============================================================
   SECTION 3 — APPS VS TRAVEL (bar chart)
   ============================================================ */
    .s-apps {
      background: var(--paper);
      color: var(--ink);
    }

    .chart {
      margin-top: clamp(48px, 6vw, 72px);
      display: flex;
      flex-direction: column;
      gap: clamp(20px, 2vw, 28px);
    }

    .bar-row {
      display: grid;
      grid-template-columns: minmax(120px, 200px) 1fr auto;
      align-items: center;
      gap: clamp(16px, 2vw, 28px);
      padding-block: 14px;
      border-bottom: 1px solid var(--rule-light);
    }

    .bar-row:first-child {
      border-top: 1px solid var(--rule-light);
    }

    .bar-label {
      font-family: var(--f-display);
      font-weight: 500;
      font-size: clamp(17px, 1vw + 8px, 22px);
      letter-spacing: -0.01em;
      line-height: 1.15;
    }

    .bar-track {
      height: 18px;
      background: var(--paper-3);
      position: relative;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      background: var(--accent);
      width: 0%;
      transition: width 1.6s cubic-bezier(.2, .7, .15, 1);
      transform-origin: left center;
    }

    .bar-row.is-hero .bar-label {
      color: var(--accent);
    }

    .bar-row.is-hero .bar-track {
      background: var(--paper-2);
    }

    .bar-num {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(20px, 1.5vw + 8px, 28px);
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
      min-width: 64px;
      text-align: right;
    }

    .bar-delta {
      display: block;
      font-family: var(--f-mono);
      font-size: 13px;
      font-weight: 400;
      color: var(--on-light-mute);
      letter-spacing: .04em;
      margin-top: 4px;
      text-transform: none;
    }

    .bar-delta.up {
      color: var(--accent);
    }

    .chart-source {
      margin-top: 18px;
      font-family: var(--f-mono);
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--on-light-mute);
    }

    .support-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 4vw, 60px);
      margin-top: clamp(64px, 8vw, 96px);
      padding-top: clamp(40px, 5vw, 56px);
      border-top: 1px solid var(--rule-light);
    }

    .support-stats .support {
      display: flex;
      flex-direction: column;
    }

    .support-stats .support .n {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(48px, 5vw + 8px, 88px);
      line-height: 0.95;
      letter-spacing: -0.03em;
      color: var(--accent);
    }

    .support-stats .support .l {
      margin-top: 12px;
      font-family: var(--f-body);
      font-size: clamp(17px, .4vw + 14px, 20px);
      font-weight: 600;
      color: var(--ink);
      max-width: 36ch;
    }

    /* ============================================================
   SECTION 4 — THE TURN
   ============================================================ */
    .s-turn {
      background: var(--ink);
      color: var(--on-dark);
      position: relative;
      overflow: hidden;
    }

    .section.s-turn,
    section.s-turn {
      padding-block: 0;
      padding-top: 0;
      padding-bottom: 0;
    }

    .turn-headline {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(40px, 7vw, 96px);
      line-height: 1;
      letter-spacing: -0.025em;
      text-wrap: balance;
      max-width: 14ch;
    }

    .turn-headline em {
      font-style: normal;
      color: var(--accent);
    }

    .turn-lede {
      margin-top: 28px;
      max-width: 620px;
      color: var(--on-dark-mute);
      font-style: italic;
      font-size: clamp(18px, 1vw + 10px, 22px);
    }

    .turn-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 5vw, 80px);
      margin-top: clamp(64px, 8vw, 100px);
      align-items: stretch;
    }

    .turn-photo {
      aspect-ratio: unset;
      min-height: 400px;
      align-self: stretch;
      height: 100%;
      background-image: url('../landing-media/B-01_turn-photo-group.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .turn-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.45) 100%);
    }

    @media (max-width: 860px) {
      .turn-grid {
        grid-template-columns: 1fr;
      }

      .turn-photo {
        height: 360px;
        min-height: unset;
        align-self: auto;
      }
    }

    .turn-photo .placeholder-stripe {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(-45deg,
          rgba(245, 242, 237, .04) 0 8px,
          rgba(245, 242, 237, .07) 8px 16px);
    }

    .placeholder-caption {
      position: absolute;
      left: 16px;
      bottom: 14px;
      right: 16px;
      font-family: var(--f-mono);
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(245, 242, 237, .6);
    }

    .placeholder-caption .crop {
      display: inline-block;
      width: 12px;
      height: 12px;
      border: 1px solid currentColor;
      margin-right: 8px;
      vertical-align: -2px;
      position: relative;
    }

    .placeholder-caption .crop::before,
    .placeholder-caption .crop::after {
      content: "";
      position: absolute;
      background: currentColor;
    }

    .placeholder-caption .crop::before {
      left: 5px;
      top: -3px;
      width: 1px;
      height: 6px;
    }

    .placeholder-caption .crop::after {
      top: 5px;
      left: -3px;
      width: 6px;
      height: 1px;
    }

    .turn-stats {
      display: grid;
      grid-template-rows: repeat(4, 1fr);
      gap: 0;
    }

    .turn-stat {
      border-top: 1px solid var(--rule-dark);
      padding-block: clamp(20px, 2.4vw, 32px);
      display: grid;
      grid-template-columns: minmax(120px, 180px) 1fr;
      gap: clamp(20px, 3vw, 36px);
      align-items: baseline;
    }

    .turn-stat:last-child {
      border-bottom: 1px solid var(--rule-dark);
    }

    .turn-stat .n {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(48px, 5vw + 8px, 96px);
      line-height: 0.9;
      letter-spacing: -0.035em;
      color: var(--accent);
      font-variant-numeric: tabular-nums;
    }

    .turn-stat .l {
      font-family: var(--f-body);
      font-size: clamp(16px, .4vw + 13px, 19px);
      line-height: 1.45;
      color: var(--on-dark);
    }

    .turn-stat .l small {
      display: block;
      margin-top: 8px;
      font-family: var(--f-mono);
      font-size: 11px;
      letter-spacing: .08em;
      color: var(--on-dark-mute);
      text-transform: uppercase;
    }

    /* ============================================================
   SECTION 5 — STORIES
   ============================================================ */
    .s-stories {
      background: var(--paper);
      color: var(--ink);
    }

    .story {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: clamp(28px, 4vw, 64px);
      padding-block: clamp(56px, 7vw, 96px);
      align-items: center;
      border-top: 1px solid var(--rule-light);
    }

    .story:last-child {
      border-bottom: 1px solid var(--rule-light);
    }

    .story:nth-child(even) {
      /* same direction; design rhythm via numbering instead */
    }

    .story__photo {
      aspect-ratio: 4 / 5;
      background: var(--paper-3);
      background-size: cover;
      background-position: center top;
      position: relative;
      overflow: hidden;
      filter: grayscale(1) contrast(1.05);
    }

    .story__photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--accent);
      mix-blend-mode: multiply;
      opacity: 0.55;
    }

    .story__photo .placeholder-stripe {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(-45deg,
          rgba(26, 26, 26, .06) 0 8px,
          rgba(26, 26, 26, .10) 8px 16px);
    }

    .story__photo .placeholder-caption {
      color: rgba(26, 26, 26, .55);
    }

    .story__text {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .story__num {
      font-family: var(--f-mono);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .story__name {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(28px, 2.6vw + 8px, 44px);
      line-height: 1.02;
      letter-spacing: -0.02em;
    }

    .story__name .flag {
      display: inline-block;
      margin-left: 10px;
      font-size: .7em;
      vertical-align: 4px;
    }

    .story__bio {
      font-family: var(--f-body);
      font-size: clamp(16px, .4vw + 13px, 19px);
      color: var(--ink-2);
      line-height: 1.55;
      max-width: 50ch;
    }

    .story__quote {
      margin-top: 8px;
      font-family: var(--f-body);
      font-style: italic;
      font-size: clamp(18px, 1vw + 10px, 23px);
      line-height: 1.35;
      color: var(--ink);
      max-width: 50ch;
      border-left: 2px solid var(--accent);
      padding-left: 18px;
    }

    /* ============================================================
   SECTION 6 — SXSW
   ============================================================ */
    .s-sxsw {
      background: var(--paper-3);
      color: var(--ink);
      position: relative;
      overflow: hidden;
    }

    /* s-sxsw::before removed in Version C — video background replaces still image */
    html[data-sxsw="alt"] .s-sxsw {
      background: var(--ink);
      color: var(--on-dark);
    }

    html[data-sxsw="alt"] .s-sxsw .sxsw-meta,
    html[data-sxsw="alt"] .s-sxsw .sxsw-quote .attr,
    html[data-sxsw="alt"] .s-sxsw .body {
      color: var(--on-dark-mute);
    }

    html[data-sxsw="alt"] .s-sxsw .sxsw-quote {
      border-color: var(--rule-dark);
    }

    html[data-sxsw="alt"] .s-sxsw .sxsw-quote .q {
      color: var(--on-dark);
    }

    .sxsw-meta {
      font-family: var(--f-mono);
      font-size: 13px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--on-light-mute);
      margin-bottom: 16px;
    }

    .sxsw-headline {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(34px, 5vw, 72px);
      line-height: 1.04;
      letter-spacing: -0.02em;
      max-width: 22ch;
      text-wrap: balance;
    }

    .sxsw-headline em {
      font-style: normal;
      color: var(--accent);
    }

    .sxsw-quotes {
      margin-top: clamp(56px, 7vw, 88px);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(32px, 4vw, 56px) clamp(32px, 4vw, 60px);
    }

    .sxsw-quote {
      border-top: 1px solid var(--rule-light);
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .sxsw-quote .q {
      font-family: var(--f-body);
      font-style: italic;
      font-size: clamp(20px, 1.4vw + 9px, 28px);
      line-height: 1.32;
      letter-spacing: -0.005em;
    }

    .sxsw-quote .q::before {
      content: "“";
      color: var(--accent);
      font-style: normal;
      font-family: var(--f-display);
      font-size: 1.6em;
      line-height: 0;
      position: relative;
      top: .12em;
      margin-right: .03em;
    }

    .sxsw-quote .attr {
      font-family: var(--f-mono);
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--on-light-mute);
    }

    /* ============================================================
   SECTION 7 — CONCLUSION
   ============================================================ */
    .s-conclusion {
      background: var(--ink);
      color: var(--on-dark);
    }

    .conc-eyebrow {
      font-family: var(--f-mono);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--on-dark-mute);
      margin-bottom: 24px;
    }

    .conc-headline {
      font-family: var(--f-display);
      font-weight: 600;
      font-size: clamp(48px, 7.5vw, 112px);
      line-height: 1.0;
      letter-spacing: -0.03em;
      margin-bottom: clamp(36px, 5vw, 60px);
    }

    .conc-headline em {
      font-style: normal;
      color: var(--accent);
    }

    .conc-headline strong {
      font-weight: 700;
      color: var(--on-dark);
      font-style: italic;
    }

    .conc-body {
      font-family: var(--f-body);
      font-size: clamp(20px, 1.2vw + 10px, 28px);
      line-height: 1.45;
      color: var(--on-dark);
      margin-bottom: clamp(60px, 8vw, 100px);
      text-wrap: pretty;
    }

    .conc-body p+p {
      margin-top: 0.9em;
    }

    .colophon {
      border-top: 1px solid var(--rule-dark);
      padding-top: clamp(36px, 4vw, 56px);
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: clamp(28px, 4vw, 56px);
      align-items: end;
    }

    .wordmark {
      display: block;
    }

    .wordmark .wr-logo {
      width: clamp(120px, 16vw, 200px);
      height: auto;
      display: block;
    }

    .wordmark__sub {
      margin-top: 12px;
      font-family: var(--f-mono);
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--on-dark-mute);
    }

    .colophon-meta {
      font-family: var(--f-mono);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--on-dark-mute);
      display: flex;
      flex-direction: column;
      gap: 8px;
      text-align: right;
    }

    .colophon-meta a {
      color: var(--on-dark);
      text-decoration: none;
      border-bottom: 1px solid var(--rule-dark);
      padding-bottom: 2px;
      transition: border-color .2s, color .2s;
    }

    .colophon-meta a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    /* Blocco legale obbligatorio (replicato dal footer del sito/blog) */
    .colophon-legal {
      margin-top: clamp(32px, 4vw, 52px);
      padding-top: clamp(20px, 3vw, 28px);
      border-top: 1px solid var(--rule-dark);
      font-family: var(--f-mono);
      font-size: 11px;
      line-height: 1.7;
      letter-spacing: .03em;
      color: var(--on-dark-mute);
      text-align: center;
    }

    .colophon-legal a {
      color: var(--on-dark);
      text-decoration: none;
      border-bottom: 1px solid var(--rule-dark);
      transition: color .2s, border-color .2s;
    }

    .colophon-legal a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    .colophon-legal p {
      margin: 12px 0 0;
    }


    /* ============================================================
   RESPONSIVE
   ============================================================ */
    @media (max-width: 860px) {
      .stat-row {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .stat-num {
        font-size: clamp(72px, 22vw, 140px);
      }

      .reasons {
        grid-template-columns: repeat(2, 1fr);
      }

      .reason {
        min-height: 180px;
      }

      .geo-grid {
        grid-template-columns: 1fr;
      }

      .geo-map {
        aspect-ratio: auto;
      }

      .who-stats {
        grid-template-columns: 1fr;
      }

      .bar-row {
        grid-template-columns: 1fr auto;
        grid-template-areas: "label num" "track track";
        gap: 8px 14px;
        padding-block: 18px;
      }

      .bar-label {
        grid-area: label;
      }

      .bar-num {
        grid-area: num;
        min-width: 0;
      }

      .bar-track {
        grid-area: track;
        height: 14px;
        margin-top: 4px;
      }

      .turn-grid {
        grid-template-columns: 1fr;
      }

      .turn-stat {
        grid-template-columns: 1fr;
        gap: 6px;
        padding-block: 22px;
      }

      .turn-stat .n {
        font-size: clamp(64px, 16vw, 96px);
      }

      .story {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-block: 56px;
      }

      .sxsw-quotes {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .colophon {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .colophon-meta {
        text-align: left;
      }

      .support-stats {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 540px) {
      .reasons {
        grid-template-columns: 1fr;
      }

      .reason {
        min-height: 0;
      }

      /* meno spazio sotto la hero su mobile */
      .hero__inner {
        padding-bottom: 18px;
      }

      /* Mobile: nasconde "Inizia la lettura" (il bottone Iubenda in basso a sx
         copriva il footer della hero). Footer compatto con "5.000 rispondenti ·
         5 paesi" + freccia animata centrati orizzontalmente insieme. */
      /* flex su una riga: spaziatore (sx) + testo (centro) + freccia (dx).
         I due flex:1 ai lati centrano davvero il testo; la freccia, in fondo
         alla scroll-cue flessibile, finisce sul bordo destro. align-items:center
         tiene testo e freccia allineati verticalmente; footer compatto. */
      .hero__bottom {
        display: flex;
        align-items: center;
        padding-top: 10px;
      }

      .hero__bottom::before {
        content: "";
        flex: 1 1 0;
      }

      .hero__stats {
        order: 1;
        flex: 0 0 auto;
        text-align: center;
      }

      .scroll-cue {
        order: 2;
        flex: 1 1 0;
        justify-content: flex-end;
      }

      .scroll-cue span:not(.arrow) {
        display: none;
      }

      .scroll-cue .arrow {
        height: 18px;
      }

      .page-meta {
        font-size: 10px;
        padding: 12px var(--gutter);
      }

      /* Mobile: 3 elementi su UNA riga orizzontale (monogramma | testo | freccia).
         Colonne: lati a contenuto, centro flessibile che manda a capo il testo. */
      .page-meta {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: none;
        column-gap: 12px;
      }

      /* logo: monogramma WR su mobile, logo intero nascosto */
      .page-meta__home .wr-logo--full { display: none; }
      .page-meta__home .wr-logo--mono { display: block; height: 26px; }

      /* destra: solo freccia "back", niente wordmark */
      .page-meta__blog-mark { display: none; }
      .page-meta__arrow {
        font-size: 22px;
        transform: none;
      }

      /* centro: titolo · edizione come desktop, ma a flusso di testo (non flex)
         così va a capo da solo; restano i due colori (titolo pieno, edizione tenue). */
      .page-meta__center {
        display: block;
        justify-self: stretch;
        text-align: center;
        white-space: normal;
        line-height: 1.45;
      }

      .page-meta__sep {
        margin: 0 .4em;
      }

      .page-meta__title,
      .page-meta__edition {
        font-size: 9px;
        letter-spacing: .1em;
      }

      .pullquote {
        padding-left: 16px;
      }
    }

    /* =========================================================
   VERSION C ADDITIONS
   ========================================================= */

    /* Turn: fullscreen hero */
    .c-turn-hero {
      position: relative;
      height: 100vh;
      height: 100svh;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }

    .c-turn-img {
      position: absolute;
      inset: 0;
      height: 100%;
      width: 100%;
    }

    .c-turn-img__bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image: url('../landing-media/A-04_the-turn-hero.jpg');
      background-size: cover;
      background-position: center 40%;
      transform: scale(1.12);
      transition: transform 1.8s cubic-bezier(.16, 1, .3, 1) 0.1s;
      will-change: transform;
    }

    .s-turn.entered .c-turn-img__bg {
      transform: scale(1.0);
    }

    .c-turn-img::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(180deg, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0.82) 100%);
    }

    .c-turn-content {
      position: absolute;
      bottom: clamp(48px, 8vw, 96px);
      left: 0;
      right: 0;
      z-index: 2;
      padding-top: clamp(80px, 12vw, 140px);
    }

    .c-turn-content .chapter {
      margin-bottom: clamp(28px, 3.5vw, 48px);
    }

    .c-turn-content .turn-headline em {
      color: var(--accent);
    }

    .c-turn-content .turn-lede {
      color: rgba(245, 242, 237, 0.75);
      margin-top: 24px;
      max-width: 60ch;
    }

    /* Turn: stats grid below image */
    .c-turn-stats {
      background: var(--paper);
      padding: clamp(64px, 9vw, 112px) 0;
    }

    .c-turn-stats__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
    }

    @media (max-width: 720px) {
      .c-turn-stats__grid {
        grid-template-columns: 1fr;
      }
    }

    .c-turn-stat .n {
      font-family: var(--f-display);
      font-size: clamp(64px, 9vw, 112px);
      font-weight: 700;
      line-height: 0.9;
      letter-spacing: -0.04em;
      color: var(--accent);
    }

    .c-turn-stat .l {
      font-family: var(--f-body);
      font-size: clamp(16px, 1.4vw, 20px);
      line-height: 1.5;
      color: var(--on-dark);
      max-width: 36ch;
      margin-top: 14px;
    }

    .c-turn-stat .l em {
      color: var(--on-dark);
      font-style: italic;
    }

    .c-turn-stat .l small {
      display: block;
      font-family: var(--f-mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 8px;
    }

    /* SXSW: video background */
    .c-sxsw-video {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 75%;
      overflow: hidden;
      pointer-events: none;
      -webkit-mask-image: linear-gradient(180deg, black 45%, transparent 95%);
      mask-image: linear-gradient(180deg, black 45%, transparent 95%);
      z-index: 1;
    }

    /* Stories: horizontal slider */
    .c-stories-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding: clamp(32px, 4vw, 56px) 0 0;
      scrollbar-width: none;
    }

    .c-stories-track::-webkit-scrollbar {
      display: none;
    }

    .c-story {
      flex: 0 0 clamp(260px, 30vw, 400px);
      scroll-snap-align: start;
      padding: 0 clamp(12px, 1.5vw, 24px);
    }

    .c-story:first-child {
      padding-left: var(--gutter);
    }

    .c-story:last-child {
      padding-right: var(--gutter);
    }

    @media (max-width: 720px) {
      .c-story {
        flex: 0 0 82vw;
      }
    }

    .c-story__photo {
      height: 420px;
      width: 100%;
      flex-shrink: 0;
      background-size: cover;
      background-position: center top;
      position: relative;
      overflow: hidden;
      filter: grayscale(1) contrast(1.05);
    }

    .c-story__photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--accent);
      mix-blend-mode: multiply;
      opacity: 0.5;
    }

    .c-story__flag {
      position: absolute;
      bottom: 12px;
      left: 12px;
      z-index: 2;
      font-family: var(--f-mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--paper);
      background: rgba(26, 26, 26, 0.65);
      padding: 4px 8px;
    }

    .c-story__name {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: clamp(17px, 1.5vw, 21px);
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-top: 18px;
      margin-bottom: 10px;
    }

    .c-story__bio {
      font-family: var(--f-body);
      font-size: 14px;
      line-height: 1.6;
      color: var(--ink-2);
      margin-bottom: 10px;
    }

    .c-story__quote {
      font-family: var(--f-body);
      font-size: 14px;
      font-style: italic;
      line-height: 1.6;
      color: var(--ink);
      border-left: 2px solid var(--accent);
      padding-left: 12px;
      margin: 0;
    }

    /* Stories controls */
    .c-stories-controls {
      max-width: var(--maxw);
      margin: clamp(20px, 2.5vw, 32px) auto 0;
      padding: 0 var(--gutter);
      display: flex;
      align-items: center;
      gap: clamp(14px, 2vw, 24px);
    }

    .c-stories-controls__nav {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }

    .c-stories-controls__nav button {
      width: 48px;
      height: 48px;
      border: 1px solid var(--rule-light);
      display: grid;
      place-items: center;
      cursor: pointer;
      background: transparent;
      color: var(--ink);
      transition: border-color .2s, color .2s;
    }

    .c-stories-controls__nav button:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .c-stories-controls__nav button:disabled {
      opacity: .3;
      cursor: not-allowed;
    }

    .c-stories-controls__nav button:disabled:hover {
      border-color: var(--rule-light);
      color: var(--ink);
    }

    .c-stories-controls__progress {
      flex: 1;
    }

    .c-stories-progress__track {
      height: 1px;
      background: var(--rule-light);
      position: relative;
    }

    .c-stories-progress__fill {
      position: absolute;
      top: -1px;
      left: 0;
      height: 3px;
      background: var(--accent);
      width: 0%;
      transition: width .25s ease;
    }

    .c-stories-controls__count {
      font-family: var(--f-mono);
      font-size: 12px;
      letter-spacing: .2em;
      color: var(--ink);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    .c-stories-controls__sep {
      color: var(--ink-3);
    }

    /* ============================================================
   VERSION E ADDITIONS — from v-d content
   ============================================================ */

    /* Flip card wrapper (replaces simple slider cards) */
    .c-story {
      flex: 0 0 clamp(280px, 32vw, 380px);
      scroll-snap-align: start;
      padding: 0 clamp(10px, 1.4vw, 20px);
      perspective: 1000px;
      cursor: pointer;
    }

    @media (max-width: 720px) {
      .c-story {
        flex: 0 0 82vw;
      }
    }

    .c-story-inner {
      position: relative;
      width: 100%;
      height: 500px;
      transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
      transition: transform .65s cubic-bezier(.4, 0, .2, 1);
    }

    .c-story-inner.flipped {
      transform: rotateY(180deg);
      -webkit-transform: rotateY(180deg);
    }

    .c-story-front,
    .c-story-back {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      background: var(--paper-2);
      padding: 28px 24px 20px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .c-story-back {
      transform: rotateY(180deg);
      -webkit-transform: rotateY(180deg);
    }

    /* Front photo bleed */
    .c-story-photo {
      height: 260px;
      background-size: cover;
      background-position: center top;
      flex-shrink: 0;
      margin: -28px -24px 14px;
      position: relative;
    }

    .c-story-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26, 26, 26, .05) 20%, rgba(26, 26, 26, .82) 100%);
    }

    .c-story-photo-name {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 32px 14px 10px;
      font-family: var(--f-display);
      font-weight: 700;
      font-size: clamp(17px, 1.6vw, 21px);
      letter-spacing: -0.015em;
      color: #F5F2ED;
      line-height: 1.2;
    }

    /* fix16 iOS overlay — transparent div prevents iOS text-selection on swipe */
    .c-story-text-area {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 0;
      position: relative;
    }

    .c-story-text-area::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .c-story-inner.flipped .c-story-text-area::after {
      display: none;
    }

    .c-story-bio {
      font-size: 15px;
      line-height: 1.55;
      color: var(--ink-2);
      margin-bottom: 0;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .c-story-excerpt {
      font-size: 14px;
      font-style: italic;
      line-height: 1.5;
      color: var(--ink);
      border-left: 2px solid var(--accent);
      padding-left: 12px;
      margin-top: 22px;
      margin-bottom: 10px;
      flex-shrink: 0;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .c-story-readmore {
      font-family: var(--f-mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-top: 8px;
    }

    /* Back face */
    .c-story-close {
      position: absolute;
      top: 12px;
      right: 12px;
      background: none;
      border: 1px solid var(--rule-light);
      color: var(--ink);
      width: 32px;
      height: 32px;
      cursor: pointer;
      font-family: var(--f-mono);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: border-color .2s, color .2s;
      flex-shrink: 0;
    }

    .c-story-close:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .c-story-back-name {
      font-family: var(--f-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
      padding-right: 40px;
    }

    .c-story-back-bio {
      font-size: 13px;
      line-height: 1.55;
      color: var(--ink-3);
      flex-shrink: 0;
      margin: 0 0 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--rule-light);
    }

    .c-story-quote-full {
      flex: 1;
      overflow-y: auto;
      overscroll-behavior: contain;
      font-family: var(--f-body);
      font-style: italic;
      font-size: 14px;
      line-height: 1.7;
      color: var(--ink-2);
      padding-right: 6px;
    }

    .c-story-quote-full::-webkit-scrollbar {
      width: 3px;
    }

    .c-story-quote-full::-webkit-scrollbar-thumb {
      background: var(--accent);
    }

    .c-story-quote-full::-webkit-scrollbar-track {
      background: var(--paper-3);
    }

    @media (max-width: 720px) {
      .c-story-inner {
        height: 500px;
      }

      .c-story-quote-full {
        max-height: none;
      }
    }

    /* Stories progress fill */
    .c-stories-controls__progress {
      flex: 1;
    }

    /* Brand person quote */
    .brand-person-quote {
      display: grid;
      grid-template-columns: 104px 1fr;
      gap: clamp(24px, 4vw, 44px);
      align-items: start;
      padding: clamp(28px, 4vw, 48px);
      background: var(--paper-2);
      border: 1px solid var(--rule-light);
      margin-block: clamp(48px, 6vw, 80px);
    }

    .brand-person-quote__avatar {
      width: 104px;
      height: 104px;
      border-radius: 50%;
      background-size: cover;
      background-position: center top;
      flex-shrink: 0;
    }

    .brand-person-quote__brand {
      font-family: var(--f-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 10px;
      text-align: center;
    }

    .brand-person-quote__q {
      font-family: var(--f-body);
      font-style: italic;
      font-size: clamp(16px, .9vw + 10px, 20px);
      line-height: 1.5;
      color: var(--ink-2);
      margin-bottom: 16px;
    }

    .brand-person-quote__q::before {
      content: "\201C";
      color: var(--accent);
      font-style: normal;
      font-size: 1.4em;
      line-height: 0;
      vertical-align: -.15em;
      margin-right: .04em;
    }

    .brand-person-quote__attr {
      font-family: var(--f-mono);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--on-light-mute);
    }

    .brand-person-quote__attr strong {
      color: var(--ink);
    }

    @media (max-width: 860px) {
      .brand-person-quote {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    @media (max-width: 540px) {
      .brand-person-quote {
        padding: 20px;
      }
    }

    /* Report callout */
    .report-callout {
      margin-block: clamp(36px, 5vw, 60px);
      padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 36px);
      border-left: 3px solid var(--accent);
      background: var(--paper-2);
    }

    .report-callout__source {
      font-family: var(--f-mono);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .report-callout__body {
      font-size: clamp(16px, .6vw + 13px, 19px);
      line-height: 1.55;
      color: var(--ink-2);
    }

    .report-callout__body strong {
      color: var(--ink);
      font-weight: 600;
    }

    /* Footnote references */
    .fn-ref {
      background: none;
      border: none;
      cursor: pointer;
      color: inherit;
      font: inherit;
      padding: 0;
      border-bottom: 1px dotted rgba(255, 71, 88, .5);
      transition: border-color .2s;
    }

    .fn-ref:hover {
      border-color: var(--accent);
    }

    .fn-ref sup {
      color: var(--accent);
      font-size: .65em;
      font-family: var(--f-mono);
      font-style: normal;
    }

    /* Footnote popup */
    .fn-overlay {
      position: fixed;
      inset: 0;
      z-index: 599;
      background: rgba(26, 26, 26, .72);
      display: none;
    }

    .fn-popup {
      position: fixed;
      z-index: 600;
      width: min(520px, calc(100vw - 40px));
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--paper-2);
      border: 1px solid var(--rule-light);
      padding: 24px 28px;
      box-shadow: 0 24px 72px rgba(0, 0, 0, .25);
      display: none;
    }

    .fn-popup__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .fn-popup__label {
      font-family: var(--f-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .fn-popup__close {
      background: none;
      border: 1px solid var(--rule-light);
      color: var(--ink);
      width: 28px;
      height: 28px;
      cursor: pointer;
      font-family: var(--f-mono);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .2s, color .2s;
    }

    .fn-popup__close:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .fn-popup__body {
      font-family: var(--f-mono);
      font-size: 13px;
      line-height: 1.7;
      color: var(--ink-2);
    }

    .fn-popup__body strong {
      color: var(--ink);
    }

    /* Conclusion extras from v-d */
    .conc-intro {
      font-family: var(--f-body);
      font-size: clamp(19px, 1.2vw + 10px, 26px);
      line-height: 1.45;
      color: var(--on-dark);
      max-width: 760px;
      margin-bottom: clamp(40px, 6vw, 64px);
      text-wrap: pretty;
    }

    .conc-sub-head {
      font-family: var(--f-mono);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--on-dark-mute);
      margin-bottom: 20px;
    }

    .conc-sub-head a {
      color: var(--on-dark);
      border-bottom: 1px solid var(--rule-dark);
      text-decoration: none;
    }

    .conc-sub-head a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    .conc-stats {
      list-style: none;
      margin-bottom: clamp(56px, 8vw, 96px);
      display: flex;
      flex-direction: column;
      gap: clamp(16px, 2vw, 22px);
    }

    .conc-stats li {
      font-size: clamp(16px, .6vw + 13px, 19px);
      line-height: 1.55;
      color: var(--on-dark);
      border-left: 1px solid var(--rule-dark);
      padding-left: clamp(16px, 2vw, 24px);
    }

    .conc-stats li strong {
      color: var(--on-dark);
    }

    .conc-stats li .accent {
      color: var(--accent);
      font-family: var(--f-display);
      font-weight: 600;
      font-size: 1.1em;
      letter-spacing: -0.02em;
    }

    .conc-close {
      font-family: var(--f-body);
      font-size: clamp(20px, 1.3vw + 10px, 28px);
      line-height: 1.45;
      color: var(--on-dark);
      max-width: 820px;
      text-wrap: pretty;
      margin-bottom: clamp(60px, 8vw, 100px);
    }

    /* Turn headline line animation from v-d */
    .turn-line-1,
    .turn-line-2 {
      display: block;
    }

    .turn-line-1 {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.9s cubic-bezier(.16, 1, .3, 1) 200ms, transform 0.9s cubic-bezier(.16, 1, .3, 1) 200ms;
    }

    .turn-line-2 {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 1.2s cubic-bezier(.16, 1, .3, 1) 700ms, transform 1.2s cubic-bezier(.16, 1, .3, 1) 700ms;
    }

    .turn-headline.reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .turn-headline.reveal.in .turn-line-1,
    .turn-headline.reveal.in .turn-line-2 {
      opacity: 1;
      transform: none;
    }

    /* geo__video (section 2 ambient) */
    .geo__video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .18;
      z-index: 0;
      pointer-events: none;
    }

    .s-geo {
      overflow: hidden;
    }

    /* Dark section overrides for brand-person-quote and report-callout */
    .section--dark .brand-person-quote {
      background: rgba(245, 242, 237, .08);
      border-color: rgba(245, 242, 237, .12);
    }

    .section--dark .brand-person-quote__q {
      color: var(--on-dark-mute);
    }

    .section--dark .brand-person-quote__attr {
      color: var(--on-dark-mute);
    }

    .section--dark .brand-person-quote__attr strong {
      color: var(--on-dark);
    }

    .section--dark .report-callout {
      background: rgba(245, 242, 237, .08);
      border-left-color: var(--accent);
    }

    .section--dark .report-callout__body {
      color: var(--on-dark-mute);
    }

    .section--dark .report-callout__body strong {
      color: var(--on-dark);
    }

    /* Turn parallax image — extended height */
    .c-turn-img {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: calc(100vh + 520px);
      height: calc(100svh + 520px);
      min-height: 1100px;
      width: 100%;
      will-change: transform;
      z-index: 0;
    }

    .c-turn-img__bg {
      background-image: url('../landing-media/A-04_the-turn-hero-alt2.jpg');
      background-position: center 40%;
    }

    .c-turn-img::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(180deg,
          rgba(26, 26, 26, .08) 0%,
          rgba(26, 26, 26, .26) 32%,
          rgba(26, 26, 26, .60) 58%,
          rgba(26, 26, 26, .90) 100%);
    }

    .c-turn-hero {
      z-index: 1;
    }

    .c-turn-stats {
      position: relative;
      z-index: 1;
      background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0px, rgba(26, 26, 26, 1) 400px);
      padding: clamp(64px, 9vw, 112px) 0;
    }

    @media (min-width: 721px) {
      .turn-headline {
        max-width: none;
      }
    }

    @media (max-width: 720px) {
      .c-turn-img__bg {
        background-image: url('../landing-media/A-04_the-turn-hero-mobile-alt2.jpg');
        background-position: center center;
      }

      .turn-headline {
        font-size: clamp(52px, 14vw, 72px);
      }
    }

    /* Header adaptive theme — switches to light palette over light sections */
    .page-meta.over-light {
      color: var(--ink);
      background: rgba(245, 242, 237, 0.9);
    }

    .page-meta.over-light .wr-road {
      fill: var(--ink);
    }

    .page-meta.over-light .page-meta__blog {
      color: var(--ink);
    }

    /* Rispetta chi preferisce meno animazioni: header sempre visibile, niente slide */
    @media (prefers-reduced-motion: reduce) {
      .page-meta {
        transition: color .25s ease, background .25s ease;
      }
      .page-meta.is-hidden {
        transform: none;
      }
    }
