/* ================================================================
   ANGUS DESIGN — Main Stylesheet
   angelocaravello.it
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      padding: 0;
      background: #080808;
      color: #fff;
      overflow-x: hidden;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-touch-callout: none;
    }

    input, textarea {
      -webkit-user-select: text;
      -moz-user-select: text;
      -ms-user-select: text;
      user-select: text;
    }

.vid-popup-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 999999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
}
.vid-popup-overlay.open { display: flex; }
.vid-popup-wrap {
  position: relative;
  width: 90vw; max-width: 1100px;
  aspect-ratio: 16/9;
}
.vid-popup-wrap video {
  width: 100%; height: 100%;
  border-radius: 14px;
  object-fit: contain;
}
.vid-popup-close {
  position: absolute;
  top: -44px; right: 0;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 100px; padding: 6px 16px;
  cursor: pointer; font-family: 'Bricolage Grotesque', sans-serif;
  transition: background .2s, color .2s;
}
.vid-popup-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.aw5-slide video {
  cursor: pointer;
  pointer-events: all !important;
}

/* Nascondi cursore nativo su tutto il sito */
html.angus-cursor-active,
html.angus-cursor-active * {
  cursor: none !important;
}

/* Elementi del cursore */
#angus-cursor-blob {
  position: fixed;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(120,80,255,0.20);
  filter: blur(18px);
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%,-50%);
  transition: width .3s ease, height .3s ease, background .3s ease, opacity .3s ease;
  will-change: transform;
  opacity: 0;
}

#angus-cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.40);
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%,-50%);
  transition: width .2s ease, height .2s ease, border-color .2s ease, opacity .3s ease, background .2s ease;
  will-change: transform;
  opacity: 0;
}

#angus-cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.90);
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%,-50%);
  transition: opacity .3s ease, transform .15s ease, background .2s ease;
  will-change: transform;
  opacity: 0;
}

/* Stato hover su elementi cliccabili */
html.angus-cursor-active.cursor-hover #angus-cursor-ring {
  width: 52px; height: 52px;
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.04);
}
html.angus-cursor-active.cursor-hover #angus-cursor-blob {
  width: 100px; height: 100px;
  background: rgba(180,100,255,0.25);
}
html.angus-cursor-active.cursor-hover #angus-cursor-dot {
  transform: translate(-50%,-50%) scale(0);
}

/* Stato click */
html.angus-cursor-active.cursor-click #angus-cursor-ring {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.12);
}
html.angus-cursor-active.cursor-click #angus-cursor-blob {
  width: 60px; height: 60px;
  background: rgba(200,120,255,0.35);
}

/* Stato su testo selezionabile */
html.angus-cursor-active.cursor-text #angus-cursor-ring {
  width: 4px; height: 36px;
  border-radius: 2px;
  border-color: rgba(255,255,255,0.80);
}
html.angus-cursor-active.cursor-text #angus-cursor-dot {
  transform: translate(-50%,-50%) scale(0);
}

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&display=swap');

#angus-header-placeholder {
  height: 80px;
  width: 100%;
}

#angus-header-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

#angus-header {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 12px 14px 12px 14px;
  border-radius: 100px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.10) inset,
    0 8px 40px rgba(0, 0, 0, 0.45);

  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#angus-header.scrolled {
  background: rgba(10, 10, 10, 0.65);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 40px rgba(0, 0, 0, 0.60);
}

/* Logo */
#angus-header-logo {
  display: flex;
  align-items: center;
  height: 40px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0 6px;
}
#angus-header-logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* Divisore */
.angus-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Nav */
#angus-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#angus-nav li a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease;
}
#angus-nav li a:hover {
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.08);
}
#angus-nav li a.active {
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.08);
}

/* CTA */
#angus-header-cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 100px;
  padding: 10px 24px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease;
  white-space: nowrap;
}
#angus-header-cta:hover {
  background: #c8792a;
}

/* Lang switch — pillola arancione con glow */
.angus-lang-pill {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #c8792a;
  box-shadow: 0 0 14px rgba(200, 121, 42, 0.55), 0 0 2px rgba(200, 121, 42, 0.6);
  border-radius: 100px;
  padding: 9px 16px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.angus-lang-pill:hover {
  transform: scale(1.06);
  background: #d98a37;
  box-shadow: 0 0 22px rgba(200, 121, 42, 0.75), 0 0 4px rgba(200, 121, 42, 0.7);
}
#angus-mobile-menu .angus-lang-pill {
  display: inline-block;
  margin: 6px auto 0;
}

