:root {
  --brand: #003cff;
  --ink: #07080c;
  --paper: #f6f8fb;
  --mist: #e8edf5;
  --muted: #5f6673;
  --acid: #c8ff3d;
  --line: rgba(7, 8, 12, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(7, 8, 12, 0.035) 1px, transparent 1px),
    var(--paper) !important;
  background-size: 44px 44px;
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(120deg, transparent 0 48%, rgba(0, 60, 255, 0.12) 48% 49%, transparent 49% 100%);
  background-size: 260px 260px;
  opacity: 0.65;
}

body > * {
  position: relative;
  z-index: 1;
}

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

.heading {
  letter-spacing: 0 !important;
}

header.sticky {
  background: rgba(246, 248, 251, 0.88) !important;
  border-bottom: 1px solid rgba(7, 8, 12, 0.14) !important;
  backdrop-filter: blur(18px);
}

header.sticky > div {
  min-height: 74px;
}

header nav a,
#mobile-menu nav a {
  color: rgba(7, 8, 12, 0.72);
  transition: color 0.2s ease, transform 0.2s ease;
}

header nav a:hover,
#mobile-menu nav a:hover {
  color: var(--brand) !important;
}

header a[href="/contatti"],
#mobile-menu a[href="/contatti"],
.hero-cta a:first-child,
a[href="/contatti"].inline-block,
button[type="submit"],
form button {
  border-radius: 999px !important;
  background: var(--ink) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(7, 8, 12, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

header a[href="/contatti"]:hover,
#mobile-menu a[href="/contatti"]:hover,
.hero-cta a:first-child:hover,
a[href="/contatti"].inline-block:hover,
button[type="submit"]:hover,
form button:hover {
  background: var(--brand) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 60, 255, 0.28);
}

.hero-cta a:nth-child(2),
a[href="contatti"].px-6,
a[href="/contatti"].border {
  border: 1px solid var(--ink) !important;
  color: var(--ink) !important;
  background: transparent !important;
  border-radius: 999px !important;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.hero-cta a:nth-child(2):hover,
a[href="contatti"].px-6:hover,
a[href="/contatti"].border:hover {
  border-color: var(--brand) !important;
  color: var(--brand) !important;
  transform: translateY(-2px);
}

span.rounded-full {
  border: 1px solid rgba(0, 60, 255, 0.2);
}

#mobile-menu {
  background: var(--paper) !important;
}

body > section:first-of-type {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 60, 255, 0.13), transparent 36%),
    linear-gradient(180deg, #fff, var(--paper)) !important;
  border-bottom: 1px solid rgba(7, 8, 12, 0.12);
}

body > section:first-of-type::after {
  content: "MOVARA";
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  font-family: 'Lexend Exa', sans-serif;
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(7, 8, 12, 0.035);
  pointer-events: none;
}

.hero-title,
body > section:first-of-type h1 {
  color: var(--ink);
  font-weight: 800 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

.hero-title span,
body > section:first-of-type h1 span {
  color: var(--brand) !important;
  text-shadow: none !important;
}

.hero-subtitle,
body > section:first-of-type p {
  color: rgba(7, 8, 12, 0.66) !important;
}

.hero-image > div > div,
.bg-gray-100.rounded-xl.shadow-2xl {
  border: 1px solid rgba(7, 8, 12, 0.18);
  border-radius: 12px !important;
  box-shadow: 16px 16px 0 var(--ink), 0 32px 70px rgba(7, 8, 12, 0.2) !important;
  transform: rotate(-1deg);
}

.hero-image .bg-gray-800 {
  background: var(--ink) !important;
}

.hero-image,
.mockup-showcase {
  min-width: 0;
  max-width: 100%;
}

.client-logo-marquee {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: clientLogoMarquee 30s linear infinite;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-right: clamp(1rem, 2.5vw, 2rem);
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(10.25rem, 21vw, 14.75rem);
  height: clamp(6.45rem, 10.6vw, 8.25rem);
  padding: 1.12rem 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 8, 12, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 8, 12, 0.08);
}

