:root {
  --blue-900: #001b3d;
  --red-500: #eb1d27;
  --red-700: #b01d23;
  --green-400: #9eff1f;
  --green-500: #91e326;
  --gray-700: #545454;
  --black: #000000;
  --white: #ffffff;

  --container: 1400px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --shadow-soft: 0 16px 50px rgba(11, 18, 32, 0.14);
  --shadow-card: 0 14px 40px rgba(11, 18, 32, 0.12);

  --page: #f7f9ff;
  --page-2: #eef4ff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-2: rgba(255, 255, 255, 0.72);

  --text: rgba(11, 18, 32, 0.92);
  --muted: rgba(11, 18, 32, 0.72);
  --muted-2: rgba(11, 18, 32, 0.6);
  --line: rgba(11, 18, 32, 0.14);
  --card: rgba(0, 27, 61, 0.04);
  --card-2: rgba(0, 27, 61, 0.06);
  --card-3: rgba(0, 27, 61, 0.08);

  --header-bg: rgba(255, 255, 255, 0.78);
  --header-border: rgba(11, 18, 32, 0.08);

  --input-bg: rgba(255, 255, 255, 0.9);
  --input-border: rgba(11, 18, 32, 0.14);

  --error: rgba(176, 29, 35, 0.95);

  --page-bg: radial-gradient(1100px 760px at 12% 12%, rgba(235, 29, 39, 0.14), transparent 58%),
    radial-gradient(980px 760px at 88% 6%, rgba(145, 227, 38, 0.12), transparent 56%),
    radial-gradient(1100px 820px at 68% 100%, rgba(0, 27, 61, 0.06), transparent 60%),
    linear-gradient(180deg, var(--page), var(--page-2));

  --footer-bg: rgba(255, 255, 255, 0.6);

  color-scheme: light;
}

:root[data-theme="dark"] {
  --shadow-soft: 0 16px 50px rgba(0, 0, 0, 0.32);
  --shadow-card: 0 14px 40px rgba(0, 0, 0, 0.26);

  --page: #001b3d;
  --page-2: #001b3d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.04);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.6);
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.08);
  --card-3: rgba(255, 255, 255, 0.1);

  --header-bg: rgba(0, 27, 61, 0.7);
  --header-border: rgba(255, 255, 255, 0.08);

  --input-bg: rgba(0, 0, 0, 0.18);
  --input-border: rgba(255, 255, 255, 0.14);

  --error: rgba(235, 29, 39, 0.92);

  --page-bg: radial-gradient(1200px 800px at 15% 20%, rgba(235, 29, 39, 0.2), transparent 55%),
    radial-gradient(900px 700px at 80% 15%, rgba(145, 227, 38, 0.18), transparent 55%),
    radial-gradient(1200px 900px at 70% 85%, rgba(255, 255, 255, 0.08), transparent 55%), var(--blue-900);

  --footer-bg: rgba(0, 0, 0, 0.18);

  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.45;
}

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

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

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-140%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

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

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

.brand__logo {
  width: 176px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__link {
  font-size: 14px;
  color: var(--text);
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav__link:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--line);
  transform: translateY(-1px);
}

.nav__link:active {
  transform: translateY(0);
}

.nav__link:focus-visible {
  outline: none;
  border-color: rgba(158, 255, 31, 0.45);
  box-shadow: 0 0 0 4px rgba(158, 255, 31, 0.14);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
}

.theme-toggle:active {
  transform: translateY(0);
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.theme-toggle__icon svg {
  width: 18px;
  height: 18px;
}

.theme-toggle__icon--sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle__icon--sun {
  display: inline-flex;
}

:root[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(11, 18, 32, 0.75);
  border-radius: 99px;
}

.mobile-nav {
  width: min(100% - 24px, var(--container));
  margin: 0 auto 14px auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 10px;
  display: grid;
  gap: 6px;
}

.mobile-nav__link {
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--text);
  font-weight: 800;
  border: 1px solid transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.mobile-nav__link:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--line);
}

.news {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.news__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news__dot {
  position: relative;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  flex: 0 0 12px;
  display: inline-block;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  box-shadow: 0 0 0 4px rgba(145, 227, 38, 0.12);
}

.news__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(145, 227, 38, 0.35);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(145, 227, 38, 0.35);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(145, 227, 38, 0);
  }
}

@media (max-width: 760px) {
  .news__dot::after {
    animation-duration: 1.3s;
  }
}