/* Hamburger mobile */
#angus-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: 4px;
}
#angus-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.80);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
#angus-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#angus-hamburger.open span:nth-child(2) { opacity: 0; }
#angus-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
#angus-mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  z-index: 99998;
  background: rgba(10, 10, 10, 0.90);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px 20px 20px;
  flex-direction: column;
  gap: 0;
}
#angus-mobile-menu.open { display: flex; }
#angus-mobile-menu a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  padding: 13px 4px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}
#angus-mobile-menu a:last-child { border-bottom: none; }
#angus-mobile-menu a:hover { color: #fff; }
#angus-mobile-menu .mobile-cta {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 100px;
  padding: 12px 24px;
  border-bottom: none !important;
}

/* Responsive */
@media (max-width: 850px) {
  #angus-header { gap: 64px; padding: 8px 8px 8px 12px; }
  #angus-nav, .angus-divider, #angus-header-cta { display: none; }
  #angus-hamburger { display: flex; }
  #angus-header-wrap { top: 12px; }
  #angus-mobile-menu { top: 64px; }
}

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,700&display=swap');

.angus-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.angus-marquee-row {
  display: flex;
  width: max-content;
  animation: angus-scroll var(--dur) linear infinite;
}
@keyframes angus-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.angus-inner {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 250px;
  font-weight: var(--weight);
  white-space: nowrap;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.2);; /* ← cambia con il tuo colore */
}
.angus-inner .sep {
  margin: 0 0.4em;
  opacity: 0.3;
}

#angus-about {
    padding: 160px 40px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Label sopra */
  #angus-about .about-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 48px;
    display: block;
  }

  /* Testo principale */
  #angus-about .about-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 400;
    line-height: 1.45;
    color: transparent;
    margin: 0;
    padding: 0;
  }

  #angus-about .about-text .word {
    display: inline-block;
    margin-right: 0.28em;
    white-space: nowrap;
  }

  /* Stato base: grigio quasi invisibile */
  #angus-about .about-text .char {
    display: inline-block;
    color: rgba(255, 255, 255, 0.10);
    transition: color 0.3s ease;
  }

  /* Stato attivo: bianco pieno */
  #angus-about .about-text .char.lit {
    color: rgba(255, 255, 255, 0.92);
  }

  /* Parole in bold */
  #angus-about .about-text .char.w-bold {
    font-weight: 700;
  }

  /* Parole accent (gold) */
  #angus-about .about-text .char.w-accent.lit {
    color: #c8792a;
  }

  /* Linea decorativa sotto */
  #angus-about .about-divider {
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 64px;
  }

#aw5 *, #aw5 *::before, #aw5 *::after { box-sizing: border-box; margin: 0; padding: 0; }

#aw5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  padding: 5%;
  width: 100%;
  background: #000000;
}

.aw5-label {
  font-size: 12px; font-weight: 500;
  padding: 15px !important;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  display: block; margin-bottom: 12px;
}

/* ── Layout ─────────────────── */
.aw5-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT cards ─────────────── */
.aw5-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aw5-card {
  position: relative;
  border-radius: 20px;
  padding: 20px 22px;
  overflow: hidden;
  cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.13);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

/* Base frosted */
.aw5-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.02) 50%,
    rgba(255,255,255,0.05) 100%);
  z-index: 0;
}

/* Iridescenza */
.aw5-card::after {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 220%; height: 220%;
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(255, 80, 80,  0.00)  0deg,
    rgba(255,180, 80,  0.07) 40deg,
    rgba( 80,255,180,  0.09) 100deg,
    rgba( 80,160,255,  0.08) 160deg,
    rgba(180, 80,255,  0.07) 220deg,
    rgba(255, 80,180,  0.06) 280deg,
    rgba(255, 80, 80,  0.00) 360deg);
  z-index: 0;
  opacity: 0;
  transition: opacity .4s, transform .6s;
  transform: rotate(0deg);
}

/* Bordo luminoso */
.aw5-shine {
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.30) 25%,
    rgba(180,220,255,0.50) 50%,
    rgba(255,200,255,0.30) 75%, transparent);
  z-index: 2; opacity: 0.5;
  transition: opacity .3s;
}

