/* Base */
:root {
  --bg: #09090b;
  --panel: #18181b;
  --panel2: rgba(24, 24, 27, 0.35);
  --text: #ffffff;
  --muted: #a1a1aa;
  --muted2: #aaaaaa;
  --border: #27272a;
  --purple: #5200E7;
  --pink: #BE0041;
  --cyan: #22d3ee;
  --shadowYellow: rgba(250, 204, 21, 0.4);
  --shadowCyan: rgba(34, 211, 238, 0.4);
  --shadowPink: rgba(217, 70, 239, 0.5);
  --radius: 8px;
  --max: 1100px;
}

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

@font-face {
    font-family: "Boomme";
    font-style: normal;
    font-weight: normal;
    src: url(../assets/fonts/Boomme.woff2) format("woff2");
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, Helvetica, Arial, "sans-serif";
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
	font-size: 20px;
}

h1,
h2,
h3 {
  font-family: "Boomme", Avenir, Helvetica, Arial, "sans-serif";
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

::selection {
  background: var(--pink);
  color: #fff;
}

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

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

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
}

.textCenter {
  text-align: center;
}

.center {
  display: flex;
  justify-content: center;
}

.kicker {
  margin: 0 0 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--pink);
	text-align: center;
	
}

.kickerPink {
  color: var(--pink);
	font-weight: 900;
}

.kickerCyan {
  color: var(--cyan);
	font-weight: 900;
}

.kickerYellow {
  color: var(--purple);
	font-weight: 900;
}

.section {
  position: relative;
  padding: 96px 0;
  background: var(--bg);
}