.news__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
}

.news__text {
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(90deg, rgba(235, 29, 39, 0.95), rgba(158, 255, 31, 0.95), rgba(0, 27, 61, 0.9));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: news-gradient 4.8s ease-in-out infinite;
}

.news__text:hover {
  animation-duration: 2.8s;
}

@keyframes news-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news__text {
    animation: none;
    background-size: 100% 100%;
  }
}

html.theme-modal-open,
body.theme-modal-open {
  overflow: hidden;
}

.theme-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.theme-modal__card {
  width: min(560px, 100%);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  padding: 22px;
  text-align: center;
}

.theme-modal__brand {
  height: 44px;
  width: auto;
  display: block;
  margin: 0 auto 12px auto;
}

.theme-modal__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.25px;
}

.theme-modal__actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.theme-modal__logos {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.theme-modal__logos img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}
.news + .hero {
  padding-top: 0;
}

@media (max-width: 760px) {
  .live-banner + .hero {
    padding-top: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  border-color: rgba(235, 29, 39, 0.35);
  box-shadow: 0 16px 40px rgba(235, 29, 39, 0.22);
  color: var(--white);
}

.btn--primary:hover {
  box-shadow: 0 20px 52px rgba(235, 29, 39, 0.3);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--surface-2);
}

.btn--sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  margin: 0 auto;
  max-width: 1040px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.cookie-banner__inner {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.cookie-banner__title {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.cookie-banner__text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner__link {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.cookie-banner__actions .cookie-banner__link {
  align-self: center;
}

@media (max-width: 760px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

.link {
  color: rgba(158, 255, 31, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(145, 227, 38, 0.3);
  z-index: 90;
  border: 1px solid rgba(145, 227, 38, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(145, 227, 38, 0.38);
}

.whatsapp-fab:active {
  transform: translateY(0);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  transform-origin: center;
  animation: heartbeat 1.6s ease-in-out infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  18% {
    transform: scale(1.18);
  }
  36% {
    transform: scale(1);
  }
  54% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(145, 227, 38, 0.35);
  animation: heartbeat-ring 1.6s ease-out infinite;
}

@keyframes heartbeat-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(145, 227, 38, 0.35);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(145, 227, 38, 0);
  }
}

@media (max-width: 760px) {
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}
.hero {
  position: relative;
  padding: 74px 0 34px 0;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: center;
}

.hero__copy {
  max-width: 620px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.pill--logos {
  padding: 15px 18px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border-color: rgba(11, 18, 32, 0.12);
}

.pill__logos {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  position: relative;
  z-index: 1;
}

.pill__logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.95;
}

.pill--logos::before {
  content: "";
  position: absolute;
  inset: -8px;
  background:
    radial-gradient(320px 160px at 18% 50%, rgba(145, 227, 38, 0.18), transparent 60%),
    radial-gradient(280px 140px at 82% 50%, rgba(235, 29, 39, 0.22), transparent 60%);
  filter: blur(10px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.pill__logo--gioca {
  height: 25px;
}

.pill__logo--dark {
  display: none;
}

:root[data-theme="dark"] .pill__logo--dark {
  display: block;
}

:root[data-theme="dark"] .pill__logo--light {
  display: none;
}

:root[data-theme="dark"] .pill__logo--mono {
  filter: none;
  opacity: 0.95;
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  box-shadow: 0 0 0 4px rgba(145, 227, 38, 0.12);
}

.hero__title {
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1.04;
  margin: 16px 0 14px 0;
  letter-spacing: -0.8px;
}

.hero__subtitle {
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16.5px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 12px 0;
}

.hero__checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0 0;
  list-style: none;
  color: var(--muted);
}

.hero__checks li {
  position: relative;
  padding-left: 28px;
}

.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(158, 255, 31, 0.14);
  border: 1px solid rgba(158, 255, 31, 0.22);
}

.hero__checks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(158, 255, 31, 0.95);
  border-bottom: 2px solid rgba(158, 255, 31, 0.95);
  transform: rotate(-45deg);
}

.trust-line {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trust-line__stat {
  display: grid;
  gap: 2px;
}

.trust-line__num {
  font-weight: 900;
  letter-spacing: -0.2px;
  font-size: 18px;
}

.trust-line__label {
  color: var(--muted-2);
  font-size: 13px;
}

.trust-line__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.badge {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.glow {
  position: absolute;
  inset: -100px -100px -140px -100px;
  background: radial-gradient(520px 360px at 55% 40%, rgba(235, 29, 39, 0.22), transparent 60%),
    radial-gradient(520px 360px at 35% 55%, rgba(158, 255, 31, 0.18), transparent 60%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.mockup {
  position: relative;
  width: min(1080px, 100%);
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: translateZ(0);
  animation: float 4.4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mockup {
    animation: none;
  }
}

.mockup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid var(--line);
}

.mockup__dots {
  display: inline-flex;
  gap: 6px;
}

.mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.mockup__title {
  font-size: 13px;
  color: var(--muted-2);
}

.mockup__body {
  padding: 16px;
}

.mockup__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  aspect-ratio: 16 / 10;
}

.mockup__controls {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mockup__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.mockup__img.is-fading {
  opacity: 0;
}

.mockup__arrow {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
  cursor: pointer;
  z-index: 2;
}

.mockup__arrow:hover {
  transform: scale(1.04);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.mockup__arrow:active {
  transform: scale(0.98);
}

.mockup__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.mockup__arrow svg {
  width: 18px;
  height: 18px;
}

.mockup__arrow--prev,
.mockup__arrow--next {
  position: static;
}

.mockup__kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kpi {
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.kpi__label {
  color: var(--muted-2);
  font-size: 12px;
}

.kpi__value {
  font-size: 26px;
  font-weight: 900;
  margin-top: 6px;
  letter-spacing: -0.4px;
}

.kpi--green .kpi__value {
  color: rgba(158, 255, 31, 0.96);
}

.kpi--red .kpi__value {
  color: rgba(235, 29, 39, 0.96);
}

.mockup__cards {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.mini-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--text);
}

.mini-card__icon svg {
  width: 20px;
  height: 20px;
}

.mini-card__title {
  font-weight: 800;
  font-size: 13px;
}

.mini-card__sub {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 2px;
}

.mockup__list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 12px;
  color: var(--muted);
}

.hero__wave {
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.08));
  pointer-events: none;
}

.section {
  padding: 74px 0;
}

.section--alt {
  background: rgba(0, 27, 61, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  max-width: 780px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.section__subtitle {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 16px;
}

.logo-slider {
  margin-top: 22px;
  overflow: visible;
  mask-image: none;
  display: flex;
  justify-content: center;
}

.logo-slider__track {
  display: flex;
  align-items: center;
  gap: 90px;
  padding: 8px 0;
  width: 100%;
  justify-content: center;
}

.logo-slider__logo {
  width: 240px;
  height: 80px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .logo-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding: 6px;
  }
  .logo-slider::-webkit-scrollbar { display: none; }
  .logo-slider__track {
    flex-wrap: nowrap;
    gap: 36px;
    width: max-content;
    padding: 8px 6px;
  }
  .logo-slider__logo {
    width: clamp(180px, 72vw, 260px);
    height: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    flex: 0 0 auto;
  }
}

@media (max-width: 1024px) {
  .logo-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding: 6px;
  }
  .logo-slider::-webkit-scrollbar { display: none; }
  .logo-slider__track {
    flex-wrap: nowrap;
    gap: 38px;
    width: max-content;
    padding: 8px 6px;
  }
  .logo-slider__logo {
    width: clamp(200px, 48vw, 300px);
    height: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-slider {
    overflow-x: auto;
    mask-image: none;
  }
  .logo-slider__track {
    width: max-content;
  }
}

.logo-slider.is-marquee {
  overflow: hidden;
  justify-content: flex-start;
  scroll-snap-type: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.logo-slider.is-marquee .logo-slider__track {
  width: max-content;
  justify-content: flex-start;
  flex-wrap: nowrap;
  animation: logo-marquee var(--marquee-duration, 26s) linear infinite;
  will-change: transform;
}

.logo-slider.is-marquee.is-paused .logo-slider__track,
.logo-slider.is-marquee:hover .logo-slider__track {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
  }
}

.section--carousel {
  padding-bottom: 58px;
}

.carousel {
  margin-top: 22px;
}

.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  outline: none;
}

.carousel__viewport::-webkit-scrollbar {
  height: 10px;
}

.carousel__viewport::-webkit-scrollbar-track {
  background: transparent;
}

.carousel__viewport::-webkit-scrollbar-thumb {
  background: rgba(11, 18, 32, 0.14);
  border-radius: 999px;
}

:root[data-theme="dark"] .carousel__viewport::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  min-width: 100%;
  scroll-snap-align: start;
  padding: 10px 0;
}

.carousel__panel {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}

.carousel__copy {
  min-width: 0;
}

.carousel__title {
  margin: 12px 0 0 0;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.35px;
  line-height: 1.2;
}

.carousel__text {
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.carousel__checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0 0;
  list-style: none;
  color: var(--muted);
}

.carousel__checks li {
  position: relative;
  padding-left: 28px;
}

.carousel__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(158, 255, 31, 0.14);
  border: 1px solid rgba(158, 255, 31, 0.22);
}

.carousel__checks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(158, 255, 31, 0.95);
  border-bottom: 2px solid rgba(158, 255, 31, 0.95);
  transform: rotate(-45deg);
}

.carousel__bullets {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carousel__bullet {
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 12px;
  color: var(--muted);
}

.carousel__media {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 10px;
}

.carousel__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/10;
  border-radius: 14px;
}

.carousel__media--stack {
  gap: 10px;
  padding: 16px;
}

.carousel__logo-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.carousel__logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px;
  object-fit: contain;
}