/* Riflesso radiale */
.aw5-reflex {
  position: absolute;
  top: -40px; right: -40px;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(120,200,255,0.14) 0%, rgba(200,120,255,0.09) 40%, transparent 70%);
  z-index: 1; opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.aw5-reflex2 {
  position: absolute;
  bottom: -30px; left: 20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,180,100,0.09) 0%, rgba(100,255,180,0.07) 50%, transparent 70%);
  z-index: 1; opacity: 0; transition: opacity .5s .05s;
  pointer-events: none;
}

@media (hover: hover) {
  .aw5-card:hover::after       { opacity: 1; transform: rotate(20deg); }
  .aw5-card:hover .aw5-shine   { opacity: 1; }
  .aw5-card:hover .aw5-reflex  { opacity: 1; }
  .aw5-card:hover .aw5-reflex2 { opacity: 1; }
}

.aw5-card.active {
  border-color: rgba(255,255,255,0.20);
  transform: translateX(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.11) inset,
              0 8px 32px rgba(0,0,0,0.55);
}
.aw5-card.active::after       { opacity: 0.7; transform: rotate(15deg); }
.aw5-card.active .aw5-shine   { opacity: 1; }
.aw5-card.active .aw5-reflex  { opacity: 0.8; }
.aw5-card.active .aw5-reflex2 { opacity: 0.7; }

@media (hover: none) {
  .aw5-card::after        { opacity: 0.55 !important; transform: rotate(10deg) !important; }
  .aw5-card.active::after { opacity: 1 !important; transform: rotate(20deg) !important; }
  .aw5-reflex             { opacity: 0.6 !important; }
  .aw5-reflex2            { opacity: 0.5 !important; }
}

.aw5-card-inner {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 16px;
}
.aw5-logo {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.82); flex-shrink: 0;
  transition: background .28s;
}
.aw5-card.active .aw5-logo { background: rgba(255,255,255,0.13); }
.aw5-meta { flex: 1; min-width: 0; }
.aw5-name {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.90); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.aw5-type {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); line-height: 1.5;
}
.aw5-arrow {
  font-size: 13px; color: rgba(255,255,255,0.15);
  flex-shrink: 0; transition: color .25s, transform .25s;
}
.aw5-card.active .aw5-arrow {
  color: rgba(255,255,255,0.55); transform: translateX(4px);
}

/* ── RIGHT panel ────────────── */
.aw5-right {
  position: sticky;
  top: 100px;
}

.aw5-panel { display: none; }
.aw5-hidden { display: none !important; }
.aw5-panel.active {
  display: block;
  animation: aw5in .4s ease both;
}
@keyframes aw5in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Carousel ───────────────── */
.aw5-carousel {
  position: relative !important;
  width: 100%;
  height: 590px;
  border-radius: 20px;
  overflow: hidden !important;
  border: 0.5px solid rgba(255,255,255,0.09);
  background: #080808;
}

.aw5-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.aw5-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px; font-weight: 700;
  color: rgba(255,255,255,0.04);
  letter-spacing: -2px;
}

/* Gradiente fisso — div reale, non pseudo */
.aw5-grad {
  position: absolute !important;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.10) 30%,
    rgba(0,0,0,0.68) 60%,
    rgba(0,0,0,0.96) 100%);
}

/* Meta sotto carousel — visibile solo mobile */
.aw5-panel-meta {
  display: none;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.aw5-panel-meta .aw5-ov-year {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 6px !important; display: block;
}
.aw5-panel-meta .aw5-ov-title {
  font-size: 22px; font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 10px !important; display: block;
}
.aw5-panel-meta .aw5-ov-desc {
  font-size: 13px; color: rgba(255,255,255,0.60);
  line-height: 1.68; margin-bottom: 14px !important; display: block;
}
.aw5-panel-meta .aw5-ov-tags {
  display: flex; flex-wrap: wrap; gap: 7px !important;
}
.aw5-panel-meta .aw5-ov-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.50);
  border: 0.5px solid rgba(255,255,255,0.20);
  border-radius: 100px; padding: 5px 13px !important;
}