.client-logo-item--dark {
  padding: 0.45rem;
  background: #07080c;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(7, 8, 12, 0.18);
}

.client-logo-item img {
  display: block;
  max-width: 100%;
  max-height: 5.45rem;
  object-fit: contain;
}

.client-logo-item--dark img {
  max-height: 7.15rem;
  transform: scale(1.18);
}

.countdown-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 60, 255, 0.22), transparent 25rem),
    linear-gradient(90deg, rgba(7, 8, 12, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(7, 8, 12, 0.04) 1px, transparent 1px),
    #f6f8fb !important;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.countdown-page::before {
  content: "MOVARA";
  position: fixed;
  right: -0.06em;
  bottom: -0.22em;
  z-index: 0;
  color: rgba(7, 8, 12, 0.04);
  font-family: 'Lexend Exa', sans-serif;
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.countdown-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.countdown-panel {
  width: min(100%, 1120px);
  padding: clamp(1.25rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 8, 12, 0.14);
  border-radius: 8px;
  box-shadow: 16px 16px 0 var(--ink), 0 34px 90px rgba(7, 8, 12, 0.18);
}

.countdown-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.countdown-brand img {
  width: min(16rem, 58vw);
  height: auto;
}

.countdown-brand span,
.countdown-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.countdown-kicker {
  margin-top: clamp(3rem, 7vw, 5.5rem);
}

.countdown-panel h1 {
  max-width: 11ch;
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(3.15rem, 8vw, 7.4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.countdown-unit {
  min-width: 0;
  padding: clamp(0.85rem, 2vw, 1.2rem);
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 20px 44px rgba(7, 8, 12, 0.14);
}

.countdown-unit strong {
  display: block;
  font-family: 'Lexend Exa', sans-serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.countdown-unit span {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-date {
  margin-top: 1.5rem;
  color: rgba(7, 8, 12, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.countdown-note {
  max-width: 720px;
  margin-top: 0.65rem;
  color: rgba(7, 8, 12, 0.58);
  line-height: 1.65;
}

.projects-page {
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(7, 8, 12, 0.04) 1px, transparent 1px),
    #f6f8fb !important;
  background-size: 44px 44px;
}

.projects-hero {
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 78% 26%, rgba(0, 60, 255, 0.2), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  border-bottom: 1px solid rgba(7, 8, 12, 0.12);
}

.projects-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.projects-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.projects-title {
  max-width: 13ch;
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(3rem, 6.8vw, 5.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.projects-lead {
  max-width: 680px;
  margin-top: 1.5rem;
  color: rgba(7, 8, 12, 0.68);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.projects-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.projects-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(7, 8, 12, 0.16);
}

.projects-actions span {
  color: rgba(7, 8, 12, 0.56);
  font-size: 0.92rem;
}

.projects-orbit {
  position: relative;
  min-height: 440px;
}

.projects-orbit::before {
  content: "MOVARA";
  position: absolute;
  inset: auto -2rem 1rem auto;
  color: rgba(7, 8, 12, 0.045);
  font-family: 'Lexend Exa', sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 1;
  transform: rotate(-90deg);
  transform-origin: bottom right;
}

.projects-orbit-card {
  position: absolute;
  width: min(78%, 340px);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 8, 12, 0.14);
  border-radius: 8px;
  box-shadow: 16px 16px 0 rgba(7, 8, 12, 0.95), 0 28px 70px rgba(7, 8, 12, 0.16);
}

.projects-orbit-card--primary {
  top: 0;
  left: 0;
  background: var(--ink);
  color: #fff;
}

.projects-orbit-card:nth-child(2) {
  top: 38%;
  right: 0;
}

.projects-orbit-card:nth-child(3) {
  bottom: 0;
  left: 12%;
}

.projects-orbit-card span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.projects-orbit-card strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.25rem;
}

.projects-orbit-card p {
  margin-top: 0.45rem;
  color: rgba(7, 8, 12, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.projects-orbit-card--primary p {
  color: rgba(255, 255, 255, 0.68);
}

.projects-preview {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.projects-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.projects-section-head h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-teaser {
  min-height: 280px;
  padding: 1.25rem;
  border: 1px solid rgba(7, 8, 12, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 237, 245, 0.78)),
    repeating-linear-gradient(135deg, rgba(0, 60, 255, 0.1) 0 1px, transparent 1px 18px);
  box-shadow: 0 24px 60px rgba(7, 8, 12, 0.08);
}

.project-teaser--live {
  background: var(--ink);
  color: #fff;
}

.project-teaser--avora {
  grid-column: span 2;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "top top"
    "logo title"
    "logo text";
  column-gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 237, 245, 0.7)),
    radial-gradient(circle at 18% 22%, rgba(0, 60, 255, 0.12), transparent 17rem);
}

.project-teaser--ghost {
  border-style: dashed;
}

.project-teaser-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-teaser--avora .project-teaser-top {
  grid-area: top;
  align-self: start;
}

.project-logo-wrap {
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid rgba(7, 8, 12, 0.12);
  border-radius: 8px;
  box-shadow: 12px 12px 0 rgba(7, 8, 12, 0.08);
}

.project-logo-wrap img {
  display: block;
  width: min(100%, 15rem);
  max-height: 10.5rem;
  object-fit: contain;
}

.project-teaser h3 {
  margin-top: 5.5rem;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
}

.project-teaser--avora h3 {
  grid-area: title;
  align-self: end;
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.avora-flow-accent {
  color: #29d398;
}

.project-teaser p {
  margin-top: 1rem;
  color: rgba(7, 8, 12, 0.62);
  line-height: 1.7;
}

.project-teaser--avora p {
  grid-area: text;
  align-self: start;
  max-width: 54ch;
  font-size: 1rem;
}

.project-teaser--live p {
  color: rgba(255, 255, 255, 0.68);
}

@keyframes clientLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1100;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(7, 8, 12, 0.22);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.mockup-showcase {
  isolation: isolate;
}

.mockup-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.34;
  min-height: 390px;
  background: #f5f7fb;
}

.mockup-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  will-change: transform, opacity;
}

.mockup-panel--orders {
  animation: mockupOrdersCycle 18s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.mockup-panel--callcenter {
  animation: mockupCallcenterCycle 18s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.mockup-panel--gas {
  animation: mockupGasCycle 18s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.mockup-panel--shop {
  animation: mockupShopCycle 18s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.mockup-content {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.mockup-stage:hover .mockup-panel {
  animation-play-state: paused;
}

@keyframes mockupOrdersCycle {
  0%,
  18.75% {
    opacity: 1;
    transform: translateY(0);
  }

  25%,
  92.75% {
    opacity: 0;
    transform: translateY(-108%);
  }

  93.75% {
    opacity: 0;
    transform: translateY(108%);
  }

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

@keyframes mockupCallcenterCycle {
  0%,
  18.75% {
    opacity: 0;
    transform: translateY(108%);
  }

  25%,
  43.75% {
    opacity: 1;
    transform: translateY(0);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(-108%);
  }
}

@keyframes mockupGasCycle {
  0%,
  43.75% {
    opacity: 0;
    transform: translateY(108%);
  }

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

  75%,
  100% {
    opacity: 0;
    transform: translateY(-108%);
  }
}

@keyframes mockupShopCycle {
  0%,
  68.75% {
    opacity: 0;
    transform: translateY(108%);
  }

  75%,
  93.75% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-108%);
  }
}

.chart-bar {
  background: linear-gradient(180deg, var(--brand), #001a78) !important;
}

section.bg-white,
section.bg-gray-50,
section.bg-gray-100 {
  background: transparent !important;
}

section[id],
body > section {
  scroll-margin-top: 96px;
}

section h2.heading,
section h1.heading {
  color: var(--ink);
}

.card-hover,
.testimonial-card,
.status-badge,
form,
.client-tab,
.client-content > div,
section .rounded-2xl,
section .rounded-3xl {
  border-radius: 8px !important;
}

.card-hover,
.testimonial-card,
.client-content > div,
section .shadow,
section .shadow-lg,
section .shadow-xl {
  box-shadow: 0 18px 44px rgba(7, 8, 12, 0.08) !important;
}

.card-hover,
.testimonial-card,
section .border {
  border-color: rgba(7, 8, 12, 0.14) !important;
}

.card-hover {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(10px);
}

.card-hover:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  transform: translateY(-8px);
}

.card-hover .card-icon-bg {
  background: var(--brand) !important;
  border-radius: 8px !important;
}

.card-hover:hover .card-icon-bg {
  background: var(--acid) !important;
}

.card-hover:hover .card-icon-bg svg {
  color: var(--ink) !important;
}

.text-8xl.font-bold.text-black {
  color: transparent !important;
  -webkit-text-stroke: 1.5px var(--brand);
}

.client-tab {
  background: rgba(255, 255, 255, 0.78) !important;
  border-width: 1px !important;
  border-color: rgba(7, 8, 12, 0.14) !important;
}

.client-tab.active,
.client-tab:hover {
  background: var(--ink) !important;
  color: #fff !important;
  border-color: var(--ink) !important;
}

input,
textarea {
  border-radius: 8px !important;
  border-color: rgba(7, 8, 12, 0.16) !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

input:focus,
textarea:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.12) !important;
}

iframe {
  filter: grayscale(1) contrast(1.05);
}

.privacy-consent-banner,
.privacy-consent-modal {
  position: fixed;
  z-index: 1000;
  color: var(--ink);
}

.privacy-consent-banner {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 8, 12, 0.18);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(7, 8, 12, 0.22);
  backdrop-filter: blur(18px);
  box-sizing: border-box;
}

.privacy-consent-banner p {
  margin: 0;
  color: rgba(7, 8, 12, 0.72) !important;
  font-size: 0.9rem;
}

.privacy-eyebrow {
  margin-bottom: 0.25rem !important;
  color: var(--brand) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

.privacy-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  min-width: 0;
}

.privacy-consent-actions button,
.privacy-embed-placeholder button,
button[data-open-cookie-preferences] {
  border: 1px solid rgba(7, 8, 12, 0.18);
  border-radius: 999px;
  min-width: 8.5rem;
  padding: 0.7rem 1rem;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.privacy-consent-actions button:hover,
.privacy-embed-placeholder button:hover,
button[data-open-cookie-preferences]:hover {
  border-color: var(--brand);
  background: rgba(0, 60, 255, 0.06);
  color: var(--brand);
  transform: translateY(-1px);
}

.privacy-consent-actions [data-consent-save],
.privacy-embed-placeholder button {
  background: var(--ink);
  color: #fff;
}

.privacy-consent-actions [data-consent-save]:hover,
.privacy-embed-placeholder button:hover {
  background: var(--brand);
  color: #fff;
}

.privacy-consent-actions [data-consent-reject],
.privacy-consent-actions [data-consent-accept] {
  border-color: rgba(7, 8, 12, 0.28);
}

.privacy-consent-actions button:focus-visible,
.privacy-consent-x:focus-visible,
.privacy-toggle input:focus-visible,
.privacy-embed-placeholder button:focus-visible,
button[data-open-cookie-preferences]:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.privacy-consent-x {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(7, 8, 12, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-consent-modal {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 8, 12, 0.48);
}

.privacy-consent-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(720px, 92vh);
  overflow: auto;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  box-shadow: 0 32px 90px rgba(7, 8, 12, 0.34);
}

.privacy-consent-panel .privacy-consent-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.privacy-consent-panel h2 {
  max-width: 30rem;
  margin: 0 2.5rem 0.75rem 0;
  font-family: 'Lexend Exa', sans-serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.1;
}

.privacy-consent-panel p {
  color: rgba(7, 8, 12, 0.68) !important;
}

.privacy-toggle-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.privacy-toggle {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 8, 12, 0.12);
  border-radius: 8px;
}

.privacy-toggle small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(7, 8, 12, 0.58);
}

.privacy-toggle input {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--brand);
}

.privacy-consent-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.84rem;
}

.privacy-consent-links a,
footer button[data-open-cookie-preferences] {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer button[data-open-cookie-preferences] {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgb(156 163 175);
  font: inherit;
  cursor: pointer;
}

footer button[data-open-cookie-preferences]:hover {
  color: #fff;
  transform: none;
}

.privacy-embed-placeholder {
  display: grid;
  place-items: center;
  min-height: 18rem;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(7, 8, 12, 0.045) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
}

.privacy-embed-placeholder p {
  max-width: 34rem;
  margin: 0 auto 1rem;
  color: rgba(7, 8, 12, 0.66) !important;
}

footer {
  background:
    linear-gradient(90deg, rgba(0, 60, 255, 0.28), transparent 32%),
    var(--ink) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 768px) {
  body {
    background-size: 32px 32px;
    overflow-x: clip;
  }

  .projects-hero {
    padding-top: 4rem;
  }

  .countdown-shell {
    min-height: 100svh;
    padding: 1rem;
  }

  .countdown-panel {
    box-shadow: 8px 8px 0 var(--ink), 0 22px 54px rgba(7, 8, 12, 0.16);
  }

  .countdown-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .countdown-panel h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

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

  .countdown-unit strong {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .projects-hero-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.6rem);
  }

  .projects-orbit {
    display: grid;
    gap: 1rem;
    min-height: 0;
  }

  .projects-orbit::before {
    display: none;
  }

  .projects-orbit-card,
  .projects-orbit-card:nth-child(2),
  .projects-orbit-card:nth-child(3) {
    position: static;
    width: 100%;
  }

  .projects-section-head {
    display: block;
  }

  .project-teaser--avora {
    grid-column: span 1;
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "logo"
      "title"
      "text";
    min-height: 0;
  }

  .project-logo-wrap {
    min-height: 11rem;
    margin-top: 1.5rem;
  }

  header.sticky > div {
    min-height: 66px;
  }

  body > section:first-of-type::after {
    font-size: 5rem;
    bottom: -0.2em;
  }

  .hero-title,
  body > section:first-of-type h1 {
    font-size: clamp(2.45rem, 11vw, 4rem) !important;
  }

  .hero-cta {
    flex-direction: column;
  }

  .privacy-consent-banner {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .privacy-consent-banner > * {
    min-width: 0;
  }

  .privacy-consent-banner .privacy-consent-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
    width: 100%;
  }

  .privacy-consent-banner .privacy-consent-actions button {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }

  .metodo-step,
  .metodo-step.animate-left,
  .metodo-step.animate-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-image > div > div,
  .bg-gray-100.rounded-xl.shadow-2xl {
    box-shadow: 8px 8px 0 var(--ink), 0 22px 48px rgba(7, 8, 12, 0.18) !important;
    transform: none;
  }

  .mockup-stage {
    aspect-ratio: auto;
    height: min(500px, 128vw);
    min-height: 0;
  }

  .mockup-panel .w-16 {
    width: 3rem !important;
  }

  .mockup-panel .p-4 {
    padding: 0.75rem !important;
  }

  .mockup-panel .grid-cols-3,
  .mockup-panel .grid-cols-\[1\.1fr_0\.9fr\] {
    grid-template-columns: 1fr !important;
  }

  .mockup-panel table th,
  .mockup-panel table td,
  .mockup-panel .text-xs {
    font-size: 0.68rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .client-logo-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-logo-group[aria-hidden="true"] {
    display: none;
  }

  .mockup-panel--orders,
  .mockup-panel--callcenter,
  .mockup-panel--gas {
    animation: none;
  }

  .mockup-panel--shop {
    animation: none;
  }

  .mockup-panel--callcenter,
  .mockup-panel--gas {
    display: none;
  }

  .mockup-panel--shop {
    display: none;
  }
}