.carousel__note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.carousel__controls {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
  cursor: pointer;
}

.carousel__btn:hover {
  transform: scale(1.04);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.carousel__btn:active {
  transform: scale(0.98);
}

.carousel__btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.carousel__btn svg {
  width: 18px;
  height: 18px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  opacity: 0.7;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.carousel__dot.is-active {
  opacity: 1;
  transform: scale(1.15);
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  border-color: rgba(145, 227, 38, 0.45);
}

.carousel__dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(158, 255, 31, 0.14);
}

.carousel__viewport:focus-visible {
  box-shadow: 0 0 0 4px rgba(158, 255, 31, 0.14);
  border-radius: 22px;
}

.legal {
  padding: 62px 0 72px 0;
}

.legal__container {
  max-width: var(--container);
}

.legal__head {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.legal__title {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.6px;
}

.legal__subtitle {
  margin: 12px 0 0 0;
  color: var(--muted);
}

.legal__section {
  margin-top: 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.service__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  display: grid;
  place-items: center;
}

.service__icon svg {
  width: 26px;
  height: 26px;
}

.legal__h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.legal__p {
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.legal__list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.legal__cta {
  margin-top: 16px;
}

.grid-4 {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.grid-3 {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid-2 {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card__icon--red {
  background: rgba(235, 29, 39, 0.12);
  color: rgba(235, 29, 39, 0.95);
}

.card__icon--green {
  background: rgba(158, 255, 31, 0.12);
  color: rgba(158, 255, 31, 0.95);
}

.card__icon--blue {
  background: var(--card-2);
  color: var(--text);
}

.card__icon--dark {
  background: var(--card-2);
  color: var(--text);
}

.card__title {
  margin: 4px 0 0 0;
  font-size: 17px;
  letter-spacing: -0.2px;
}

.card__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card__cta {
  margin-top: 6px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(158, 255, 31, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
}

.partner {
  padding: 20px 20px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
}

.partner__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner__mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  flex: 0 0 auto;
}

.partner__mark svg {
  width: 26px;
  height: 26px;
}

.partner__logo {
  max-width: 100%;
  max-height: 100%;
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.partner__mark--red {
  background: rgba(235, 29, 39, 0.14);
  color: rgba(235, 29, 39, 0.95);
}

.partner__mark--green {
  background: rgba(158, 255, 31, 0.14);
  color: rgba(158, 255, 31, 0.95);
}

.partner__mark--blue {
  background: rgba(0, 27, 61, 0.08);
  color: rgba(0, 27, 61, 0.92);
}

:root[data-theme="dark"] .partner__mark--blue {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.partner__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.25px;
}

.partner__subtitle {
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

.partner__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.product__row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
  align-items: center;
}

.product__copy {
  min-width: 0;
  align-self: center;
}

.product__media {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  align-self: center;
  aspect-ratio: 4 / 3;
}

.product__media--tall {
  aspect-ratio: 4 / 3;
}

.product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product__checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0 0;
  list-style: none;
  color: var(--muted);
}

.product__checks li {
  position: relative;
  padding-left: 28px;
}

.product__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(158, 255, 31, 0.14);
  border: 1px solid rgba(158, 255, 31, 0.22);
}

.product__checks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(158, 255, 31, 0.95);
  border-bottom: 2px solid rgba(158, 255, 31, 0.95);
  transform: rotate(-45deg);
}

#prodotti .partner {
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#prodotti .partner:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 255, 31, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

#prodotti .product__media {
  aspect-ratio: 4 / 3;
}

#prodotti .product__img {
  transition: transform 220ms ease;
}

#prodotti .partner:hover .product__img {
  transform: scale(1.04);
}

#prodotti .product__media--tall {
  aspect-ratio: 4 / 3;
}