/* Testo sovrapposto */
.aw5-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 0 32px 32px 32px !important;
  z-index: 20 !important;
  pointer-events: none;
}
.aw5-ov-year {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 8px !important;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.aw5-ov-title {
  font-size: 26px; font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 8px !important;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.aw5-ov-desc {
  font-size: 13px; color: rgba(255,255,255,0.70);
  line-height: 1.65; margin-bottom: 16px !important;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.aw5-ov-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.aw5-ov-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.50);
  border: 0.5px solid rgba(255,255,255,0.22);
  border-radius: 100px; padding: 6px 10px !important;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* Tag software → colore sfumato ispirato al brand del tool
   (applicato sia all'overlay desktop che al meta mobile) */
.aw5-ov-tag.tag-ae, .asrv-pill.tag-ae {
  background: linear-gradient(135deg, rgba(20,10,60,0.65), rgba(153,102,255,0.35));
  border-color: rgba(170,130,255,0.45);
  color: #d9c9ff;
}
.aw5-ov-tag.tag-cavalry, .asrv-pill.tag-cavalry {
  background: linear-gradient(135deg, rgba(6,40,24,0.65), rgba(60,255,150,0.30));
  border-color: rgba(90,255,160,0.45);
  color: #bdffd9;
}
.aw5-ov-tag.tag-figma, .asrv-pill.tag-figma {
  background: linear-gradient(120deg,
    rgba(242,78,30,0.35) 0%,
    rgba(162,89,255,0.35) 30%,
    rgba(26,188,254,0.35) 60%,
    rgba(10,207,131,0.35) 100%);
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
}
.aw5-ov-tag.tag-affinity, .asrv-pill.tag-affinity {
  background: linear-gradient(135deg, rgba(60,10,70,0.65), rgba(220,90,220,0.32));
  border-color: rgba(210,120,255,0.45);
  color: #f0d6ff;
}
.aw5-ov-tag.tag-illustrator, .asrv-pill.tag-illustrator {
  background: linear-gradient(135deg, rgba(45,10,0,0.65), rgba(255,154,0,0.35));
  border-color: rgba(255,170,60,0.45);
  color: #ffdcab;
}

/* Tag/pill senza un software di riferimento diretto → colore per
   famiglia tematica, condiviso tra i tag della sezione lavori
   (.aw5-ov-tag) e i pill della sezione servizi (.asrv-pill) */

/* Identità / branding → oro, in linea con l'accento del sito */
.aw5-ov-tag.tag-brand, .asrv-pill.tag-brand {
  background: linear-gradient(135deg, rgba(60,40,5,0.65), rgba(200,121,42,0.35));
  border-color: rgba(220,150,70,0.45);
  color: #f3d9ad;
}

/* Web / UI → blu-ciano */
.aw5-ov-tag.tag-web, .asrv-pill.tag-web {
  background: linear-gradient(135deg, rgba(5,35,60,0.65), rgba(60,160,255,0.32));
  border-color: rgba(100,180,255,0.45);
  color: #c7e6ff;
}

/* E-commerce → verde smeraldo */
.aw5-ov-tag.tag-ecommerce, .asrv-pill.tag-ecommerce {
  background: linear-gradient(135deg, rgba(5,45,35,0.65), rgba(50,210,150,0.32));
  border-color: rgba(90,220,170,0.45);
  color: #bdf5dd;
}

/* Packaging / Print → kraft/carta */
.aw5-ov-tag.tag-print, .asrv-pill.tag-print {
  background: linear-gradient(135deg, rgba(50,35,15,0.65), rgba(190,140,80,0.32));
  border-color: rgba(200,160,110,0.45);
  color: #ecd8bd;
}

/* Motion / video / spot → rosso-arancio energico */
.aw5-ov-tag.tag-motion, .asrv-pill.tag-motion {
  background: linear-gradient(135deg, rgba(55,10,10,0.65), rgba(255,90,60,0.32));
  border-color: rgba(255,120,90,0.45);
  color: #ffd0c2;
}

/* WordPress → blu ufficiale del brand */
.aw5-ov-tag.tag-wordpress, .asrv-pill.tag-wordpress {
  background: linear-gradient(135deg, rgba(5,35,45,0.65), rgba(33,117,155,0.40));
  border-color: rgba(80,170,205,0.45);
  color: #bfe6f5;
}

/* Instagram → gradiente ufficiale del brand */
.aw5-ov-tag.tag-instagram, .asrv-pill.tag-instagram {
  background: linear-gradient(135deg,
    rgba(131,58,180,0.45) 0%,
    rgba(253,29,86,0.40) 50%,
    rgba(252,176,69,0.40) 100%);
  border-color: rgba(255,150,140,0.45);
  color: #ffe1e8;
}

/* Social generico (Reels, Campagne) → rosa-viola */
.aw5-ov-tag.tag-social, .asrv-pill.tag-social {
  background: linear-gradient(135deg, rgba(45,10,45,0.65), rgba(220,90,180,0.32));
  border-color: rgba(230,130,200,0.45);
  color: #f6d4ec;
}

/* Lottie → rosso-rosa del brand LottieFiles */
.aw5-ov-tag.tag-lottie, .asrv-pill.tag-lottie {
  background: linear-gradient(135deg, rgba(55,10,20,0.65), rgba(255,90,110,0.35));
  border-color: rgba(255,130,140,0.45);
  color: #ffd2d8;
}

/* Frecce */
.aw5-arrows {
  position: absolute !important;
  inset: 24px !important;
  display: flex; align-items: top;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 30 !important;
  pointer-events: none;
}
.aw5-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10,10,10,0.55);
  border: 0.5px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.80);
  font-size: 16px; font-style: normal;
  pointer-events: all; user-select: none;
  transition: background .2s, color .2s, transform .15s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset;
}
.aw5-btn:hover  { background: rgba(255,255,255,0.15); color: #fff; transform: scale(1.08); }
.aw5-btn:active { transform: scale(0.95); }

/* Pallini indicatore slide */
.aw5-dots {
  position: absolute !important;
  top: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 30 !important;
}
.aw5-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .25s, width .25s;
}
.aw5-dot:hover  { background: rgba(255,255,255,0.60); }
.aw5-dot.active {
  background: rgba(255,255,255,0.95);
  width: 18px;
  border-radius: 4px;
}
.aw5-dot:focus       { outline: none; }
.aw5-dot:focus-visible {
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 2px;
}


