    /* ═══════════════════════════════════════
       TOKENS + RESET
    ═══════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:      #08080e;
      --viola:   #9b73f8;
      --azzurro: #38bdf8;
      --verde:   #34d399;
      --text:    #eeeef4;
      --dim:     rgba(238,238,244,0.52);
      --muted:   rgba(238,238,244,0.34);
      --border:  rgba(255,255,255,0.08);
      --radius:  14px;
      --dimmer:  rgba(238,238,244,0.44);
      --line:    rgba(238,238,244,0.07);
      --mono:    'Space Mono', monospace;
      --sans:    'Space Grotesk', sans-serif;
      /* accent unico per step-2 */
      --c2: #6ea8f8;
      /* work card accent colors */
      --oro:   #d4a832;
      --rosso: #f87171;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Space Grotesk', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
      cursor: none;
    }

    /* ═══════════════════════════════════════
       CURSOR
    ═══════════════════════════════════════ */
    #c-dot {
      position: fixed;
      width: 6px; height: 6px;
      background: var(--viola);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%,-50%);
    }

    #c-ring {
      position: fixed;
      width: 30px; height: 30px;
      border: 1.5px solid rgba(155,115,248,0.50);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%,-50%);
      transition: width 0.28s ease, height 0.28s ease, border-color 0.28s ease;
    }

    body:has(button:hover) #c-ring,
    body:has(a:hover) #c-ring,
    body:has(.svc-card:hover) #c-ring {
      width: 46px; height: 46px;
      border-color: rgba(155,115,248,0.80);
    }

    /* ═══════════════════════════════════════
       SCROLL BAR
    ═══════════════════════════════════════ */
    #scroll-bar {
      position: fixed;
      top: 0; left: 0;
      height: 2px; width: 0%;
      background: linear-gradient(90deg, var(--viola), var(--azzurro));
      z-index: 9000;
      pointer-events: none;
      overflow: hidden;
    }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 64px;
      height: 72px;
      z-index: 500;
      border-bottom: 1px solid transparent;
      transition: background 0.4s ease, border-color 0.4s ease;
    }

    .nav.scrolled {
      background: rgba(8,8,14,0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: rgba(255,255,255,0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      cursor: none;
    }
    .nav-logo img { display: block; }

    .nav-links { display: flex; gap: 32px; list-style: none; }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: rgba(238,238,244,0.46);
      text-decoration: none;
      letter-spacing: 0.02em;
      position: relative;
      cursor: none;
      transition: color 0.25s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--viola);
      transition: width 0.32s ease;
    }

    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: transparent;
      border: 1px solid rgba(155,115,248,0.30);
      color: var(--viola);
      padding: 8px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;
      letter-spacing: 0.02em;
      cursor: none;
      transition: all 0.25s ease;
    }

    .nav-cta:hover {
      background: rgba(155,115,248,0.10);
      border-color: var(--viola);
    }

    /* ═══════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════ */
    .hero-section {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(155,115,248,0.030) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155,115,248,0.030) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .bg-noise {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.018;
      pointer-events: none;
    }

    .glow-orb { position: absolute; border-radius: 50%; pointer-events: none; }

    .glow-a {
      width: 660px; height: 660px;
      background: radial-gradient(circle, rgba(155,115,248,0.092) 0%, transparent 68%);
      top: -180px; right: -140px;
      animation: floatA 14s ease-in-out infinite alternate;
    }

    .glow-b {
      width: 440px; height: 440px;
      background: radial-gradient(circle, rgba(56,189,248,0.070) 0%, transparent 68%);
      bottom: -100px; left: 20px;
      animation: floatB 10s ease-in-out infinite alternate;
    }

    .glow-c {
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(155,115,248,0.050) 0%, transparent 68%);
      top: 42%; left: 32%;
      animation: floatA 20s ease-in-out 3s infinite alternate-reverse;
    }

    @keyframes floatA {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(-30px,-40px) scale(1.07); }
    }
    @keyframes floatB {
      from { transform: translate(0,0); }
      to   { transform: translate(24px,-30px); }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1240px;
      margin: 0 auto;
      padding: 100px 64px 80px;
      display: grid;
      grid-template-columns: 56fr 44fr;
      gap: 64px;
      align-items: center;
      min-height: 100vh;
    }

    .hero-content { max-width: 580px; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(155,115,248,0.08);
      border: 1px solid rgba(155,115,248,0.20);
      color: var(--viola);
      font-family: 'Space Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      padding: 5px 13px;
      border-radius: 100px;
      letter-spacing: 0.09em;
      margin-bottom: 22px;
      opacity: 0;
    }

    .badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--viola);
      box-shadow: 0 0 8px var(--viola);
      flex-shrink: 0;
      animation: pulseDot 2.2s ease-in-out infinite;
    }

    @keyframes pulseDot {
      0%,100% { box-shadow: 0 0 6px var(--viola); }
      50%      { box-shadow: 0 0 16px var(--viola), 0 0 28px rgba(155,115,248,0.38); }
    }

    .hero-h1 {
      font-size: clamp(42px, 5.4vw, 74px);
      line-height: 1.06;
      letter-spacing: -0.035em;
      margin-bottom: 22px;
    }

    .line-1 {
      display: block;
      font-weight: 300;
      color: rgba(238,238,244,0.48);
      opacity: 0;
    }

    .line-2 {
      display: block;
      font-weight: 700;
      color: var(--text);
      opacity: 0;
    }

    .grad-text {
      background: linear-gradient(128deg, #c4a0fc 0%, var(--viola) 42%, var(--azzurro) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 16px;
      line-height: 1.64;
      color: var(--dim);
      margin-bottom: 36px;
      max-width: 500px;
      opacity: 0;
    }

    .hero-sub strong { color: rgba(238,238,244,0.84); font-weight: 500; }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 48px;
      opacity: 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 34px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      font-family: 'Space Grotesk', sans-serif;
      letter-spacing: 0.01em;
      color: #07070d;
      background: linear-gradient(135deg, var(--viola) 0%, var(--azzurro) 100%);
      border: none;
      cursor: none;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .btn-primary::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--azzurro) 0%, #c084fc 100%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(155,115,248,0.42); }
    .btn-primary:hover::after { opacity: 1; }
    .btn-primary:active { transform: scale(0.97); box-shadow: none; }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 26px;
      border-radius: 10px;
      font-size: 14.5px;
      font-weight: 500;
      font-family: 'Space Grotesk', sans-serif;
      color: rgba(238,238,244,0.64);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.12);
      cursor: none;
      transition: all 0.25s ease;
    }

    .btn-secondary:hover {
      color: var(--text);
      border-color: rgba(155,115,248,0.38);
      background: rgba(155,115,248,0.06);
    }

    .hero-stats {
      display: flex;
      align-items: flex-start;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.07);
      opacity: 0;
    }

    .stat { flex-shrink: 0; }

    .stat:not(:last-child) {
      padding-right: 32px;
      margin-right: 32px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .stat-val {
      font-family: 'Space Mono', monospace;
      font-size: 26px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 7px;
      background: linear-gradient(135deg, var(--viola), var(--azzurro));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-family: 'Space Mono', monospace;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      /* Explicit dimensions so Three.js renderer can measure correctly */
      min-height: 460px;
      align-self: stretch;
    }

    /* Three.js canvas — fills heroVisual, rounded to match site cards */
    #heroVisual canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      display: block;
    }

    @keyframes heroReveal {
      from { opacity: 0; transform: translateY(32px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    /* ── Hero: animazioni sincronizzate col preloader ── */
    /* Partono solo quando il preloader aggiunge hero-ready al body */
    body.hero-ready .hero-badge   { animation: fadeUp    0.60s cubic-bezier(0.22,1,0.36,1) 0.05s both; }
    body.hero-ready .line-1       { animation: fadeUp    0.65s cubic-bezier(0.22,1,0.36,1) 0.14s both; }
    body.hero-ready .line-2       { animation: fadeUp    0.65s cubic-bezier(0.22,1,0.36,1) 0.24s both; }
    body.hero-ready .hero-sub     { animation: fadeUp    0.65s cubic-bezier(0.22,1,0.36,1) 0.42s both; }
    body.hero-ready .hero-actions { animation: fadeUp    0.60s cubic-bezier(0.22,1,0.36,1) 0.56s both; }
    body.hero-ready .hero-stats   { animation: fadeUp    0.55s cubic-bezier(0.22,1,0.36,1) 0.68s both; }
    body.hero-ready .hero-visual  { animation: heroReveal 0.90s cubic-bezier(0.22,1,0.36,1) 0.08s both; }

    /* Accessibilità: mostra tutto immediatamente senza animazioni */
    @media (prefers-reduced-motion: reduce) {
      .hero-badge, .line-1, .line-2, .hero-sub,
      .hero-actions, .hero-stats, .hero-visual { opacity: 1 !important; animation: none !important; }
    }


    /* Luce dinamica — segue il mouse, visibile solo su pointer:fine */
    #hero-light {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }

    /* ═══════════════════════════════════════
       SERVICES SECTION
    ═══════════════════════════════════════ */
    .svc-section {
      position: relative;
      padding: 120px 0 100px;
      background:
        radial-gradient(ellipse at 70% 0%,   rgba(155,115,248,0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 100%,  rgba(56,189,248,0.055) 0%, transparent 45%),
        var(--bg);
    }

    .svc-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 64px;
    }

    .svc-header {
      display: flex;
      flex-direction: column;
      margin-bottom: 64px;
    }

    .section-eyebrow {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: var(--azzurro);
      margin-bottom: 16px;
    }

    .svc-h2 {
      font-size: clamp(28px, 3.4vw, 46px);
      font-weight: 700;
      line-height: 1.10;
      letter-spacing: -0.025em;
      margin-bottom: 14px;
      max-width: 560px;
    }

    .svc-sub {
      font-size: 15.5px;
      color: var(--dim);
      max-width: 420px;
      line-height: 1.68;
    }

    .svc-grid {
      display: grid;
      grid-template-columns: 60fr 40fr;
      gap: 14px;
      align-items: stretch;
    }

    .svc-stack {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 14px;
    }

    .svc-card {
      position: relative;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.028);
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      opacity: 0;
      transform: translateY(28px);
      transition: border-color 0.38s ease, box-shadow 0.38s ease, transform 0.38s ease;
    }

    .svc-card.revealed {
      animation: svcReveal 0.70s cubic-bezier(0.22,1,0.36,1) var(--reveal-delay, 0s) forwards;
    }

    @keyframes svcReveal {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .svc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      height: 2px;
      width: 0%;
      border-radius: 2px 2px 0 0;
      z-index: 4;
      transition: width 0.58s cubic-bezier(0.22,1,0.36,1);
    }

    .svc-card::after {
      content: '';
      position: absolute; inset: 0;
      opacity: 0;
      z-index: 1;
      border-radius: inherit;
      pointer-events: none;
      transition: opacity 0.45s ease;
    }

    .svc-viola  { --a: var(--viola);   --ag: rgba(155,115,248,0.38); --as: rgba(155,115,248,0.14); }
    .svc-azz    { --a: var(--azzurro); --ag: rgba(56,189,248,0.35);  --as: rgba(56,189,248,0.11); }
    .svc-vrd    { --a: var(--verde);   --ag: rgba(52,211,153,0.35);  --as: rgba(52,211,153,0.11); }

    .svc-viola::before  { background: var(--viola); }
    .svc-azz::before    { background: var(--azzurro); }
    .svc-vrd::before    { background: var(--verde); }

    .svc-viola::after   { background: radial-gradient(ellipse at 16% 0%,  rgba(155,115,248,0.09) 0%, transparent 62%); }
    .svc-azz::after     { background: radial-gradient(ellipse at 16% 0%,  rgba(56,189,248,0.08)  0%, transparent 62%); }
    .svc-vrd::after     { background: radial-gradient(ellipse at 16% 0%,  rgba(52,211,153,0.07)  0%, transparent 62%); }

    .svc-card:hover { transform: translateY(-4px); border-color: var(--ag); box-shadow: 0 20px 56px var(--as); }
    .svc-card:hover::before { width: 100%; }
    .svc-card:hover::after  { opacity: 1; }

    .card-num {
      position: absolute;
      top: 20px; right: 28px;
      font-family: 'Space Mono', monospace;
      font-size: 90px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.06em;
      color: rgba(255,255,255,0.038);
      pointer-events: none;
      user-select: none;
      z-index: 0;
      transition: color 0.38s ease;
    }

    .svc-card--compact .card-num { font-size: 64px; top: 16px; right: 22px; }
    .svc-card:hover .card-num { color: rgba(255,255,255,0.065); }

    .card-body {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .svc-card--flagship .card-body { padding: 44px; }
    .svc-card--compact .card-body { padding: 32px; }

    .card-eyebrow {
      font-family: 'Space Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--a);
      margin-bottom: 18px;
      opacity: 0.90;
    }

    .card-title {
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 14px;
    }

    .svc-card--flagship .card-title { font-size: clamp(22px, 2.6vw, 30px); }
    .svc-card--compact  .card-title { font-size: clamp(18px, 1.9vw, 21px); }

    .card-desc {
      color: var(--dim);
      line-height: 1.70;
      margin-bottom: 24px;
    }

    .svc-card--flagship .card-desc { font-size: 14.5px; }
    .svc-card--compact  .card-desc { font-size: 13.5px; }

    .card-outcomes {
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 32px;
      flex: 1;
    }

    .card-outcome {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: rgba(238,238,244,0.74);
      line-height: 1.52;
    }

    .svc-card--compact .card-outcome {
      font-size: 13px;
      flex: 1;
      margin-bottom: 0;
    }

    .oc-icon {
      font-size: 9px;
      color: var(--a);
      margin-top: 4px;
      flex-shrink: 0;
      letter-spacing: 0;
    }

    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.07);
      margin-top: auto;
      gap: 16px;
    }

    .card-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .pill {
      font-family: 'Space Mono', monospace;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 4px 10px;
      border-radius: 4px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      color: rgba(238,238,244,0.40);
      white-space: nowrap;
    }

    .card-micro {
      font-family: 'Space Mono', monospace;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: rgba(238,238,244,0.28);
      line-height: 1.6;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--a);
      white-space: nowrap;
      cursor: pointer;
      flex-shrink: 0;
      transition: gap 0.28s ease;
    }

    .svc-card:hover .card-link { gap: 10px; }

    .cl-arrow {
      display: inline-block;
      transition: transform 0.28s ease;
    }

    .svc-card:hover .cl-arrow { transform: translateX(2px); }

    .svc-bridge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.06);
      flex-wrap: wrap;
    }

    .bridge-text {
      font-size: 15px;
      color: rgba(238,238,244,0.44);
    }

    .bridge-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 15px;
      font-weight: 600;
      color: var(--viola);
      cursor: pointer;
      transition: gap 0.25s ease;
    }

    .bridge-link:hover { gap: 10px; }

    /* ═══════════════════════════════════════
       SHARED ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ═══════════════════════════════════════
       HAMBURGER (mobile only — default hidden)
    ═══════════════════════════════════════ */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 9px;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      transition: background 0.20s ease, border-color 0.20s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-hamburger span {
      display: block;
      width: 18px; height: 1.5px;
      background: rgba(238,238,244,0.78);
      border-radius: 2px;
      transition: transform 0.38s cubic-bezier(0.22,1,0.36,1),
                  opacity   0.22s ease,
                  width     0.22s ease,
                  background 0.22s ease;
      transform-origin: center;
    }
    .nav.menu-open .nav-hamburger {
      background: rgba(155,115,248,0.10);
      border-color: rgba(155,115,248,0.30);
    }
    .nav.menu-open .nav-hamburger span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg); background: var(--viola);
    }
    .nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; width: 0; }
    .nav.menu-open .nav-hamburger span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg); background: var(--viola);
    }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 900px) {
      body { cursor: auto; }
      #c-dot, #c-ring { display: none; }

      /* ── Nav ── */
      .nav { padding: 0 20px; }
      .nav-hamburger { display: flex; }

      /* Menu mobile a pannello fisso */
      .nav-links {
        position: fixed;
        top: 72px; left: 0; right: 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 10px 14px 20px;
        background: rgba(8,8,14,0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        list-style: none;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.40s cubic-bezier(0.22,1,0.36,1),
                    opacity   0.28s ease;
        z-index: 490;
      }
      .nav.menu-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
      .nav-links a {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 500;
        color: rgba(238,238,244,0.68);
        padding: 0 16px;
        min-height: 52px;
        border-radius: 10px;
        letter-spacing: 0;
        cursor: pointer;
        transition: color 0.16s ease, background 0.16s ease;
        -webkit-tap-highlight-color: transparent;
      }
      .nav-links a::after { display: none; }
      .nav-links a:active { color: var(--text); background: rgba(255,255,255,0.06); }
      .nav-links li:last-child a.nav-cta {
        margin-top: 6px;
        justify-content: center;
        background: rgba(155,115,248,0.10);
        border: 1px solid rgba(155,115,248,0.25);
        color: var(--viola);
        font-weight: 600;
        cursor: pointer;
        min-height: 52px;
      }
      .nav-links li:last-child a.nav-cta:active {
        background: rgba(155,115,248,0.20);
      }

      /* ── Hero ── */
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 92px 24px 52px;
        min-height: auto;
      }
      .hero-content { max-width: 100%; }
      .hero-h1 { font-size: clamp(34px, 8vw, 52px); }
      .hero-sub { font-size: 15.5px; max-width: 100%; }
      .hero-actions { flex-direction: column; margin-bottom: 36px; }
      .btn-primary, .btn-secondary {
        width: 100%; justify-content: center;
        min-height: 52px; cursor: pointer;
      }
      .hero-visual {
        min-height: 280px;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
      }

      /* ── Services ── */
      .svc-inner { padding: 0 24px; }
      .svc-section { padding: 80px 0 64px; }
      .svc-grid { grid-template-columns: 1fr; }
      .svc-stack { grid-template-rows: auto auto; }
      .svc-card { cursor: default; }
      .svc-card--flagship .card-body { padding: 28px; }
      .svc-card--compact  .card-body { padding: 24px; }
      .card-num { font-size: 64px; }
      .svc-card--compact .card-num { font-size: 50px; }
    }

    @media (max-width: 480px) {
      .nav { padding: 0 18px; }
      .hero-inner { padding: 84px 18px 44px; gap: 36px; }
      .svc-inner { padding: 0 18px; }
      .stat-val { font-size: 21px; }
      .stat:not(:last-child) { padding-right: 18px; margin-right: 18px; }
      .svc-section { padding: 64px 0 56px; }
      .svc-header { margin-bottom: 40px; }
      .svc-card--flagship .card-body { padding: 22px; }
      .svc-card--compact  .card-body { padding: 20px; }
      .hero-badge { font-size: 9px; letter-spacing: 0.07em; }
      /* 1 colonna su telefono */
      .work-grid { grid-template-columns: 1fr !important; }
      .work-projectx { grid-column: auto !important; min-height: 380px; }
      .work-ossobuco, .work-voyora { min-height: 300px; }
      .work-subtitle { font-size: 14.5px; margin-bottom: 32px; }
    }

    /* ═══════════════════════════════════════
       WORK SECTION
    ═══════════════════════════════════════ */
    .work-section { width:100%; padding:120px 0 140px; position:relative; overflow:hidden;
      background:
        radial-gradient(ellipse at 20% 20%,  rgba(212,168,50,0.07)  0%, transparent 45%),
        radial-gradient(ellipse at 85% 70%,  rgba(155,115,248,0.07) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%,  rgba(248,113,113,0.04) 0%, transparent 60%),
        var(--bg);
    }
    .work-section::before { content:''; position:absolute; top:30%; left:50%; transform:translate(-50%,-50%); width:900px; height:500px; background:radial-gradient(ellipse,rgba(155,115,248,.06) 0%,transparent 70%); pointer-events:none; }
    .work-inner { max-width:1240px; margin:0 auto; padding:0 64px; }
    .work-label { font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--viola); margin-bottom:18px; opacity:0; transform:translateY(14px); transition:opacity .55s ease,transform .55s ease; }
    .work-label.revealed { opacity:1; transform:translateY(0); }
    .work-title { font-size:clamp(32px,4vw,52px); font-weight:700; letter-spacing:-.02em; line-height:1.1; margin-bottom:14px; opacity:0; transform:translateY(16px); transition:opacity .55s ease .08s,transform .55s ease .08s; }
    .work-title.revealed { opacity:1; transform:translateY(0); }
    .work-subtitle { font-size:17px; color:var(--dim); font-weight:400; max-width:480px; line-height:1.55; margin-bottom:56px; opacity:0; transform:translateY(14px); transition:opacity .55s ease .16s,transform .55s ease .16s; }
    .work-subtitle.revealed { opacity:1; transform:translateY(0); }
    .work-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; align-items:stretch; }
    .work-card { position:relative; border-radius:20px; overflow:hidden; cursor:pointer; transform-style:preserve-3d; transform:perspective(900px) scale(1) rotateX(0deg) rotateY(0deg); opacity:0; transition:box-shadow .45s ease,border-color .45s ease; will-change:transform; }
    @keyframes workReveal { from{opacity:0;transform:perspective(900px) translateY(32px) scale(.97)} to{opacity:1;transform:perspective(900px) translateY(0) scale(1)} }
    .work-card.revealed { animation:workReveal .80s cubic-bezier(0.22,1,0.36,1) var(--reveal-delay,0s) forwards; }
    .card-bg { position:absolute; inset:0; background-size:cover; background-position:center; z-index:0; transition:transform .85s cubic-bezier(0.22,1,0.36,1); }
    .work-card:hover .card-bg { transform:scale(1.06); }
    .card-overlay { position:absolute; inset:0; z-index:1; }
    .card-glow { position:absolute; inset:0; z-index:2; opacity:0; transition:opacity .45s ease; pointer-events:none; }
    .work-card:hover .card-glow { opacity:1; }
    .card-content { position:relative; z-index:3; height:100%; display:flex; flex-direction:column; justify-content:space-between; padding:32px 36px; }
    .card-top { display:flex; align-items:center; justify-content:space-between; gap:12px; }
    .card-category { font-family:var(--mono); font-size:10px; letter-spacing:.13em; text-transform:uppercase; color:var(--dimmer); }
    .card-badge { font-family:var(--mono); font-size:10px; letter-spacing:.1em; text-transform:uppercase; padding:5px 11px; border-radius:40px; border:1px solid; line-height:1; }
    .badge-live { color:var(--verde); border-color:rgba(52,211,153,.35); background:rgba(52,211,153,.08); }
    .badge-real { color:var(--azzurro); border-color:rgba(56,189,248,.35); background:rgba(56,189,248,.08); }
    .badge-wip { color:var(--viola); border-color:rgba(155,115,248,.35); background:rgba(155,115,248,.08); animation:wipPulse 2.4s ease-in-out infinite; }
    @keyframes wipPulse { 0%,100%{opacity:1} 50%{opacity:.55} }
    .card-number { font-family:var(--mono); font-size:11px; letter-spacing:.1em; color:var(--dimmer); margin-bottom:8px; }
    .work-card-title { font-weight:700; letter-spacing:-.02em; line-height:1.15; margin-bottom:8px; }
    .work-card-desc { font-size:14px; color:var(--dim); line-height:1.5; margin-bottom:14px; }
    .card-result { display:inline-flex; align-items:center; gap:8px; font-family:var(--mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:20px; }
    .card-result::before { content:''; width:6px; height:6px; border-radius:50%; background:currentColor; opacity:.8; }
    .work-card-link { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; letter-spacing:.04em; text-decoration:none; transition:gap .3s ease,opacity .3s ease; }
    .work-card-link:hover { gap:14px; opacity:.8; }
    .work-card-link svg { width:14px; height:14px; transition:transform .3s ease; }
    .work-card-link:hover svg { transform:translate(3px,-2px); }
    /* card-tech: stack tecnologico */
    .card-tech { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
    .tech-pill {
      font-family:var(--mono); font-size:9px; font-weight:700;
      letter-spacing:.09em; text-transform:uppercase;
      padding:4px 9px; border-radius:5px;
      color:rgba(238,238,244,0.44);
      background:rgba(255,255,255,0.04);
      border:1px solid rgba(255,255,255,0.08);
    }

    /* Project X */
    .work-projectx { min-height:520px; border:1px solid rgba(212,168,50,.10); box-shadow:0 0 0 1px rgba(212,168,50,.06),0 24px 64px rgba(0,0,0,.55),inset 0 1px 0 rgba(212,168,50,.10); }
    .work-projectx:hover { border-color:rgba(212,168,50,.26); box-shadow:0 0 0 1px rgba(212,168,50,.18),0 32px 88px rgba(212,168,50,.14),inset 0 1px 0 rgba(212,168,50,.18); }
    .work-projectx .tech-pill { color:rgba(212,168,50,.60); background:rgba(212,168,50,.06); border-color:rgba(212,168,50,.14); }
    .work-projectx .card-bg { background-image:url('../assets/projectx.webp'),linear-gradient(145deg,#0d0c09 0%,#181308 30%,#1e1506 55%,#120f05 80%,#0a0904 100%); background-blend-mode:multiply; }
    .work-projectx .card-overlay { background:linear-gradient(to top,rgba(8,6,2,.95) 0%,rgba(8,6,2,.65) 40%,rgba(8,6,2,.15) 75%,transparent 100%); }
    .work-projectx .card-glow { background:radial-gradient(ellipse at 60% 80%,rgba(212,168,50,.22) 0%,transparent 60%); }
    .work-projectx .work-card-title { font-size:28px; color:#f5e6b8; }
    .work-projectx .work-card-desc { color:rgba(245,230,184,.55); }
    .work-projectx .card-result { color:var(--oro); }
    .work-projectx .work-card-link { color:#f5e6b8; }
    /* Ossobuco */
    .work-ossobuco { min-height:520px; border:1px solid rgba(248,113,113,.10); box-shadow:0 0 0 1px rgba(248,113,113,.05),0 16px 40px rgba(0,0,0,.5),inset 0 1px 0 rgba(248,113,113,.08); }
    .work-ossobuco .tech-pill { color:rgba(248,113,113,.55); background:rgba(248,113,113,.06); border-color:rgba(248,113,113,.14); }
    .work-ossobuco:hover { border-color:rgba(248,113,113,.28); box-shadow:0 0 0 1px rgba(248,113,113,.18),0 24px 60px rgba(248,113,113,.14),inset 0 1px 0 rgba(248,113,113,.16); }
    .work-ossobuco .card-bg { background-image:url('../assets/ossobuco.webp'),linear-gradient(145deg,#110806 0%,#1a0d08 40%,#0e0604 100%); background-blend-mode:multiply; background-position:center 30%; }
    .work-ossobuco .card-overlay { background:linear-gradient(to top,rgba(10,4,2,.92) 0%,rgba(10,4,2,.55) 45%,rgba(10,4,2,.10) 100%); }
    .work-ossobuco .card-glow { background:radial-gradient(ellipse at 50% 90%,rgba(248,113,113,.18) 0%,transparent 60%); }
    .work-ossobuco .card-content { padding:24px 28px; }
    .work-ossobuco .work-card-title { font-size:20px; color:#fde8e8; }
    .work-ossobuco .work-card-desc { font-size:13px; color:rgba(253,232,232,.5); margin-bottom:10px; }
    .work-ossobuco .card-result { font-size:10px; color:var(--rosso); margin-bottom:14px; }
    .work-ossobuco .work-card-link { font-size:12px; color:#fde8e8; }
    /* Voyra */
    .work-voyora { min-height:520px; border:1px solid rgba(56,189,248,.12); background:rgba(14,22,38,.6); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); box-shadow:0 0 0 1px rgba(56,189,248,.07),0 16px 48px rgba(0,0,0,.5),inset 0 1px 0 rgba(56,189,248,.10); }
    .work-voyora .tech-pill { color:rgba(56,189,248,.60); background:rgba(56,189,248,.06); border-color:rgba(56,189,248,.14); }
    .work-voyora:hover { border-color:rgba(56,189,248,.32); box-shadow:0 0 0 1px rgba(56,189,248,.20),0 24px 64px rgba(56,189,248,.16),inset 0 1px 0 rgba(56,189,248,.18); }
    .work-voyora .card-bg { background:radial-gradient(ellipse at 70% 30%,rgba(56,189,248,.08) 0%,transparent 55%),radial-gradient(ellipse at 20% 70%,rgba(155,115,248,.06) 0%,transparent 50%),radial-gradient(1px 1px at 15% 20%,rgba(255,255,255,.35) 0%,transparent 0%),radial-gradient(1px 1px at 75% 15%,rgba(255,255,255,.25) 0%,transparent 0%),radial-gradient(1px 1px at 55% 65%,rgba(255,255,255,.20) 0%,transparent 0%),linear-gradient(145deg,#060d1a 0%,#0a1220 50%,#050b14 100%); background-size:cover,cover,220px 220px,180px 180px,160px 160px,cover; }
    .work-voyora .card-overlay { background:linear-gradient(to top,rgba(4,8,18,.75) 0%,rgba(4,8,18,.2) 50%,transparent 100%); }
    .work-voyora .card-glow { background:radial-gradient(ellipse at 50% 80%,rgba(56,189,248,.16) 0%,transparent 60%); }
    .work-voyora .card-content { padding:24px 28px; }
    .work-voyora .work-card-title { font-size:20px; color:#d4f0fd; }
    .work-voyora .work-card-desc { font-size:13px; color:rgba(212,240,253,.5); margin-bottom:10px; }
    .work-voyora .card-result { font-size:10px; color:var(--azzurro); margin-bottom:14px; }
    .work-voyora .work-card-link { font-size:12px; color:#d4f0fd; opacity:.6; pointer-events:none; }
    /* Voyra floating logo */
    .voyora-logo-wrap { position:absolute; top:50%; left:50%; transform:translate(-50%,-52%); z-index:3; display:flex; align-items:center; justify-content:center; pointer-events:none; }
    .voyora-logo { width:130px; height:130px; border-radius:30px; overflow:hidden; box-shadow:0 0 0 1px rgba(56,189,248,.28),0 12px 40px rgba(56,189,248,.26),0 0 80px rgba(56,189,248,.16); animation:logoFloat 3.6s ease-in-out infinite; }
    .voyora-logo img { width:100%; height:100%; object-fit:cover; display:block; image-rendering:auto; }
    .voyora-logo-fallback { width:130px; height:130px; border-radius:30px; background:linear-gradient(135deg,#1e3a5f 0%,#0e7bc9 45%,#38bdf8 100%); display:flex; align-items:center; justify-content:center; box-shadow:0 0 0 1px rgba(56,189,248,.30),0 12px 40px rgba(56,189,248,.26),0 0 80px rgba(56,189,248,.18); animation:logoFloat 3.6s ease-in-out infinite; font-size:36px; user-select:none; }
    @keyframes logoFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
    /* Work CTA */
    .work-cta { margin-top:60px; display:flex; align-items:center; justify-content:space-between; gap:24px; padding:36px 44px; border-radius:20px; border:1px solid rgba(155,115,248,.14); background:rgba(155,115,248,.04); opacity:0; transform:translateY(20px); transition:opacity .55s ease .3s,transform .55s ease .3s,border-color .38s ease,background .38s ease; }
    .work-cta.revealed { opacity:1; transform:translateY(0); }
    .work-cta:hover { border-color:rgba(155,115,248,.28); background:rgba(155,115,248,.07); }
    .work-cta-text h3 { font-size:20px; font-weight:700; letter-spacing:-.02em; margin-bottom:6px; }
    .work-cta-text p { font-size:15px; color:var(--dim); }
    .work-cta-btn { display:inline-flex; align-items:center; gap:10px; padding:14px 28px; border-radius:10px; background:var(--viola); color:#fff; font-family:var(--sans); font-size:14px; font-weight:600; letter-spacing:.02em; text-decoration:none; white-space:nowrap; transition:background .25s,transform .25s,box-shadow .25s; box-shadow:0 4px 20px rgba(155,115,248,.28); }
    .work-cta-btn:hover { background:#ae8efb; transform:translateY(-2px); box-shadow:0 8px 32px rgba(155,115,248,.4); }
    .work-cta-btn svg { width:15px; height:15px; }

    /* ═══════════════════════════════════════
       WHY ME SECTION
    ═══════════════════════════════════════ */
    .why-section { width:100%; padding:130px 0 150px; position:relative; overflow:hidden;
      background:
        radial-gradient(ellipse at 90% 10%,  rgba(56,189,248,0.08)  0%, transparent 45%),
        radial-gradient(ellipse at 5%  80%,  rgba(155,115,248,0.07) 0%, transparent 40%),
        var(--bg);
    }
    .why-section::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:1240px; max-width:calc(100% - 128px); height:1px; background:linear-gradient(90deg,transparent 0%,rgba(155,115,248,.20) 30%,rgba(155,115,248,.20) 70%,transparent 100%); }
    .why-section::after { content:''; position:absolute; top:50%; left:60%; transform:translate(-50%,-50%); width:700px; height:500px; background:radial-gradient(ellipse,rgba(155,115,248,.055) 0%,transparent 68%); pointer-events:none; }
    .why-inner { max-width:1240px; margin:0 auto; padding:0 64px; position:relative; z-index:1; }
    .why-grid { display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:center; }
    .reveal-item { opacity:0; transform:translateY(18px); transition:opacity .60s ease var(--d,0s),transform .60s ease var(--d,0s); }
    .reveal-item.revealed { opacity:1; transform:translateY(0); }
    .why-label { font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--viola); margin-bottom:20px; --d:0s; }
    .why-headline { font-size:clamp(30px,3.6vw,50px); font-weight:700; letter-spacing:-.025em; line-height:1.10; margin-bottom:28px; --d:.08s; }
    .why-headline em { font-style:normal; position:relative; color:var(--text); }
    .why-headline em::after { content:''; position:absolute; bottom:-3px; left:0; width:100%; height:2px; background:linear-gradient(90deg,var(--viola),var(--azzurro)); border-radius:2px; transform:scaleX(0); transform-origin:left; transition:transform .7s cubic-bezier(0.22,1,0.36,1) .5s; }
    .why-headline.revealed em::after { transform:scaleX(1); }
    .why-sub { font-size:16px; color:var(--dim); line-height:1.65; max-width:400px; margin-bottom:44px; --d:.16s; }
    .why-creds { display:flex; flex-direction:column; gap:14px; --d:.24s; }
    .why-cred { display:flex; align-items:center; gap:14px; }
    .cred-dot { width:8px; height:8px; border-radius:50%; background:var(--viola); opacity:.7; flex-shrink:0; }
    .cred-dot.azz { background:var(--azzurro); }
    .cred-dot.vrd { background:var(--verde); }
    .cred-text { font-size:14px; color:var(--dim); line-height:1.45; }
    .cred-text strong { font-weight:600; color:var(--text); }
    .why-right { position:relative; }
    .cmp-header { display:grid; grid-template-columns:1fr 40px 1fr; gap:0; margin-bottom:6px; opacity:0; transform:translateY(12px); transition:opacity .55s ease .10s,transform .55s ease .10s; }
    .cmp-header.revealed { opacity:1; transform:translateY(0); }
    .cmp-header-altri,.cmp-header-io { font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; padding:0 22px 10px; }
    .cmp-header-altri { color:var(--dimmer); border-bottom:1px solid rgba(255,255,255,.07); }
    .cmp-header-io { color:var(--viola); border-bottom:1px solid rgba(155,115,248,.25); }
    .cmp-header-mid { border-bottom:1px solid rgba(255,255,255,.07); }
    .cmp-row { display:grid; grid-template-columns:1fr 40px 1fr; align-items:stretch; position:relative; cursor:default; opacity:0; transform:translateY(14px); transition:opacity .55s ease var(--row-delay,0s),transform .55s ease var(--row-delay,0s); }
    .cmp-row.revealed { opacity:1; transform:translateY(0); }
    .cmp-row + .cmp-row::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:var(--line); transition:background .35s ease; }
    .cmp-row:hover + .cmp-row::before,.cmp-row:hover::before { background:transparent; }
    .cmp-row:hover .cmp-altri { opacity:.32; }
    .cmp-row:hover .cmp-io { background:rgba(155,115,248,.07); }
    .cmp-row:hover .cmp-io .io-text { color:var(--text); }
    .cmp-row:hover .cmp-io-glow { opacity:1; }
    .cmp-row:hover .cmp-divider-line { background:linear-gradient(to bottom,transparent,rgba(155,115,248,.35) 30%,rgba(155,115,248,.35) 70%,transparent); }
    .cmp-altri { padding:26px 22px; transition:opacity .35s ease; }
    .altri-text { font-size:14px; color:var(--dimmer); line-height:1.5; }
    .cmp-divider { display:flex; align-items:center; justify-content:center; position:relative; padding:8px 0; }
    .cmp-divider-line { width:1px; height:100%; background:linear-gradient(to bottom,transparent,rgba(255,255,255,.09) 30%,rgba(255,255,255,.09) 70%,transparent); transition:background .45s ease; }
    .cmp-io { padding:26px 22px; position:relative; border-radius:0 10px 10px 0; transition:background .35s ease; overflow:hidden; }
    .cmp-io-glow { position:absolute; inset:0; background:radial-gradient(ellipse at 30% 50%,rgba(155,115,248,.18) 0%,transparent 65%); opacity:0; transition:opacity .45s ease; pointer-events:none; z-index:0; }
    .io-text { font-size:14px; font-weight:500; color:rgba(238,238,244,.82); line-height:1.5; position:relative; z-index:1; transition:color .35s ease; }
    .io-text strong { font-weight:600; color:var(--text); }
    .io-text .io-accent { color:var(--viola); font-weight:600; }
    .cmp-io::before { content:''; position:absolute; top:0; left:0; width:2px; height:0%; background:linear-gradient(to bottom,var(--viola),var(--azzurro)); border-radius:0 2px 2px 0; transition:height .45s cubic-bezier(0.22,1,0.36,1); z-index:2; }
    .cmp-row:hover .cmp-io::before { height:100%; }
    .why-signoff { margin-top:42px; padding-top:28px; border-top:1px solid var(--line); display:flex; align-items:center; gap:16px; opacity:0; transform:translateY(12px); transition:opacity .55s ease .55s,transform .55s ease .55s; }
    .why-signoff.revealed { opacity:1; transform:translateY(0); }
    .signoff-avatar { width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--viola),var(--azzurro)); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-size:13px; font-weight:700; color:#fff; box-shadow:0 0 0 1px rgba(155,115,248,.3),0 4px 18px rgba(155,115,248,.22); }
    .signoff-text { font-size:13px; color:var(--dimmer); line-height:1.5; }
    .signoff-text strong { display:block; font-size:14px; font-weight:600; color:var(--text); margin-bottom:2px; }

    /* ═══════════════════════════════════════
       CHI SONO SECTION
    ═══════════════════════════════════════ */
    .about-section {
      width: 100%;
      padding: 120px 0 130px;
    }

    .about-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 64px;
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 80px;
      align-items: center;
    }

    /* ── Foto ────────────────────────────── */
    .about-photo-wrap {
      position: relative;
    }

    .about-photo-frame {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      aspect-ratio: 3 / 4;
      border: 1px solid rgba(155,115,248,0.18);
      box-shadow:
        0 0 0 1px rgba(155,115,248,0.08),
        0 32px 80px rgba(0,0,0,0.55),
        0 0 60px rgba(155,115,248,0.06);
    }

    .about-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 12%;
      display: block;
      transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
    }

    .about-photo-frame:hover .about-photo {
      transform: scale(1.03);
    }

    /* Glow decorativo sotto la foto */
    .about-photo-accent {
      position: absolute;
      bottom: -32px;
      left: 50%;
      transform: translateX(-50%);
      width: 70%;
      height: 80px;
      background: radial-gradient(ellipse at center, rgba(155,115,248,0.28) 0%, transparent 70%);
      filter: blur(16px);
      pointer-events: none;
      z-index: -1;
    }

    /* ── Testo ────────────────────────────── */
    .about-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--viola);
      margin-bottom: 18px;
    }

    .about-name {
      font-size: clamp(32px, 3.5vw, 46px);
      font-weight: 700;
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .about-role {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.10em;
      color: var(--muted);
      margin-bottom: 36px;
    }

    .about-bio {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 36px;
    }

    .about-bio p {
      font-size: 16px;
      line-height: 1.68;
      color: var(--dim);
      max-width: 520px;
    }

    .about-bio p:last-child {
      font-size: 17px;
      color: rgba(238,238,244,0.78);
      font-weight: 500;
    }

    .about-creds {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 40px;
    }

    .about-cred {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--dim);
      line-height: 1.5;
    }

    .about-cred .cred-dot {
      flex-shrink: 0;
      margin-top: 6px;
    }

    .about-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--mono);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--viola);
      text-decoration: none;
      border: 1px solid rgba(155,115,248,0.30);
      background: rgba(155,115,248,0.06);
      padding: 12px 22px;
      border-radius: 10px;
      transition: border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
    }

    .about-cta svg { width: 14px; height: 14px; transition: transform 0.28s ease; }

    .about-cta:hover {
      border-color: rgba(155,115,248,0.55);
      background: rgba(155,115,248,0.12);
      color: #c4a0ff;
    }

    .about-cta:hover svg { transform: translateX(3px); }

    /* Avatar nel signoff "Perché io" — foto reale */
    .signoff-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 12%;
      border-radius: 50%;
      display: block;
    }

    /* ═══════════════════════════════════════
       PROCESS SECTION
    ═══════════════════════════════════════ */
    .process-section { width:100%; padding:130px 0 150px; position:relative; overflow:hidden;
      background:
        radial-gradient(ellipse at 15% 30%,  rgba(52,211,153,0.07)  0%, transparent 45%),
        radial-gradient(ellipse at 80% 80%,  rgba(56,189,248,0.06)  0%, transparent 40%),
        var(--bg);
    }
    .process-section::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:1240px; max-width:calc(100% - 128px); height:1px; background:linear-gradient(90deg,transparent 0%,rgba(56,189,248,.15) 30%,rgba(155,115,248,.15) 70%,transparent 100%); }
    .process-section::after { content:''; position:absolute; top:55%; left:40%; transform:translate(-50%,-50%); width:800px; height:400px; background:radial-gradient(ellipse,rgba(56,189,248,.05) 0%,transparent 65%); pointer-events:none; }
    .process-inner { max-width:1240px; margin:0 auto; padding:0 64px; position:relative; z-index:1; }
    .process-header { margin-bottom:68px; }
    .process-label { font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--azzurro); margin-bottom:18px; opacity:0; transform:translateY(12px); transition:opacity .55s ease,transform .55s ease; }
    .process-label.vis { opacity:1; transform:translateY(0); }
    .process-title { font-size:clamp(30px,3.6vw,50px); font-weight:700; letter-spacing:-.025em; line-height:1.1; margin-bottom:16px; opacity:0; transform:translateY(14px); transition:opacity .55s ease .08s,transform .55s ease .08s; }
    .process-title.vis { opacity:1; transform:translateY(0); }
    .process-sub { font-size:16px; color:var(--dim); line-height:1.6; max-width:520px; opacity:0; transform:translateY(12px); transition:opacity .55s ease .16s,transform .55s ease .16s; }
    .process-sub.vis { opacity:1; transform:translateY(0); }
    .process-track { display:grid; grid-template-columns:1fr 48px 1fr 48px 1fr 48px 1fr; align-items:start; gap:0; }
    .step-connector { display:flex; align-items:center; justify-content:center; height:100%; padding-top:48px; opacity:0; transition:opacity .55s ease; }
    .step-connector.vis { opacity:1; }
    .connector-inner { display:flex; align-items:center; gap:0; width:100%; }
    .connector-line { flex:1; height:1px; background:linear-gradient(90deg,rgba(255,255,255,.10),rgba(255,255,255,.05)); }
    .connector-arrow { width:16px; height:16px; opacity:.35; color:var(--text); flex-shrink:0; }
    .step-card { position:relative; border-radius:var(--radius); padding:32px 28px 36px; background:rgba(255,255,255,.022); border:1px solid rgba(255,255,255,.07); overflow:hidden; cursor:default; opacity:0; transform:translateY(24px); transition:opacity .65s cubic-bezier(0.22,1,0.36,1) var(--sd,0s),transform .65s cubic-bezier(0.22,1,0.36,1) var(--sd,0s),border-color .40s ease,box-shadow .40s ease,background .40s ease; }
    .step-card.vis { opacity:1; transform:translateY(0); }
    .step-card::before { content:''; position:absolute; top:0; left:0; height:2px; width:0%; background:linear-gradient(90deg,var(--accent),transparent); border-radius:0 2px 0 0; transition:width .60s cubic-bezier(0.22,1,0.36,1); z-index:3; }
    .step-card.vis::before { width:60%; }
    .step-card:hover::before { width:100%; }
    .step-ghost { position:absolute; top:-10px; right:12px; font-family:var(--mono); font-size:96px; font-weight:700; color:var(--accent); opacity:.055; line-height:1; pointer-events:none; user-select:none; transition:opacity .40s ease; z-index:0; }
    .step-card:hover .step-ghost { opacity:.11; }
    .step-card::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 110%,var(--accent-soft) 0%,transparent 60%); opacity:0; transition:opacity .45s ease; pointer-events:none; z-index:1; }
    .step-card:hover::after { opacity:1; }
    .step-card:hover { border-color:var(--accent-border); box-shadow:0 16px 48px var(--accent-shadow); background:rgba(255,255,255,.035); }
    .step-1 { --accent:var(--viola);   --accent-border:rgba(155,115,248,.28); --accent-shadow:rgba(155,115,248,.10); --accent-soft:rgba(155,115,248,.14); --sd:0s; }
    .step-2 { --accent:var(--c2);      --accent-border:rgba(110,168,248,.28); --accent-shadow:rgba(110,168,248,.10); --accent-soft:rgba(110,168,248,.14); --sd:.10s; }
    .step-3 { --accent:var(--azzurro); --accent-border:rgba(56,189,248,.28);  --accent-shadow:rgba(56,189,248,.10);  --accent-soft:rgba(56,189,248,.14);  --sd:.20s; }
    .step-4 { --accent:var(--verde);   --accent-border:rgba(52,211,153,.28);  --accent-shadow:rgba(52,211,153,.10);  --accent-soft:rgba(52,211,153,.14);  --sd:.30s; }
    .step-content { position:relative; z-index:2; }
    .step-icon { width:36px; height:36px; margin-bottom:22px; color:var(--accent); opacity:.80; transition:opacity .35s ease,transform .35s ease; }
    .step-card:hover .step-icon { opacity:1; transform:scale(1.08); }
    .step-num { font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); margin-bottom:12px; display:block; opacity:.70; }
    .step-title { font-size:18px; font-weight:700; letter-spacing:-.018em; line-height:1.2; margin-bottom:14px; color:var(--text); }
    .step-desc { font-size:14px; color:var(--dim); line-height:1.65; }
    .step-tag { display:inline-flex; align-items:center; gap:6px; margin-top:22px; font-family:var(--mono); font-size:10px; letter-spacing:.10em; text-transform:uppercase; color:var(--accent); opacity:.55; transition:opacity .35s ease; }
    .step-card:hover .step-tag { opacity:.85; }
    .step-tag::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--accent); flex-shrink:0; }
    .process-footer { margin-top:56px; padding:28px 40px; border-radius:var(--radius); border:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:32px; background:rgba(255,255,255,.018); opacity:0; transform:translateY(16px); transition:opacity .55s ease .45s,transform .55s ease .45s,border-color .38s ease,background .38s ease; }
    .process-footer.vis { opacity:1; transform:translateY(0); }
    .process-footer:hover { border-color:rgba(155,115,248,.18); background:rgba(155,115,248,.03); }
    .footer-stats { display:flex; align-items:center; gap:40px; }
    .fstat-val { font-family:var(--mono); font-size:22px; font-weight:700; color:var(--text); letter-spacing:-.02em; display:block; margin-bottom:3px; }
    .fstat-label { font-size:12px; color:var(--dimmer); }
    .footer-divider { width:1px; height:36px; background:var(--line); }
    .footer-cta { display:inline-flex; align-items:center; gap:10px; padding:13px 26px; border-radius:10px; background:var(--viola); color:#fff; font-family:var(--sans); font-size:14px; font-weight:600; letter-spacing:.02em; text-decoration:none; white-space:nowrap; flex-shrink:0; box-shadow:0 4px 20px rgba(155,115,248,.28); transition:background .25s,transform .25s,box-shadow .25s; }
    .footer-cta:hover { background:#ae8efb; transform:translateY(-2px); box-shadow:0 8px 32px rgba(155,115,248,.40); }
    .footer-cta svg { width:14px; height:14px; }

    /* ═══════════════════════════════════════
       FAQ SECTION
    ═══════════════════════════════════════ */
    .faq-section { width:100%; padding:130px 0 150px; position:relative; overflow:hidden;
      background:
        radial-gradient(ellipse at 85% 20%,  rgba(155,115,248,0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 10% 70%,  rgba(56,189,248,0.05)  0%, transparent 40%),
        var(--bg);
    }
    .faq-section::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:1240px; max-width:calc(100% - 128px); height:1px; background:linear-gradient(90deg,transparent 0%,rgba(155,115,248,.16) 35%,rgba(155,115,248,.16) 65%,transparent 100%); }
    .faq-section::after { content:''; position:absolute; top:40%; right:-100px; width:500px; height:600px; background:radial-gradient(ellipse,rgba(155,115,248,.055) 0%,transparent 65%); pointer-events:none; }
    .faq-inner { max-width:1240px; margin:0 auto; padding:0 64px; position:relative; z-index:1; }
    .faq-layout { display:grid; grid-template-columns:360px 1fr; gap:100px; align-items:start; }
    .faq-left { position:sticky; top:80px; }
    .rv { opacity:0; transform:translateY(16px); transition:opacity .60s ease var(--d,0s),transform .60s ease var(--d,0s); }
    .rv.vis { opacity:1; transform:translateY(0); }
    .faq-label { font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--viola); margin-bottom:20px; --d:0s; }
    .faq-title { font-size:clamp(28px,3vw,42px); font-weight:700; letter-spacing:-.025em; line-height:1.12; margin-bottom:20px; --d:.08s; }
    .faq-sub { font-size:15px; color:var(--dim); line-height:1.65; margin-bottom:40px; --d:.16s; }
    .faq-nudge { display:flex; flex-direction:column; gap:12px; padding:22px 24px; border-radius:var(--radius); border:1px solid var(--line); background:rgba(255,255,255,.018); --d:.24s; transition:border-color .35s ease,background .35s ease; }
    .faq-nudge:hover { border-color:rgba(155,115,248,.20); background:rgba(155,115,248,.04); }
    .nudge-text { font-size:14px; color:var(--dim); line-height:1.55; }
    .nudge-text strong { display:block; font-size:15px; font-weight:600; color:var(--text); margin-bottom:4px; }
    .nudge-link { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--viola); text-decoration:none; letter-spacing:.02em; transition:gap .3s ease,opacity .3s ease; }
    .nudge-link:hover { gap:13px; opacity:.8; }
    .nudge-link svg { width:13px; height:13px; }
    .faq-list { display:flex; flex-direction:column; }
    .faq-item { border-top:1px solid var(--line); position:relative; overflow:hidden; opacity:0; transform:translateY(14px); transition:opacity .55s ease var(--fd,0s),transform .55s ease var(--fd,0s),background .40s ease; }
    .faq-item:last-child { border-bottom:1px solid var(--line); }
    .faq-item::before { content:''; position:absolute; top:0; left:0; width:2px; height:0%; background:linear-gradient(to bottom,var(--viola),var(--azzurro)); border-radius:0 2px 2px 0; transition:height .50s cubic-bezier(0.22,1,0.36,1); z-index:2; }
    .faq-item.open::before { height:100%; }
    .faq-item.vis { opacity:1; transform:translateY(0); }
    .faq-item.open { background:rgba(155,115,248,.032); }
    .faq-q { width:100%; display:grid; grid-template-columns:36px 1fr 28px; align-items:center; gap:18px; padding:26px 20px 26px 16px; background:none; border:none; cursor:pointer; text-align:left; color:var(--text); font-family:var(--sans); position:relative; z-index:1; -webkit-tap-highlight-color:transparent; transition:padding .40s ease; }
    .faq-item.open .faq-q { padding-bottom:18px; }
    .faq-num { font-family:var(--mono); font-size:10px; letter-spacing:.12em; color:var(--dimmer); line-height:1; transition:color .35s ease; user-select:none; }
    .faq-item.open .faq-num { color:var(--viola); }
    .faq-item:hover .faq-num { color:rgba(155,115,248,.55); }
    .faq-question { font-size:16px; font-weight:600; letter-spacing:-.01em; line-height:1.35; transition:color .30s ease; }
    .faq-toggle { width:24px; height:24px; display:flex; align-items:center; justify-content:center; border-radius:6px; border:1px solid rgba(255,255,255,.09); background:rgba(255,255,255,.03); flex-shrink:0; position:relative; transition:border-color .35s ease,background .35s ease; }
    .faq-item.open .faq-toggle { border-color:rgba(155,115,248,.35); background:rgba(155,115,248,.10); }
    .faq-item:hover .faq-toggle { border-color:rgba(255,255,255,.18); }
    .faq-toggle::before,.faq-toggle::after { content:''; position:absolute; background:var(--dimmer); border-radius:2px; transition:background .30s ease,transform .40s cubic-bezier(0.22,1,0.36,1),opacity .35s ease; }
    .faq-toggle::before { width:10px; height:1.5px; }
    .faq-toggle::after { width:1.5px; height:10px; }
    .faq-item.open .faq-toggle::before { background:var(--viola); }
    .faq-item.open .faq-toggle::after { background:var(--viola); transform:scaleY(0); opacity:0; }
    .faq-item:hover .faq-toggle::before,.faq-item:hover .faq-toggle::after { background:var(--text); }
    .faq-item.open:hover .faq-toggle::before { background:var(--viola); }
    .faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .48s cubic-bezier(0.22,1,0.36,1); position:relative; z-index:1; }
    .faq-item.open .faq-answer { grid-template-rows:1fr; }
    .faq-answer-inner { overflow:hidden; }
    .faq-answer-body { padding:0 20px 28px calc(36px + 18px + 16px); }
    .faq-answer-body p { font-size:15px; color:var(--dim); line-height:1.70; }
    .faq-answer-body strong { font-weight:600; color:rgba(238,238,244,.80); }
    .faq-tag { display:inline-flex; align-items:center; gap:7px; margin-top:16px; font-family:var(--mono); font-size:10px; letter-spacing:.10em; text-transform:uppercase; color:var(--viola); opacity:.65; }
    .faq-tag::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--viola); flex-shrink:0; }

    /* ═══════════════════════════════════════
       CONTACT SECTION
    ═══════════════════════════════════════ */
    .contact-section { width:100%; padding:130px 0 160px; position:relative; overflow:hidden;
      background:
        radial-gradient(ellipse at 95% 50%,  rgba(155,115,248,0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 0%  50%,  rgba(56,189,248,0.07)  0%, transparent 40%),
        var(--bg);
    }
    .contact-section::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:1240px; max-width:calc(100% - 128px); height:1px; background:linear-gradient(90deg,transparent 0%,rgba(155,115,248,.18) 30%,rgba(56,189,248,.18) 70%,transparent 100%); }
    .glow-right { position:absolute; top:50%; right:0; transform:translateY(-50%); width:600px; height:700px; background:radial-gradient(ellipse,rgba(155,115,248,.09) 0%,transparent 65%); pointer-events:none; z-index:0; }
    .glow-left { position:absolute; top:30%; left:-80px; width:400px; height:500px; background:radial-gradient(ellipse,rgba(56,189,248,.05) 0%,transparent 65%); pointer-events:none; z-index:0; }
    .contact-inner { max-width:1240px; margin:0 auto; padding:0 64px; position:relative; z-index:1; }
    .contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:start; }
    .avail-badge { display:inline-flex; align-items:center; gap:9px; padding:7px 14px; border-radius:40px; border:1px solid rgba(52,211,153,.25); background:rgba(52,211,153,.07); font-family:var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--verde); margin-bottom:28px; --d:0s; }
    .avail-dot { width:7px; height:7px; border-radius:50%; background:var(--verde); animation:pulse 2.2s ease-in-out infinite; flex-shrink:0; }
    @keyframes pulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(52,211,153,.4)} 50%{opacity:.7;box-shadow:0 0 0 5px rgba(52,211,153,0)} }
    .contact-label { font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--viola); margin-bottom:18px; --d:.06s; }
    .contact-headline { font-size:clamp(28px,3.2vw,44px); font-weight:700; letter-spacing:-.025em; line-height:1.11; margin-bottom:22px; --d:.12s; }
    .contact-para { font-size:16px; color:var(--dim); line-height:1.68; max-width:420px; margin-bottom:44px; --d:.18s; }
    .contact-reassure { display:flex; flex-direction:column; gap:0; --d:.24s; }
    .reassure-item { display:flex; align-items:center; gap:16px; padding:16px 0; border-bottom:1px solid var(--line); }
    .reassure-item:first-child { border-top:1px solid var(--line); }
    .reassure-icon { width:34px; height:34px; border-radius:9px; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.03); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:border-color .35s,background .35s; }
    .reassure-item:hover .reassure-icon { border-color:rgba(155,115,248,.28); background:rgba(155,115,248,.08); }
    .reassure-icon svg { width:16px; height:16px; color:var(--viola); opacity:.75; transition:opacity .30s; }
    .reassure-item:hover .reassure-icon svg { opacity:1; }
    .reassure-text { display:flex; flex-direction:column; gap:2px; }
    .reassure-title { font-size:14px; font-weight:600; color:var(--text); line-height:1.3; }
    .reassure-detail { font-size:12px; color:var(--dimmer); line-height:1.4; }
    .contact-right { opacity:0; transform:translateY(20px); transition:opacity .65s ease .22s,transform .65s ease .22s; }
    .contact-right.vis { opacity:1; transform:translateY(0); }
    .contact-form-wrap { background:rgba(255,255,255,.024); border:1px solid rgba(255,255,255,.08); border-radius:20px; padding:44px 40px 40px; position:relative; overflow:hidden; transition:border-color .40s ease; }
    .contact-form-wrap:focus-within { border-color:rgba(155,115,248,.22); }
    .contact-form-wrap::after { content:''; position:absolute; bottom:-60px; right:-60px; width:300px; height:300px; background:radial-gradient(ellipse,rgba(155,115,248,.12) 0%,transparent 65%); pointer-events:none; opacity:0; transition:opacity .50s ease; }
    .contact-form-wrap:focus-within::after { opacity:1; }
    .contact-form { display:flex; flex-direction:column; gap:24px; }
    .field-group { display:flex; flex-direction:column; gap:8px; }
    .field-label { font-family:var(--mono); font-size:10px; letter-spacing:.13em; text-transform:uppercase; color:var(--dimmer); transition:color .28s ease; }
    .field-group:focus-within .field-label { color:var(--viola); }
    .field-input,.field-textarea { width:100%; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-radius:10px; padding:14px 16px; font-family:var(--sans); font-size:15px; font-weight:400; color:var(--text); outline:none; -webkit-appearance:none; transition:border-color .30s ease,background .30s ease,box-shadow .30s ease; }
    .field-input::placeholder,.field-textarea::placeholder { color:var(--dimmer); font-size:14px; }
    .field-input:focus,.field-textarea:focus { border-color:rgba(155,115,248,.50); background:rgba(155,115,248,.045); box-shadow:0 0 0 3px rgba(155,115,248,.10),0 0 20px rgba(155,115,248,.07); }
    .field-input.error,.field-textarea.error { border-color:rgba(248,113,113,.50); background:rgba(248,113,113,.04); }
    .field-textarea { resize:vertical; min-height:140px; max-height:320px; line-height:1.6; }
    .field-meta { display:flex; justify-content:flex-end; margin-top:-16px; }
    .char-count { font-family:var(--mono); font-size:10px; color:var(--dimmer); letter-spacing:.06em; transition:color .25s ease; }
    .char-count.near { color:rgba(248,196,113,.65); }
    .char-count.over { color:rgba(248,113,113,.75); }
    .submit-wrap { display:flex; flex-direction:column; gap:12px; margin-top:4px; }
    .contact-submit { position:relative; width:100%; padding:16px 28px; border:none; border-radius:12px; background:var(--viola); color:#fff; font-family:var(--sans); font-size:15px; font-weight:600; letter-spacing:.02em; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:10px; box-shadow:0 4px 24px rgba(155,115,248,.30); transition:background .28s,transform .28s,box-shadow .28s; overflow:hidden; }
    .contact-submit::before { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent); transition:left .55s ease; }
    .contact-submit:hover::before { left:160%; }
    .contact-submit:hover { background:#ae8efb; transform:translateY(-2px); box-shadow:0 8px 36px rgba(155,115,248,.42); }
    .contact-submit:active { transform:translateY(0); box-shadow:0 4px 20px rgba(155,115,248,.28); }
    .contact-submit svg { width:15px; height:15px; transition:transform .28s ease; }
    .contact-submit:hover svg { transform:translateX(3px); }
    .contact-submit.loading { pointer-events:none; opacity:.8; }
    .contact-submit.loading .btn-text { opacity:0; }
    .contact-submit .btn-text { display:flex; align-items:center; gap:10px; }
    .contact-submit .btn-spinner { position:absolute; display:none; width:18px; height:18px; border:2px solid rgba(255,255,255,.3); border-top-color:#fff; border-radius:50%; animation:spin .65s linear infinite; }
    .contact-submit.loading .btn-spinner { display:block; }
    @keyframes spin { to { transform:rotate(360deg); } }
    .contact-microcopy { font-size:12px; color:var(--dimmer); text-align:center; line-height:1.5; letter-spacing:.01em; }

    /* FIX: errore visivo invio form */
    .form-send-error {
      color: #f87171;
      font-size: 13px;
      line-height: 1.55;
      padding: 10px 14px;
      background: rgba(248,113,113,0.07);
      border: 1px solid rgba(248,113,113,0.20);
      border-radius: 8px;
      margin-bottom: 12px;
      animation: fadeUp 0.3s ease both;
    }
    .contact-success { display:none; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:16px; padding:24px 0 8px; min-height:280px; opacity:0; transition:opacity .50s ease; }
    .contact-success.visible { opacity:1; }
    .success-icon { width:56px; height:56px; border-radius:50%; border:1.5px solid rgba(52,211,153,.40); background:rgba(52,211,153,.08); display:flex; align-items:center; justify-content:center; animation:successPop .55s cubic-bezier(0.34,1.56,0.64,1) forwards; }
    @keyframes successPop { from{transform:scale(0.6);opacity:0} to{transform:scale(1);opacity:1} }
    .success-icon svg { width:24px; height:24px; color:var(--verde); }
    .success-title { font-size:20px; font-weight:700; letter-spacing:-.018em; color:var(--text); }
    .success-sub { font-size:14px; color:var(--dim); line-height:1.6; max-width:280px; }
    .success-mono { font-family:var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--verde); opacity:.65; margin-top:4px; }
    /* Footer */
    .site-footer { max-width:1240px; margin:100px auto 0; padding:28px 64px 32px; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:20px; opacity:0; transform:translateY(12px); transition:opacity .55s ease .4s,transform .55s ease .4s; }
    .site-footer.vis { opacity:1; transform:translateY(0); }
    .footer-left { display:flex; flex-direction:column; gap:6px; }
    .footer-copy { font-family:var(--mono); font-size:11px; color:var(--dimmer); letter-spacing:.06em; }
    .footer-copy span { color:rgba(155,115,248,.55); }
    .footer-tagline { font-family:var(--mono); font-size:10px; color:var(--muted); letter-spacing:.05em; }
    .footer-email { font-family:var(--mono); font-size:11px; color:rgba(155,115,248,.70); letter-spacing:.06em; text-decoration:none; transition:color .25s ease; }
    .footer-email:hover { color:var(--viola); }
    .footer-links { display:flex; align-items:center; gap:24px; }
    .footer-link { font-family:var(--mono); font-size:10px; letter-spacing:.11em; text-transform:uppercase; color:var(--dimmer); text-decoration:none; transition:color .28s ease; }
    .footer-link:hover { color:var(--viola); }

    /* ═══════════════════════════════════════
       ADDITIONAL RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 960px) {
      .work-inner,.why-inner,.process-inner,.faq-inner,.contact-inner { padding: 0 32px; }
      .site-footer { padding-left: 32px; padding-right: 32px; }
      /* Sezioni: padding verticale ridotto rispetto al desktop */
      .work-section { padding: 88px 0 100px; }
      .about-section { padding: 88px 0 100px; }
      .about-inner { padding: 0 32px; grid-template-columns: 1fr; gap: 48px; }
      .about-photo-frame { aspect-ratio: 4 / 3; max-width: 480px; }
      .why-section,.process-section,.faq-section,.contact-section { padding: 92px 0 100px; }
      /* Work */
      .work-grid { grid-template-columns: 1fr 1fr; }
      .work-projectx { min-height: 440px; grid-column: 1 / -1; }
      .work-ossobuco,.work-voyora { min-height: 360px; }
      .voyora-logo { width: 100px; height: 100px; border-radius: 24px; }
      .work-cta { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 26px; }
      .work-cta-btn { width: 100%; justify-content: center; min-height: 52px; }
      /* Why */
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .why-sub { max-width: 100%; }
      /* Process */
      .process-track { grid-template-columns: 1fr; gap: 16px; }
      .step-connector { display: none; }
      .process-footer { flex-direction: column; align-items: flex-start; gap: 18px; padding: 22px 24px; }
      .footer-stats { flex-wrap: wrap; gap: 20px; }
      .footer-cta { width: 100%; justify-content: center; min-height: 52px; }
      /* FAQ */
      .faq-layout { grid-template-columns: 1fr; gap: 40px; }
      .faq-left { position: static; }
      /* Contact */
      .contact-grid { grid-template-columns: 1fr; gap: 44px; }
      .contact-para { max-width: 100%; }
      .contact-form-wrap { padding: 32px 28px; }
    }
    @media (max-width: 600px) {
      /* Sezioni — ritmo verticale unificato */
      .work-section,.why-section,.process-section,.faq-section,.contact-section { padding: 76px 0 84px; }
      .work-inner,.why-inner,.process-inner,.faq-inner,.contact-inner { padding: 0 20px; }
      .about-section { padding: 72px 0 80px; }
      .about-inner { padding: 0 20px; gap: 36px; }
      .about-photo-frame { aspect-ratio: 4 / 5; }
      .about-name { font-size: clamp(26px, 7vw, 34px); }
      .about-bio p { font-size: 15px; }
      .about-bio p:last-child { font-size: 16px; }
      .about-cta { width: 100%; justify-content: center; }
      .site-footer { padding-left: 20px; padding-right: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }

      /* Work */
      .work-subtitle { font-size: 15px; line-height: 1.5; margin-bottom: 32px; }
      .work-projectx { min-height: 340px; }
      .work-ossobuco,.work-voyora { min-height: 280px; }
      .card-content { padding: 20px; }
      .work-ossobuco .card-content,.work-voyora .card-content { padding: 18px; }
      .work-projectx .work-card-title { font-size: 22px; }
      /* Mobile: immagini senza blend-mode, zona scura solida sulla metà bassa per leggibilità */
      .work-projectx .card-bg { background-blend-mode: normal; }
      .work-ossobuco .card-bg  { background-blend-mode: normal; }
      .work-projectx .card-overlay { background: linear-gradient(to top, rgba(8,6,2,1) 0%, rgba(8,6,2,1) 50%, rgba(8,6,2,.60) 72%, rgba(8,6,2,.05) 100%); }
      .work-ossobuco .card-overlay  { background: linear-gradient(to top, rgba(10,4,2,1) 0%, rgba(10,4,2,1) 50%, rgba(10,4,2,.58) 72%, rgba(10,4,2,.05) 100%); }
      /* Voyra mobile: card glassmorphic + logo piccolo in alto, niente sfondo foto */
      .voyora-logo-wrap { display: flex; top: 16px; transform: translateX(-50%); }
      .voyora-logo-wrap .voyora-logo,
      .voyora-logo-wrap .voyora-logo img { width: 68px; height: 68px; }
      .voyora-logo-wrap .voyora-logo { border-radius: 16px; }
      .work-voyora .card-content { padding-top: 100px; }
      .work-voyora { min-height: 340px; }
      .work-cta { padding: 20px 18px; border-radius: 16px; }
      .work-cta-text h3 { font-size: 17px; }
      .work-cta-btn { border-radius: 12px; }

      /* Why */
      .why-headline,.process-title,.faq-title,.contact-headline { font-size: clamp(23px, 6vw, 28px); }
      .why-sub { font-size: 15px; margin-bottom: 30px; }
      .cmp-header-altri,.cmp-header-io { font-size: 9px; padding: 0 12px 10px; }
      .cmp-altri,.cmp-io { padding: 16px 12px; }
      .altri-text,.io-text { font-size: 13px; line-height: 1.55; }
      .why-signoff { padding-top: 20px; margin-top: 32px; gap: 12px; }
      .signoff-avatar { width: 36px; height: 36px; font-size: 11px; }
      .signoff-text { font-size: 12.5px; }
      .signoff-text strong { font-size: 13px; }

      /* Process */
      .step-card { padding: 24px 20px 26px; }
      .step-ghost { font-size: 68px; top: -8px; }
      .step-title { font-size: 16px; }
      .step-desc { font-size: 13.5px; line-height: 1.62; }
      .step-tag { font-size: 9px; margin-top: 18px; }
      .process-footer { padding: 18px; border-radius: 12px; }
      /* 3 stat in griglia uniforme, divider nascosti */
      .footer-divider { display: none; }
      .footer-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; }
      .fstat-val { font-size: 18px; }
      .fstat-label { font-size: 11px; }

      /* FAQ */
      .faq-sub { font-size: 14.5px; margin-bottom: 24px; }
      .faq-nudge { padding: 16px 16px; gap: 10px; }
      .nudge-text { font-size: 13px; }
      .nudge-text strong { font-size: 14px; }
      .nudge-link { min-height: 44px; align-items: center; font-size: 13px; }
      .faq-q {
        grid-template-columns: 28px 1fr 26px;
        gap: 12px;
        padding: 18px 14px 18px 12px;
        min-height: 60px;
      }
      .faq-question { font-size: 15px; line-height: 1.38; }
      .faq-answer-body { padding: 0 14px 22px calc(28px + 12px + 12px); }
      .faq-answer-body p { font-size: 14px; line-height: 1.68; }

      /* Contact */
      .avail-badge { font-size: 9.5px; padding: 6px 12px; }
      .contact-form-wrap { padding: 22px 16px 18px; border-radius: 16px; }
      .contact-form { gap: 18px; }
      .field-label { font-size: 9.5px; }
      .field-input,.field-textarea { font-size: 16px; padding: 13px 13px; border-radius: 10px; }
      .field-textarea { min-height: 120px; }
      .contact-submit { min-height: 54px; border-radius: 12px; font-size: 15px; }
      .contact-microcopy { font-size: 12px; }
      .contact-para { font-size: 15px; }

      /* Footer */
      .footer-copy { font-size: 10.5px; }
      .footer-email { font-size: 10.5px; }
      .footer-links { gap: 18px; }
    }

    /* ═══════════════════════════════════════
       SHAKE ANIMATION (form validation)
    ═══════════════════════════════════════ */
    @keyframes shake {
      10%, 90% { transform: translateX(-2px); }
      20%, 80% { transform: translateX(4px); }
      30%, 50%, 70% { transform: translateX(-5px); }
      40%, 60% { transform: translateX(5px); }
      100% { transform: translateX(0); }
    }

    /* ═══════════════════════════════════════
       COOKIE CONSENT BANNER
    ═══════════════════════════════════════ */
    .cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9990;
      padding: 0 24px 24px;
      pointer-events: none;
      display: flex;
      justify-content: center;
      transform: translateY(110%);
      transition: transform 0.50s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .cookie-banner.visible {
      transform: translateY(0);
      pointer-events: auto;
    }

    .cookie-inner {
      width: 100%;
      max-width: 860px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 20px 28px;
      background: rgba(13, 13, 22, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(155, 115, 248, 0.18);
      border-radius: 18px;
      box-shadow:
        0 0 0 1px rgba(155, 115, 248, 0.08),
        0 -4px 40px rgba(0, 0, 0, 0.55),
        0 8px 60px rgba(155, 115, 248, 0.06);
    }

    .cookie-text { flex: 1; min-width: 0; }

    .cookie-title {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -.01em;
      margin-bottom: 4px;
    }

    .cookie-desc {
      font-size: 13px;
      color: var(--dim);
      line-height: 1.55;
    }

    .cookie-link {
      color: var(--viola);
      text-decoration: none;
      margin-left: 6px;
      transition: color 0.2s ease;
    }

    .cookie-link:hover { color: #ae8efb; }

    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    .cookie-btn {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .02em;
      padding: 10px 20px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
      white-space: nowrap;
    }

    .cookie-btn--reject {
      background: rgba(255, 255, 255, 0.06);
      color: var(--dim);
      border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .cookie-btn--reject:hover {
      background: rgba(255, 255, 255, 0.10);
      color: var(--text);
      transform: translateY(-1px);
    }

    .cookie-btn--accept {
      background: var(--viola);
      color: #fff;
      box-shadow: 0 4px 18px rgba(155, 115, 248, 0.30);
    }

    .cookie-btn--accept:hover {
      background: #ae8efb;
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(155, 115, 248, 0.45);
    }

    @media (max-width: 640px) {
      .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 18px;
      }
      .cookie-actions { width: 100%; }
      .cookie-btn { flex: 1; text-align: center; min-height: 48px; }
    }

    /* ═══════════════════════════════════════
       SMALL PHONES (≤ 380px)
    ═══════════════════════════════════════ */
    @media (max-width: 380px) {
      .hero-inner { padding-left: 16px; padding-right: 16px; }
      .hero-h1 { font-size: clamp(28px, 9vw, 36px); }
      .hero-badge { font-size: 8.5px; padding: 4px 10px; letter-spacing: 0.06em; }
      .hero-stats { flex-wrap: wrap; row-gap: 14px; }
      .stat:not(:last-child) { padding-right: 14px; margin-right: 14px; }
      .stat-val { font-size: 19px; }
      .svc-inner { padding: 0 16px; }
      .work-inner,.why-inner,.process-inner,.faq-inner,.contact-inner { padding: 0 16px; }
      .svc-card--flagship .card-body { padding: 18px; }
      .svc-card--compact  .card-body { padding: 16px; }
      .faq-q { padding: 16px 12px 16px 10px; }
      .contact-form-wrap { padding: 18px 14px; }
    }

    /* ═══════════════════════════════════════
       TOUCH INTERACTIONS
       Target: dispositivi touch senza hover
       (pointer: coarse = dito, non mouse)
    ═══════════════════════════════════════ */
    @media (hover: none) and (pointer: coarse) {

      /* Disabilita effetti hover-only che non scattano mai su touch */
      .svc-card:hover {
        transform: none !important;
        border-color: rgba(255,255,255,0.08) !important;
        box-shadow: none !important;
      }
      .svc-card:hover::before { width: 0% !important; }
      .svc-card:hover::after  { opacity: 0 !important; }
      .work-card:hover .card-bg   { transform: none !important; }
      .work-card:hover .card-glow { opacity: 0 !important; }

      /* Stati :active — feedback visivo immediato al tocco */
      .svc-card:active {
        transform: scale(0.985) !important;
        border-color: var(--ag) !important;
        transition: transform 0.10s ease, border-color 0.10s ease !important;
      }
      .svc-card:active::before { width: 100% !important; transition: width 0.12s ease !important; }
      .svc-card:active::after  { opacity: 1 !important; transition: opacity 0.12s ease !important; }

      .work-card:active {
        transform: scale(0.984) !important;
        transition: transform 0.10s ease !important;
      }
      .work-card:active .card-glow { opacity: 1 !important; }

      .btn-primary:active  { transform: scale(0.97) !important; box-shadow: 0 4px 18px rgba(155,115,248,0.20) !important; }
      .btn-secondary:active { background: rgba(155,115,248,0.09) !important; border-color: rgba(155,115,248,0.32) !important; color: var(--text) !important; }

      .faq-q:active         { background: rgba(155,115,248,0.06) !important; }
      .faq-nudge:active     { border-color: rgba(155,115,248,0.22) !important; }

      .work-cta-btn:active  { background: #ae8efb !important; transform: scale(0.98) !important; }
      .footer-cta:active    { background: #ae8efb !important; transform: scale(0.98) !important; }
      .nav-cta:active       { background: rgba(155,115,248,0.16) !important; border-color: rgba(155,115,248,0.45) !important; }
      .nav-hamburger:active { background: rgba(255,255,255,0.09) !important; }
      .contact-submit:active { background: #ae8efb !important; transform: translateY(0) !important; }
      .cookie-btn--accept:active { background: #ae8efb !important; }
      .cookie-btn--reject:active { background: rgba(255,255,255,0.13) !important; color: var(--text) !important; }

      .nudge-link:active,
      .card-link:active,
      .work-card-link:active,
      .bridge-link:active,
      .footer-link:active { opacity: 0.68; }

      /* Touch target minimi (Apple HIG: 44px, Material: 48px) */
      .btn-primary, .btn-secondary  { min-height: 52px; }
      .work-cta-btn, .footer-cta    { min-height: 52px; }
      .contact-submit                { min-height: 54px; }
      .faq-q                         { min-height: 60px; }
      .nav-cta, .nav-hamburger       { min-height: 44px; }
      .cookie-btn                    { min-height: 48px; }

      .card-link, .nudge-link, .work-card-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }
      .footer-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }
      .reassure-item { min-height: 52px; }

      /* Cursore — gli elementi con cursor:none tornano a pointer */
      .nav-cta, .btn-primary, .btn-secondary,
      .faq-q, .work-cta-btn, .footer-cta,
      .svc-card, .work-card, .nav-hamburger,
      .bridge-link, .nudge-link, .cookie-btn,
      .contact-submit, .card-link,
      .work-card-link, .footer-link { cursor: pointer; }
    }

    /* ═══════════════════════════════════════
       MICRO-INTERAZIONI
       Eleganti, non invasive.
    ═══════════════════════════════════════ */

    /* 1 — Text selection */
    ::selection {
      background: rgba(155,115,248,0.28);
      color: var(--text);
    }

    /* 2 — Focus ring unificato (keyboard nav) */
    :focus-visible {
      outline: 2px solid rgba(155,115,248,0.62);
      outline-offset: 3px;
      border-radius: 5px;
    }
    :focus:not(:focus-visible) { outline: none; }

    /* 3 — Scroll bar: shimmer sul progresso */
    #scroll-bar::after {
      content: '';
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 60px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.52), transparent);
      animation: scrollBarShine 2.8s ease-in-out infinite;
      transform: translateX(-100%);
    }
    @keyframes scrollBarShine {
      0%   { transform: translateX(-100%); opacity: 0; }
      15%  { opacity: 1; }
      85%  { opacity: 1; }
      100% { transform: translateX(600%); opacity: 0; }
    }

    /* 4 — Nav logo */
    .nav-logo { transition: opacity 0.22s ease; }
    .nav-logo:hover { opacity: 0.70; }

    /* 5 — Hero badge */
    .hero-badge {
      transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }
    .hero-badge:hover {
      border-color: rgba(155,115,248,0.44);
      background: rgba(155,115,248,0.13);
      box-shadow: 0 0 22px rgba(155,115,248,0.13);
    }

    /* 6 — Hero stats: focus sul valore hovering, dimmer gli altri */
    .hero-stats .stat {
      cursor: default;
      transition: opacity 0.28s ease, transform 0.28s ease;
    }
    .hero-stats:hover .stat         { opacity: 0.44; }
    .hero-stats:hover .stat:hover   { opacity: 1; transform: translateY(-2px); }
    .stat-val                        { transition: color 0.25s ease; }
    .hero-stats:hover .stat:hover .stat-val { color: var(--viola); }

    /* 7 — Outcome icons ▸: slide su card hover */
    .oc-icon {
      display: inline-block;
      transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
    }
    .svc-card:hover .oc-icon { transform: translateX(4px); }

    /* 8 — Pills: lift */
    .pill {
      transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
    }
    .pill:hover {
      border-color: rgba(155,115,248,0.28);
      color: rgba(238,238,244,0.70);
      background: rgba(155,115,248,0.05);
    }

    /* 9 — Tech pills: reagiscono all'hover della work card */
    .tech-pill { transition: border-color 0.30s ease, color 0.30s ease; }
    .work-card:hover .tech-pill {
      border-color: rgba(255,255,255,0.16);
      color: rgba(238,238,244,0.68);
    }

    /* 10 — Work card: category + result salgono su hover */
    .card-category  { transition: color 0.30s ease; }
    .card-result    { transition: opacity 0.30s ease; opacity: 0.78; }
    .card-number    { transition: opacity 0.35s ease; }
    .work-card:hover .card-category { color: rgba(238,238,244,0.65); }
    .work-card:hover .card-result   { opacity: 1; }
    .work-card:hover .card-number   { opacity: 0.52; }

    /* 11 — Form: barra accent verticale al focus */
    .field-group::before {
      content: '';
      position: absolute;
      left: 0;
      top: 30px; /* sotto la label */
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--viola), var(--azzurro));
      border-radius: 0 2px 2px 0;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.34s cubic-bezier(0.22,1,0.36,1);
      z-index: 2;
      pointer-events: none;
    }
    .field-group:focus-within::before { transform: scaleY(1); }

    /* 12 — Credential dots: pop su hover */
    .cred-dot {
      transition: transform 0.26s cubic-bezier(0.22,1,0.36,1),
                  opacity   0.26s ease,
                  box-shadow 0.26s ease;
    }
    .why-cred:hover .cred-dot {
      transform: scale(1.7);
      opacity: 1;
      box-shadow: 0 0 7px currentColor;
    }

    /* 13 — Signoff avatar: scale su hover */
    .signoff-avatar {
      transition: transform 0.30s cubic-bezier(0.22,1,0.36,1), box-shadow 0.30s ease;
    }
    .why-signoff:hover .signoff-avatar {
      transform: scale(1.09);
      box-shadow: 0 0 0 2.5px rgba(155,115,248,0.44), 0 4px 24px rgba(155,115,248,0.24);
    }

    /* 14 — Availability badge: glow */
    .avail-badge {
      transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }
    .avail-badge:hover {
      border-color: rgba(52,211,153,0.50);
      background: rgba(52,211,153,0.12);
      box-shadow: 0 0 20px rgba(52,211,153,0.14);
    }

    /* 15 — Reassure items: slide-right + icon scale */
    .reassure-item { transition: transform 0.28s cubic-bezier(0.22,1,0.36,1); }
    .reassure-item:hover { transform: translateX(4px); }
    .reassure-icon svg {
      transition: opacity 0.30s ease, transform 0.30s cubic-bezier(0.22,1,0.36,1);
    }
    .reassure-item:hover .reassure-icon svg { opacity: 1; transform: scale(1.14); }

    /* 16 — Process footer stats: lift */
    .footer-stat {
      cursor: default;
      transition: transform 0.28s ease;
    }
    .footer-stat:hover { transform: translateY(-2px); }
    .fstat-val { transition: color 0.25s ease; }
    .footer-stat:hover .fstat-val { color: var(--viola); }

    /* 17 — Bridge link → arrow */
    .bridge-link span {
      display: inline-block;
      transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
    }
    .bridge-link:hover span { transform: translateX(5px); }

    /* 18 — FAQ tag: slide-in al'apertura dell'item */
    .faq-item .faq-tag {
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity 0.34s ease 0.18s, transform 0.34s cubic-bezier(0.22,1,0.36,1) 0.18s;
    }
    .faq-item.open .faq-tag { opacity: 1; transform: translateX(0); }

    /* ═══════════════════════════════════════
       NUOVI MIGLIORAMENTI
    ═══════════════════════════════════════ */

    /* 19 — Nav link attivo durante lo scroll */
    .nav-links a.nav-active { color: var(--text); }
    .nav-links a.nav-active::after { width: 100%; }

    /* 21 — Hero subtitle: versione lunga (desktop) / corta (mobile) */
    .sub-short { display: none; }

    @media (max-width: 600px) {
      .sub-detail { display: none; }
      .sub-short  { display: inline; }
    }

    /* 22 — Hero orb fallback CSS (mobile, quando WebGL non è disponibile) */
    .hero-orb-fallback {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-orb-fallback::before {
      content: '';
      width: 200px; height: 200px;
      border-radius: 50%;
      background: radial-gradient(ellipse at 40% 35%,
        rgba(155,115,248,0.40) 0%,
        rgba(56,189,248,0.18) 45%,
        transparent 72%);
      box-shadow:
        0 0 60px rgba(155,115,248,0.28),
        0 0 120px rgba(56,189,248,0.12);
      animation: orbPulse 4s ease-in-out infinite;
    }
    .hero-orb-fallback::after {
      content: '';
      position: absolute;
      width: 168px; height: 168px;
      border-radius: 50%;
      border: 1px solid rgba(155,115,248,0.22);
      animation: orbRing 7s linear infinite;
    }
    .hero-orb-fallback.no-anim::before,
    .hero-orb-fallback.no-anim::after { animation: none; }

    @keyframes orbPulse {
      0%, 100% { transform: scale(1);    opacity: 0.75; }
      50%       { transform: scale(1.10); opacity: 1;    }
    }
    @keyframes orbRing {
      from { transform: rotate(0deg)   scaleX(1.55); opacity: 0.25; }
      50%  {                                          opacity: 0.55; }
      to   { transform: rotate(360deg) scaleX(1.55); opacity: 0.25; }
    }

    /* 23 — Hero stat: tap feedback su touch */
    @media (hover: none) and (pointer: coarse) {
      .hero-stat { -webkit-tap-highlight-color: transparent; }
      .hero-stat:active .stat-val { color: var(--viola); }
      .hero-stat:active            { transform: translateY(-2px); }
    }

    /* ═══════════════════════════════════════
       SAFE AREA — iOS home bar
    ═══════════════════════════════════════ */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
      .cookie-banner {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
      }
      @media (max-width: 640px) {
        .cookie-banner {
          padding-bottom: max(16px, env(safe-area-inset-bottom));
        }
      }
    }