.sectionAlt {
  background: rgba(15, 15, 18, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sectionBorderTop {
  border-top: 1px solid rgba(39, 39, 42, 0.6);
}

.sectionTitle {
  margin: 0 0 48px;
  font-weight: 800;
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.05;
  text-align: center;
}

.lead {
  margin: 18px auto 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.accentYellow {
  color: var(--purple);
}

.accentPink {
  color: var(--pink);
}

.accentCyan {
  color: var(--cyan);
}

/* Grunge brush dietro il testo: viola #5200E7, testo bianco (luminance mask sulla texture) */
.textGlow,
.textGlowPink,
.textGlowCyan {
  position: relative;
  z-index: 0;
  display: inline-block;
  isolation: isolate;
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Span vicini sopra la pennellata che sborda (stesso titolo, z-index più basso sullo highlight) */
.heroTitle > span:not([class*="textGlow"]),
.sectionTitle > span:not([class*="textGlow"]) {
  position: relative;
  z-index: 1;
}

/* JPEG/RGB senza alpha: senza mask-mode:luminance il browser tratta la maschera come tutta opaca → blocco pieno */
.textGlow::after,
.textGlowPink::after,
.textGlowCyan::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: -32%;
  bottom: -18%;
  background: #5200e7;
  -webkit-mask-image: url("../assets/text-glow-brush.png");
  mask-image: url("../assets/text-glow-brush.png");
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}

.gradientRadial {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(217, 70, 239, 0.06) 0%, transparent 70%);
}

.neonLine {
  height: 1px;
  width: min(680px, calc(100% - 48px));
  margin: 0 auto;
  background: linear-gradient(90deg, #5200E7, #BE0041, #5200E7);
}
/*5200E7, transparent, #BE0041*/

/* Language switcher — riquadro compatto, bandiera + codice, menu custom; --lang-scroll da JS */
.langSwitcher {
  --lang-scroll: 0;
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  filter: grayscale(calc(var(--lang-scroll, 0) * 1))
    brightness(calc(1 + var(--lang-scroll, 0) * 0.55))
    contrast(calc(1 + var(--lang-scroll, 0) * 0.12));
  opacity: calc(1 - var(--lang-scroll, 0) * 0.28);
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.langSwitcher:hover,
.langSwitcher:focus-within {
  filter: none;
  opacity: 1;
}

.langDropdown {
  position: relative;
}

.langTrigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 3px 26px 3px 5px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: #000000;
  color: #fafafa;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.langTriggerFlag,
.langMenuFlag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
}

.langTriggerChevron {
  position: absolute;
  right: 7px;
  top: 50%;
  width: 10px;
  height: 6px;
  margin-top: -3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23fafafa' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round' d='M1 1.2 5 4.8 9 1.2'/%3E%3C/svg%3E")
    center / contain no-repeat;
  opacity: 0.85;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.langTrigger[aria-expanded="true"] .langTriggerChevron {
  transform: rotate(180deg);
}

.langTrigger:focus {
  outline: none;
}

.langTrigger:focus-visible {
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 2px rgba(255, 255, 255, 0.35);
}

.langMenu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  margin: 0;
  padding: 4px;
  list-style: none;
  min-width: 100%;
  width: max-content;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  z-index: 101;
}

.langMenu li {
  margin: 0;
  padding: 0;
}

.langMenuBtn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #fafafa;
  font: inherit;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}

.langMenuBtn:hover,
.langMenuBtn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.langMenuBtn:focus {
  outline: none;
}

.langMenuBtn.isActive {
  background: rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .langSwitcher {
    transition-duration: 0.01ms;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroBg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  mix-blend-mode: screen;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.heroInner {
  position: relative;
  z-index: 1;
  /* Isola dal mix-blend-mode dello sfondo (evita testo “sparito” su alcuni browser/GPU). */
  isolation: isolate;
  text-align: center;
  padding: 110px 0 90px;
}

.topLogo {
  display: block;
  margin: 0 auto;
  padding-bottom: clamp(48px, 8vw, 100px);
  max-width: min(400px, 86vw);
  text-align: center;
}

.topLogo img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.heroTitle {
  margin: 0 0 22px;
  font-weight: 900;
  font-size: clamp(40px, 6.8vw, 92px);
  line-height: 0.96;
}

.heroSubtitle {
  margin: 0 auto 34px;
  max-width: 720px;
  color: var(--text);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

/* CTA Button — gradient + glassmorphism */
.ctaButton {
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  padding: 0px 30px;
  border-radius: 8px;
  background: linear-gradient(rgb(82, 0, 231), rgb(190, 0, 65));
  color: rgb(255, 255, 255);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: box-shadow 220ms, transform 220ms, filter 220ms;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 32px rgba(82, 0, 231, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/* Glass shine layer */
.ctaButton::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
  border-radius: 7px 7px 0 0;
}

.ctaButton:hover {
  box-shadow:
    0 14px 44px rgba(82, 0, 231, 0.6),
    0 0 24px rgba(190, 0, 65, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.ctaButton:active {
  transform: scale(0.97) translateY(0);
  box-shadow:
    0 4px 18px rgba(82, 0, 231, 0.7),
    0 0 36px rgba(190, 0, 65, 0.6),
    inset 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  filter: brightness(0.92) saturate(1.25);
}

/* Cards */
.cardGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 16px;
}

.cardGrid.twoCol {
  grid-template-columns: 1fr;
}

@media (min-width: 840px) {
  .cardGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .cardGrid.twoCol {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Card — glass panel */
.card {
  position: relative;
  border-radius: 16px;
  padding: 28px;
  background: rgba(24, 24, 27, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--purple);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card.cardCyan:hover {
  transform: translateY(-2px);
}

.cardTitle {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 800;
  color: #fafafa;
}

.cardBody {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cardBody.small {
  font-size: 16px;
}

/* Solution */
.stack {
  display: grid;
  gap: 56px;
}

.solutionRow {
  display: grid;
  gap: 22px;
  align-items: center;
}

@media (min-width: 900px) {
  .solutionRow {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .solutionRow.isReverse .solutionContent {
    order: 2;
  }
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	background: var(--purple);
}

.pillYellow {
  color:white;
}

.solutionTitle {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.solutionBody {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.visualBox {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: rgba(24, 24, 27, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visualBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(250, 204, 21, 0.06), transparent 65%);
  opacity: 0.9;
}

.visualLabel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  /*padding: 0 12px;*/
  text-align: center;
  color: var(--muted2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
}

.visualBox .visualLabel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Parallax */
.parallaxBreak {
  position: relative;
  height: clamp(320px, 60vh, 560px);
  overflow: hidden;
  background: var(--bg);
}

.parallaxBg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.92;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.parallaxVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: scale(1.12);
}

/* Parallax: non riusare la vignetta centrale dell'hero (troppo scura sul video); solo bordi leggeri */
.parallaxBreak .heroOverlay {
  background: radial-gradient(
    ellipse 115% 115% at 50% 45%,
    rgba(0, 0, 0, 0) 52%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.parallaxInner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.parallaxTitle {
  margin: 0;
  font-weight: 900;
  color: #fafafa;
  font-size: clamp(22px, 4.3vw, 54px);
  line-height: 1.15;
}

/* Arsenal */
.toggleGroup {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: rgba(24, 24, 27, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.toggleBtn {
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.toggleBtn:hover:not(.isActive) {
  color: #e4e4e7;
}

/* Solo il tab selezionato: stesso effetto del CTA "Mi interessa" (al posto del giallo) */
.toggleBtn.isActive {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(rgb(82, 0, 231), rgb(190, 0, 65));
  color: rgb(255, 255, 255);
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 8px 32px rgba(82, 0, 231, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.toggleBtn.isActive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
  border-radius: 7px 7px 0 0;
}

.toggleBtn.isActive:hover {
  box-shadow:
    0 14px 44px rgba(82, 0, 231, 0.6),
    0 0 24px rgba(190, 0, 65, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.toggleBtn.isActive:active {
  transform: scale(0.97) translateY(0);
  box-shadow:
    0 4px 18px rgba(82, 0, 231, 0.7),
    0 0 36px rgba(190, 0, 65, 0.6),
    inset 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  filter: brightness(0.92) saturate(1.25);
}

.arsenalGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding: 12px;
}

@media (min-width: 840px) {
  .arsenalGrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

/* Arsenal card — compact glass panel */
.arsenalCard {
  position: relative;
  padding: 22px;
  border-radius: 14px;
  background: rgba(24, 24, 27, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.arsenalCard:hover {
  transform: translateY(-2px);
  border-color: var(--purple);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.arsenalCard.isArtist:hover {
  transform: translateY(-2px);
}

.arsenalCard.isDreamMover:hover {
  transform: translateY(-2px);
}

.arsenalTitle {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-family: "Avenir Next", Avenir, Helvetica, Arial, "sans-serif";
}

.arsenalCard.isArtist .arsenalTitle {
  color: var(--purple);
}

.arsenalCard.isDreamMover .arsenalTitle {
  color: var(--cyan);
}

.arsenalBody {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Quote */
.quote {
  width: min(980px, calc(100% - 48px));
  margin: 64px auto;
  text-align: center;
}

.quoteText {
  margin: 0;
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.25;
  color: rgba(244, 244, 245, 0.92);
}

.quoteAuthor {
  margin-top: 22px;
  color: var(--muted2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 16px;
}

/* Offer */
.offerBox {
  background: rgba(24, 24, 27, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--pink);
  border-radius: 20px;
  padding: clamp(26px, 4vw, 54px);
  text-align: center;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(250, 204, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.offerTitle {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
}

.offerBody {
  margin: 0 auto 26px;
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.benefitList {
  list-style: none;
  padding: 0;
  margin: 0 auto 22px;
  max-width: 640px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.benefitItem {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.benefitBullet {
  color: var(--purple);
  margin-top: 2px;
}

.benefitText {
  color: rgba(244, 244, 245, 0.9);
  line-height: 1.55;
}

.offerFootnote {
  margin: 0 0 18px;
  color: var(--muted2);
  font-size: 16px;
  font-style: italic;
}

/* Form */
.formContainer {
  width: min(820px, calc(100% - 48px));
}

.form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.fieldLabel {
  display: block;
  margin: 0 0 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--muted);
}

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

@media (min-width: 640px) {
  .roleChoice {
    grid-template-columns: 1fr 1fr;
  }
}

.rolePill {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(24, 24, 27, 0.55);
  padding: 14px 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
  color: var(--muted2);
  font-weight: 900;
  text-align: center;
}

.rolePill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rolePill.isArtist:has(input:checked) {
  border-color: var(--purple);
  color: var(--purple);
}

.rolePill.isDreamMover:has(input:checked) {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.12);
}

.textInput {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(24, 24, 27, 0.55);
  color: var(--text);
  padding: 12px 16px;
  font-size: 16px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.textInput::placeholder {
  color: rgba(113, 113, 122, 0.9);
}

.textInput:focus {
  outline: none;
  border-color:var(--muted);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.08);
}

.submitBtn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  color: var(--text);
  font-weight: 900;
	font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.submitBtn.isArtist {
  background: var(--purple);
}

.submitBtn.isDreamMover {
  background: var(--cyan);
}

.submitBtn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: brightness(0.88);
}

.submitBtn:not(:disabled):hover {
  transform: translateY(-1px);
}

.submitBtn.isArtist:not(:disabled):hover {
  box-shadow: 0 0 30px var(--shadowYellow);
}

.submitBtn.isDreamMover:not(:disabled):hover {
  box-shadow: 0 0 30px var(--shadowCyan);
}

.privacy {
  margin: 0;
  color: var(--muted2);
  font-size: 16px;
  text-align: center;
  line-height: 1.55;
}

.isHidden {
  display: none;
}

/* Team */
.sectionTeam {
  padding: 44px 0;
  border-top: 1px solid rgba(39, 39, 42, 0.8);
  background: var(--bg);
}

.teamContainer {
  width: min(860px, calc(100% - 48px));
}

.teamKicker {
  margin: 0 0 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 16px;
  color: rgba(217, 70, 239, 0.9);
}

.teamTitle {
  margin: 0 0 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}

.teamBrand {
  color: #d4d4d8;
  margin: 0 6px 0 6px;
}

.teamList {
  display: grid;
  gap: 18px;
  justify-content: center;
}

@media (min-width: 640px) {
  .teamList {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

.teamMember {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: start;
  max-width: 420px;
}

.teamAvatar {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: grayscale(1);
  opacity: 0.78;
}

/* Avatar vettoriale (placeholder): il grigio + bassa opacità lo facevano sparire sul fondo #09090b */
img.teamAvatar[src$=".svg"] {
  filter: none;
  opacity: 1;
}

.teamName {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: #e4e4e7;
}

.teamRole {
  margin: 4px 0 8px;
  color: var(--pink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
}

.teamDesc {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.footerLogo {
  margin: 0 auto;
	padding-bottom: 50px;
	max-width:200px;
	text-align: center;

}

.footerTagline {
  margin: 0;
  color: var(--muted2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
}