/* ── Mobile ─────────────────── */
@media (max-width: 900px) {
  #aw5 { padding: 80px 24px 120px; }

  /* Frecce visibili anche su mobile, oltre allo swipe.
     align-items:top nella regola base non è un valore CSS valido e
     viene ignorato dal browser: di conseguenza le frecce, avendo
     un'altezza fissa, restano ancorate in alto invece di essere
     centrate verticalmente sull'immagine quadrata mobile — da qui
     l'effetto "decentrato". */
  .aw5-arrows { inset: 16px !important; padding: 0 4px; align-items: center; }
  .aw5-btn { width: 36px; height: 36px; font-size: 14px; }

  /* Carousel su mobile */
  .aw5-carousel {
    position: relative !important;
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    border-radius: 20px 20px 0 0;
    overflow: hidden !important;
    border: 0.5px solid rgba(255,255,255,0.09);
    border-bottom: none;
    background: #080808;
  }

  /* Overlay: nascosto dentro l'immagine su mobile */
  .aw5-overlay {
    display: none !important;
  }

  /* Testo sotto il carousel su mobile */
  .aw5-panel-meta {
    display: block !important;
    padding: 20px 20px 24px !important;
    background: rgba(255,255,255,0.03);
    border: 0.5px solid rgba(255,255,255,0.09);
    border-top: none;
    border-radius: 0 0 20px 20px;
  }

  /* Layout */
  .aw5-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }
  .aw5-left {
    position: static;
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .aw5-right {
    position: static;
    order: 1;
  }

  /* Card → sempre cerchio su mobile */
  .aw5-card,
  .aw5-card.active {
    width: 52px !important;
    height: 52px !important;
    border-radius: 999px !important;
    padding: 0 !important;
    transform: none !important;
    flex-shrink: 0;
  }
  .aw5-card.active {
    border-color: rgba(255,255,255,0.40) !important;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.15) !important;
    background: rgba(255,255,255,0.12) !important;
  }

  /* Nascondi testo dentro la card su mobile */
  .aw5-card-inner .aw5-meta,
  .aw5-card-inner .aw5-arrow { display: none; }

  /* Centrata assolutamente sul cerchio: da block-level di default
     .aw5-card-inner si adattava all'altezza del contenuto (36px del
     logo) invece di riempire i 52px della card, per questo testo/logo
     apparivano spostati verso l'alto anziché centrati. */
  .aw5-card-inner {
    position: absolute; inset: 0;
    justify-content: center; align-items: center; gap: 0;
  }
  .aw5-logo {
    width: 36px; height: 36px;
    border-radius: 999px; border: none; background: transparent;
  }

  /* Riflesso centrato sul cerchio (su mobile la card è un cerchio di
     52px, ma top/right/bottom/left del riflesso erano pensati per la
     card rettangolare desktop e finivano fuori centro) */
  .aw5-card .aw5-reflex,
  .aw5-card .aw5-reflex2 {
    top: 50% !important; left: 50% !important;
    right: auto !important; bottom: auto !important;
    width: 60px !important; height: 60px !important;
    transform: translate(-50%, -50%) !important;
  }

  .aw5-label { margin-bottom: 48px; }
}