@media (prefers-reduced-motion: reduce) {
  #prodotti .partner {
    transition: none;
  }
  #prodotti .product__img {
    transition: none;
  }
  #prodotti .partner:hover {
    transform: none;
  }
  #prodotti .partner:hover .product__img {
    transform: none;
  }
}

.partner__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill2 {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
}

.steps {
  margin: 24px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.step__num {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
}

.step__title {
  margin: 0;
  font-size: 16px;
}

.step__text {
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

.step__cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: rgba(158, 255, 31, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-strip {
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(235, 29, 39, 0.16), rgba(158, 255, 31, 0.12));
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-strip__text {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.cta-strip__hint {
  display: inline-block;
  margin-left: 6px;
  font-weight: 600;
  color: var(--muted);
}

.quote {
  margin: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
}

.quote__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quote__who {
  display: grid;
  gap: 2px;
}

.quote__name {
  font-weight: 900;
  font-size: 13px;
}

.quote__meta {
  font-size: 12px;
  color: var(--muted-2);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.contact__copy {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact__points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.contact__points li {
  position: relative;
  padding-left: 28px;
}

.contact__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(235, 29, 39, 0.12);
  border: 1px solid rgba(235, 29, 39, 0.22);
}

.contact__points li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(235, 29, 39, 0.92);
  border-bottom: 2px solid rgba(235, 29, 39, 0.92);
  transform: rotate(-45deg);
}

.contact__mini {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-trust {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.mini-trust__label {
  color: var(--muted-2);
  font-size: 12px;
}

.mini-trust__value {
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.contact__form {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
}

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

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field__label {
  font-size: 13px;
  color: var(--muted);
}

.field__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.field__input:where(select) {
  padding-right: 40px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%230b1220' stroke-opacity='0.7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

:root[data-theme="dark"] .field__input:where(select) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23ffffff' stroke-opacity='0.8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

:root[data-theme="dark"] .field__input:where(select),
:root[data-theme="dark"] .field__input:where(select) option {
  background-color: var(--blue-900);
  color: rgba(255, 255, 255, 0.92);
}

.field__input:where(select):required:invalid {
  color: var(--muted-2);
}

.field__input:focus {
  border-color: rgba(158, 255, 31, 0.45);
  box-shadow: 0 0 0 4px rgba(158, 255, 31, 0.14);
}

.field--checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.field__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-500);
}

.field__error {
  min-height: 16px;
  font-size: 12px;
  color: var(--error);
}

.form__fineprint {
  margin: 0;
  font-size: 12px;
  color: var(--muted-2);
}

.form__result {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 13px;
}

.form__result--success {
  border-color: rgba(158, 255, 31, 0.24);
}

.form__result--error {
  border-color: rgba(235, 29, 39, 0.3);
}

.callout {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 14px;
}

.callout__title {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.callout__text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
}

.footer__grid {
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.6fr 0.6fr;
  gap: 18px;
}

.footer__logo {
  width: 176px;
  height: auto;
}

.footer__text {
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 420px;
}

.footer__title {
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer__link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, background 160ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
}

.social-link:active {
  transform: translateY(0);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer__small {
  margin: 0;
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.55;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: var(--muted-2);
  font-size: 12.5px;
}

.footer__link--inline {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 380px;
  }
  .carousel__panel {
    grid-template-columns: 1fr;
  }
  .carousel__media {
    order: -1;
  }
  .pill__logos {
    gap: 18px;
  }
  .pill__logo {
    height: 25px;
  }
  .pill__logo--gioca {
    height: 22px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .product__media {
    aspect-ratio: 4 / 3;
  }
  .product__media--tall {
    aspect-ratio: 4 / 3;
  }
  .product__row {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero {
    padding-top: 54px;
  }
  .section {
    padding: 56px 0;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .contact__mini {
    grid-template-columns: 1fr;
  }
}