/* Rimuovi il riquadro blu di focus/tap su mobile per i controlli
   della sezione lavori (pulsanti freccia e card progetto) */
.aw5-btn,
.aw5-card {
  -webkit-tap-highlight-color: transparent;
}
.aw5-btn:focus,
.aw5-card:focus {
  outline: none;
}
.aw5-btn:focus-visible,
.aw5-card:focus-visible {
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 2px;
}

#angus-srv *, #angus-srv *::before, #angus-srv *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

#angus-srv {
  font-family: 'Bricolage Grotesque', sans-serif;
  padding: 0 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.asrv-label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  display: block; margin-bottom: 16px !important;
}

/* ── Grid ───────────────────── */
.asrv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── Box glass ──────────────── */
.asrv-box {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  padding: 32px 30px 28px !important;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

/* Striscia luminosa top */
.asrv-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.18) 30%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.18) 70%,
    transparent);
  opacity: 0.55; transition: opacity .3s; z-index: 2;
}

/* Iridescenza */
.asrv-aurora {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 130% 90% at 15% 50%, rgba(80,200,160,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 110% 80% at 85% 25%, rgba(120,80,255,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 100% 70% at 50% 90%, rgba(40,140,255,0.11) 0%, transparent 50%);
  filter: blur(22px);
  opacity: 0.6;
  animation: asrv-aurora 7s ease-in-out infinite alternate;
  pointer-events: none;
  transition: opacity .4s;
}

@keyframes asrv-aurora {
  0%   { transform: translate(0px,   0px)  scale(1.00); }
  25%  { transform: translate(14px,  -9px) scale(1.04); }
  50%  { transform: translate(-9px,  12px) scale(0.97); }
  75%  { transform: translate(7px,  -6px)  scale(1.02); }
  100% { transform: translate(-5px,  8px)  scale(1.01); }
}

/* Su mobile aurora sempre visibile */
@media (hover: none) {
  .asrv-aurora { opacity: 0.8 !important; }
}

.asrv-box:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 16px 48px rgba(0,0,0,0.55);
}

.asrv-box:hover::before { opacity: 1; }



/* ── Posizioni ──────────────── */
.asrv-brand  { grid-column: 1 / 3; }
.asrv-web    { grid-column: 1; }
.asrv-social { grid-column: 2; }
.asrv-motion { grid-column: 1 / 3; }

/* Box larghi: layout interno orizzontale */
.asrv-brand .asrv-inner,
.asrv-motion .asrv-inner {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
}
.asrv-brand .asrv-icon-wrap,
.asrv-motion .asrv-icon-wrap { margin-bottom: 0; flex-shrink: 0; }

/* ── Inner ──────────────────── */
.asrv-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; height: 100%;
}

.asrv-icon-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; flex-shrink: 0;
  transition: background .3s;
}
.asrv-box:hover .asrv-icon-wrap { background: rgba(255,255,255,0.14); }
.asrv-icon-wrap i { font-size: 22px; color: rgba(255,255,255,0.80); }

.asrv-text { flex: 1; }

.asrv-num {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.20); 
  margin-bottom: 8px !important; margin-top: 8px !important;
}

.asrv-title {
  font-size: 20px; font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.2; margin-bottom: 12px;
}
.asrv-brand .asrv-title,
.asrv-motion .asrv-title { font-size: 23px; }

.asrv-desc {
  font-size: 14px; color: rgba(255,255,255,0.42);
  line-height: 1.68;
}
.asrv-web .asrv-desc,
.asrv-social .asrv-desc { font-size: 13px; }

.asrv-pills {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 8px !important;
}
.asrv-pill {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.11);
  border-radius: 100px;
  padding: 5px 13px !important;
}

/* ── Mobile ─────────────────── */
@media (max-width: 768px) {
  #angus-srv { padding: 0 24px; }
  .asrv-grid { grid-template-columns: 1fr; }
  .asrv-brand, .asrv-web, .asrv-social, .asrv-motion {
    grid-column: 1 !important;
  }
  .asrv-brand  { order: 1; }
  .asrv-web    { order: 2; }
  .asrv-social { order: 3; }
  .asrv-motion { order: 4; }
  .asrv-brand .asrv-inner,
  .asrv-motion .asrv-inner {
    flex-direction: column; gap: 0;
  }
  .asrv-brand .asrv-icon-wrap,
  .asrv-motion .asrv-icon-wrap { margin-bottom: 22px; }
  .asrv-brand .asrv-title,
  .asrv-motion .asrv-title { font-size: 20px; }
}

#angus-proc *, #angus-proc *::before, #angus-proc *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

#angus-proc {
  font-family: 'Bricolage Grotesque', sans-serif;
  padding: 0 80px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Header ─────────────────── */
.aproc-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  display: block; margin-bottom: 22px;
}

.aproc-headline {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800; line-height: 1.08;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.025em;
  margin-bottom: 72px !important;
}

.aproc-headline em {
  font-style: normal;
  color: rgba(255,255,255,0.30);
}

/* ── Steps ──────────────────── */
.aproc-steps {
  display: flex;
  flex-direction: column;
}

.aproc-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 32px;
  position: relative;
}

/* Linea verticale */
.aproc-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.14) 0%,
    rgba(255,255,255,0.03) 100%);
}

/* Nodo */
.aproc-node {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: background .35s, border-color .35s, box-shadow .35s;
}

/* Aurora glow sul nodo */
.aproc-node::before {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  background: radial-gradient(ellipse 100% 100% at 50% 50%,
    rgba(80,200,160,0.20) 0%, transparent 70%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
  animation: aproc-glow 5s ease-in-out infinite alternate;
}

@keyframes aproc-glow {
  0%   { transform: scale(1.0); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1.0); }
}

.aproc-step:hover .aproc-node {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.04);
}
.aproc-step:hover .aproc-node::before { opacity: 1; }

.aproc-node i {
  font-size: 22px;
  color: rgba(255,255,255,0.60);
  transition: color .3s;
}
.aproc-step:hover .aproc-node i { color: rgba(255,255,255,0.92); }

/* Contenuto */
.aproc-content {
  padding: 10px 0 56px !important;
}
.aproc-step:last-child .aproc-content { padding-bottom: 0 !important; }

.aproc-num {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-bottom: 6px !important;
}

.aproc-title {
  font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,0.90);
  margin-bottom: 12px !important; line-height: 1.2;
}

.aproc-desc {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.42);
  line-height: 1.72;
  max-width: 580px;
}

.aproc-tag {
  display: inline-block;
  margin-top: 16px !important;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.11);
  border-radius: 100px;
  padding: 5px 14px !important;
}

/* ── IntersectionObserver animation ── */
.aproc-step {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.aproc-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile ─────────────────── */
@media (max-width: 768px) {
  #angus-proc { padding: 0 24px; }
  .aproc-headline { font-size: 30px; margin-bottom: 48px; }
  .aproc-step { grid-template-columns: 48px 1fr; gap: 0 20px; }
  .aproc-node { width: 48px; height: 48px; }
  .aproc-node i { font-size: 18px; }
  .aproc-step:not(:last-child)::after { left: 23px; top: 48px; }
  .aproc-title { font-size: 18px; }
  .aproc-desc  { font-size: 14px; }
  .aproc-content { padding-bottom: 40px !important; }
}

#angus-cta *, #angus-cta *::before, #angus-cta *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

#angus-cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px !important;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ── Blob ambientali ─────────────────────────────── */
.angus-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  will-change: transform;
}
.angus-cta-blob-1 {
  width: 500px; height: 380px;
  background: radial-gradient(ellipse, #6040ff, transparent);
  top: -120px; left: -100px;
}
.angus-cta-blob-2 {
  width: 420px; height: 300px;
  background: radial-gradient(ellipse, #ff4080, transparent);
  bottom: -80px; right: -80px;
}
.angus-cta-blob-3 {
  width: 320px; height: 240px;
  background: radial-gradient(ellipse, #00c8ff, transparent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Lastra glass ────────────────────────────────── */
.angus-cta-glass {
  position: relative;
  border-radius: 28px;
  padding: 64px 80px !important;
  max-width: 820px;
  width: 100%;
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 0 0 0.5px rgba(255, 255, 255, 0.04);
}

/* Striscia luminosa superiore */
.angus-cta-shine {
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(180, 140, 255, 0.55) 20%,
    rgba(255, 255, 255, 0.90) 50%,
    rgba(100, 200, 255, 0.55) 80%,
    transparent);
  z-index: 2;
  pointer-events: none;
}

/* Iridescenza animata */
.angus-cta-iris {
  position: absolute;
  inset: -50%;
  width: 200%; height: 200%;
  z-index: 1;
  pointer-events: none;
  will-change: background;
  mix-blend-mode: screen;
}

/* Contenuto */
.angus-cta-content {
  position: relative;
  z-index: 3;
}

.angus-cta-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 22px !important;
  display: block;
}

.angus-cta-headline {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.025em;
  margin-bottom: 36px !important;
}

.angus-cta-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #c8a0ff 0%, #80c8ff 50%, #c8792a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.angus-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.10);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  padding: 14px 30px !important;
  cursor: pointer; text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  position: relative; z-index: 4;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.angus-cta-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.50);
  transform: scale(1.04);
}
.angus-cta-btn-arrow {
  font-size: 16px;
  transition: transform 0.22s;
}
.angus-cta-btn:hover .angus-cta-btn-arrow {
  transform: translateX(5px);
}

/* ── Mobile ──────────────────────────────────────── */
@media (max-width: 768px) {
  #angus-cta { padding: 0 20px; }
  .angus-cta-glass { padding: 48px 32px !important; border-radius: 20px; }
  .angus-cta-headline { font-size: 32px; }
}

#angus-footer *, #angus-footer *::before, #angus-footer *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

#angus-footer {
  font-family: 'Bricolage Grotesque', sans-serif;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 48px 80px !important;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  background: #000000;
}

/* ── Left ───────────────── */
.af-left {
  display: flex; flex-direction: column; gap: 6px !important;
}

.af-name {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.01em;
}

.af-meta {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
  line-height: 1.9 !important;
  text-transform: uppercase;
}

.af-meta a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color .2s;
}
.af-meta a:hover { color: rgba(255,255,255,0.65); }

/* ── Center: bottone torna su ── */
.af-center {
  display: flex; align-items: center; justify-content: center;
}

.af-backtop {
  position: relative;
  width: 86px; height: 86px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

/* Testo circolare che ruota */
.af-spin {
  position: absolute; inset: 0;
  animation: af-spin 10s linear infinite;
  will-change: transform;
}
@keyframes af-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.af-spin svg { width: 86px; height: 86px; }
.af-spin textPath {
  font-size: 8.5px;
  font-weight: 600;
  fill: rgba(255,255,255,0.28);
}

/* Freccia al centro */
.af-arrow {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.af-arrow i {
  font-size: 22px;
  color: rgba(255,255,255,0.55);
  transition: color .25s, transform .3s cubic-bezier(.34,1.4,.64,1);
}

/* Cerchio di sfondo */
.af-backtop::before {
  content: '';
  position: absolute; inset: 10px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .3s cubic-bezier(.34,1.4,.64,1);
}

/* Hover */
.af-backtop:hover::before {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.28);
  transform: scale(1.08);
}
.af-backtop:hover .af-arrow i {
  color: rgba(255,255,255,0.92);
  transform: translateY(-3px);
}
.af-backtop:hover .af-spin {
  animation-duration: 4s;
}
.af-backtop:hover .af-spin text {
  fill: rgba(255,255,255,0.55);
}

/* ── Right ──────────────── */
.af-right {
  text-align: right;
  display: flex; flex-direction: column; gap: 6px !important;
}

.af-copy {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.af-made {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.20);
  line-height: 1.6 !important;
}

/* ── Mobile ─────────────── */
@media (max-width: 768px) {
  #angus-footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 32px !important;
    padding: 40px 24px !important;
    text-align: center;
  }
  .af-left  { align-items: center; order: 2; }
  .af-center { order: 1; }
  .af-right { text-align: center; order: 3; }
}