@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600&display=swap");

:root {
  --ink: #030306;
  --ink-2: #0a0b10;
  --ink-3: #151823;
  --paper: #f3f4f7;
  --white: #ffffff;
  --muted: #aeb8ca;
  --text: #171a22;
  --text-soft: #5b6473;
  --violet: #a223fe;
  --blue: #00a8ff;
  --cyan: #51f0ff;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(15, 18, 28, 0.12);
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.5;
}

@media (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input,
  body.cursor-ready textarea,
  body.cursor-ready select,
  body.cursor-ready label,
  body.cursor-ready summary {
    cursor: none;
  }
}

.cursor-dot,
.cursor-ring,
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.18s ease, width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 0 2px rgba(162, 35, 254, 0.14), 0 0 18px rgba(162, 35, 254, 0.46);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(162, 35, 254, 0.6);
  border-radius: 999px;
  background: rgba(162, 35, 254, 0.055);
  backdrop-filter: blur(2px);
}

.cursor-trail {
  width: var(--trail-size, 7px);
  height: var(--trail-size, 7px);
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 14px rgba(162, 35, 254, 0.34);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.cursor-trail.is-star {
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(162, 35, 254, 0.24), 0 0 16px rgba(162, 35, 254, 0.4);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 55%, 79% 91%, 50% 70%, 21% 91%, 32% 55%, 2% 35%, 39% 34%);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring,
body.cursor-ready .cursor-trail {
  opacity: 1;
}

body.cursor-active .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(81, 240, 255, 0.4);
  background: rgba(81, 240, 255, 0.11);
}

body.cursor-active .cursor-trail {
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 20px clamp(18px, 4vw, 54px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 6, 0.78);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(8, 9, 13, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Rajdhani, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: Rajdhani, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  line-height: 0.86;
  text-transform: lowercase;
}

.brand-primary {
  font-size: 2.1rem;
  font-weight: 400;
}

.brand-secondary {
  font-size: 0.98rem;
  font-weight: 400;
  opacity: 0.82;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  font-family: Rajdhani, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, var(--violet), #2d63ff);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.42), transparent 66%);
  opacity: 0;
  transform: translateX(-72%) rotate(12deg);
}

.brand-mark:hover,
.brand:hover .brand-mark,
.footer-brand:hover .brand-mark {
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: 0 0 26px rgba(162, 35, 254, 0.56);
  transform: translateY(-2px) rotate(-8deg) scale(1.06);
}

.brand-mark:hover::after,
.brand:hover .brand-mark::after,
.footer-brand:hover .brand-mark::after {
  animation: brandMarkSweep 0.7s ease forwards;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-item {
  position: relative;
}

.has-submenu > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 310px;
  padding: 10px;
  background: rgba(8, 9, 13, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.76);
  border-radius: 2px;
}

.submenu a:hover {
  color: var(--white);
  background: rgba(162, 35, 254, 0.16);
}

.header-cta,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-weight: 750;
  color: var(--white);
  background: var(--violet);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(124, 60, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.section,
.hero {
  padding: clamp(78px, 9vw, 132px) clamp(20px, 5vw, 64px);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(124, 60, 255, 0.13), rgba(3, 3, 6, 0) 36%),
    radial-gradient(circle at 84% 18%, rgba(0, 168, 255, 0.13), transparent 30%),
    var(--ink);
}

.section-light {
  background: #ffffff;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding-top: 126px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px auto 0 0;
  width: clamp(5px, 0.8vw, 10px);
  background: linear-gradient(180deg, var(--violet), var(--blue) 58%, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 78px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
}

.hero-bg-code {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  top: 112px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(3.2rem, 8vw, 8.8rem);
  font-weight: 900;
  line-height: 0.85;
  text-align: right;
  pointer-events: none;
}

.hero-content,
.section-heading,
.solution-list,
.timeline,
.problem-grid,
.benefit-grid,
.use-case-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-right: 0;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 3.4vw, 44px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-cue i {
  position: relative;
  display: block;
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(81, 240, 255, 0.64);
  transform: translateX(-50%);
  animation: scrollCueDot 1.25s ease-in-out infinite;
}

.hero-scroll-cue:hover {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #3057ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.6vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.2;
}

.hero-copy,
.section-heading p,
.contact-copy p,
.clarity-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.section-light .section-heading p {
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 2px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), #245dff);
  box-shadow: 0 18px 46px rgba(0, 109, 255, 0.25);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-strip span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.hero-data-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin-top: clamp(34px, 6vw, 66px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-data-strip div {
  min-height: 98px;
  padding: 18px 18px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-data-strip div:last-child {
  border-right: 0;
}

.hero-data-strip strong,
.hero-data-strip span {
  display: block;
}

.hero-data-strip strong {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.78rem;
}

.hero-data-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.hero-particle-bg {
  position: absolute;
  inset: 78px 0 0;
  z-index: 0;
  overflow: hidden;
  perspective: 1100px;
  pointer-events: none;
}

.hero-particle-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 3, 6, 0.97) 0%, rgba(3, 3, 6, 0.74) 38%, rgba(3, 3, 6, 0.18) 72%, rgba(3, 3, 6, 0.42) 100%),
    linear-gradient(180deg, rgba(3, 3, 6, 0.2), rgba(3, 3, 6, 0.7) 94%);
}

.particle-field {
  position: absolute;
  inset: -10% -8%;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(210, 214, 222, 0.34) 0 1.1px, transparent 1.7px) 0 0 / 30px 30px,
    radial-gradient(circle, rgba(162, 35, 254, 0.18) 0 1px, transparent 1.8px) 15px 18px / 46px 46px;
  opacity: 0.46;
  transform: rotateX(58deg) rotateZ(-10deg) translate3d(8%, -18%, -120px);
  animation: particleDrift 3.8s linear infinite;
}

.particle-flower {
  position: absolute;
  top: clamp(132px, 18vh, 190px);
  right: clamp(-36px, 3vw, 46px);
  z-index: 1;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: rotateX(46deg) rotateZ(-14deg);
  opacity: 0.86;
  animation: particleBloomSway 2.6s ease-in-out infinite;
}

.particle-petal,
.particle-core,
.particle-depth {
  position: absolute;
  background:
    radial-gradient(circle, rgba(232, 234, 238, 0.9) 0 1.55px, transparent 2.2px) 0 0 / 14px 14px,
    radial-gradient(circle, rgba(128, 132, 142, 0.62) 0 1.2px, transparent 1.95px) 7px 8px / 20px 20px;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.34));
}

.particle-petal {
  left: 50%;
  top: 50%;
  width: 43%;
  height: 24%;
  border-radius: 50%;
  opacity: 0.78;
  transform-origin: 0 50%;
  animation: particlePetalPulse 1.6s ease-in-out infinite;
}

.particle-petal-1 { transform: rotate(0deg) translateX(16%) translateZ(48px) scaleX(1.16); }
.particle-petal-2 { transform: rotate(60deg) translateX(16%) translateZ(28px) scaleX(1.12); animation-delay: -1s; }
.particle-petal-3 { transform: rotate(120deg) translateX(16%) translateZ(12px) scaleX(1.12); animation-delay: -2s; }
.particle-petal-4 { transform: rotate(180deg) translateX(16%) translateZ(36px) scaleX(1.18); animation-delay: -3s; }
.particle-petal-5 { transform: rotate(240deg) translateX(16%) translateZ(20px) scaleX(1.12); animation-delay: -4s; }
.particle-petal-6 { transform: rotate(300deg) translateX(16%) translateZ(56px) scaleX(1.16); animation-delay: -5s; }

.particle-core {
  left: 50%;
  top: 50%;
  width: 20%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.94;
  transform: translate(-50%, -50%) translateZ(74px);
  animation: particleCorePulse 1.4s ease-in-out infinite;
}

.particle-depth {
  left: 64%;
  top: 30%;
  z-index: 0;
  width: min(48vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.18;
  transform: rotateX(68deg) rotateZ(-18deg) translateZ(-160px);
  animation: particleDepth 4.2s linear infinite;
}

.particle-depth-2 {
  left: 22%;
  top: 58%;
  width: min(40vw, 520px);
  opacity: 0.12;
  animation-duration: 5s;
  animation-direction: reverse;
}

.visual-topline {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.visual-topline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.process-map {
  position: relative;
  height: 330px;
}

.node {
  position: absolute;
  width: 172px;
  min-height: 92px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 9, 13, 0.76);
  backdrop-filter: blur(12px);
}

.node strong,
.node small {
  display: block;
}

.node small {
  margin-top: 8px;
  color: var(--muted);
}

.node-main {
  left: 50%;
  top: 120px;
  transform: translateX(-50%);
  width: 220px;
  border-color: rgba(81, 240, 255, 0.5);
  box-shadow: 0 0 44px rgba(81, 240, 255, 0.12);
}

.node-a {
  left: 4%;
  top: 26px;
}

.node-b {
  right: 4%;
  top: 48px;
}

.node-c {
  right: 22%;
  bottom: 8px;
}

.pulse-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform-origin: left center;
  animation: pulseLine 2.8s ease-in-out infinite;
}

.line-a {
  left: 28%;
  top: 118px;
  width: 155px;
  transform: rotate(24deg);
}

.line-b {
  right: 28%;
  top: 135px;
  width: 148px;
  transform: rotate(-18deg);
  animation-delay: 0.3s;
}

.line-c {
  left: 48%;
  bottom: 102px;
  width: 140px;
  transform: rotate(28deg);
  animation-delay: 0.7s;
}

.dashboard-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.metric {
  padding: 16px;
  border-radius: 6px;
  background: rgba(8, 9, 13, 0.66);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 2rem;
}

.bars {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 12px;
  height: 78px;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(8, 9, 13, 0.66);
}

.bars span {
  flex: 1;
  height: var(--h);
  min-height: 18px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  border-radius: 4px 4px 0 0;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.enterprise-band {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 64px);
  color: var(--text);
  background: #ffffff;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.enterprise-kicker,
.enterprise-statement,
.enterprise-cards {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.enterprise-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.enterprise-kicker span {
  width: 42px;
  height: 5px;
  background: var(--violet);
}

.enterprise-kicker p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enterprise-statement h2 {
  max-width: 1060px;
  font-size: clamp(2.2rem, 5.6vw, 6.1rem);
}

.enterprise-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(32px, 5vw, 58px);
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.enterprise-cards article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background: #f6f7fb;
}

.enterprise-cards span {
  display: block;
  margin-bottom: 76px;
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-cards h3 {
  max-width: 340px;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.problem-card {
  min-height: 250px;
  padding: 28px;
  background: #ffffff;
  color: var(--text);
}

.problem-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(162, 35, 254, 0.1), rgba(255, 255, 255, 0)), #ffffff;
  color: var(--text);
}

.problem-card p,
.problem-card:nth-child(1) p {
  color: var(--text-soft);
}

#problemi.section-light {
  background: #ffffff;
  color: var(--text);
}

#problemi .section-heading p {
  color: var(--text-soft);
}

.problem-card span {
  color: var(--violet);
}

.problem-card p,
.solution-list p,
.timeline p,
.use-case-grid p {
  color: var(--text-soft);
}

.split-section.section-dark {
  color: var(--text);
  background: #f6f7fb;
}

.split-section .eyebrow {
  color: var(--violet);
}

.split-section .section-heading p {
  color: var(--text-soft);
}

.solution-list article {
  border-color: var(--line-dark);
  background: #ffffff;
}

.solution-list article:hover {
  border-color: rgba(162, 35, 254, 0.28);
  background: #ffffff;
}

.solution-list p {
  color: var(--text-soft);
}

#soluzioni.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.13), rgba(3, 3, 6, 0) 34%),
    radial-gradient(circle at 85% 18%, rgba(0, 168, 255, 0.11), transparent 30%),
    var(--ink);
}

#soluzioni .eyebrow {
  color: var(--cyan);
}

#soluzioni .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

#soluzioni .solution-list article {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0a0b10;
}

#soluzioni .solution-list article:hover {
  border-color: rgba(162, 35, 254, 0.45);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.18), rgba(255, 255, 255, 0.025)),
    #0d0f17;
}

#soluzioni .solution-list p {
  color: var(--muted);
}

.compact-section.section-dark {
  color: var(--text);
  background: #ffffff;
}

.compact-section .eyebrow {
  color: var(--violet);
}

.benefit-grid span {
  border-color: var(--line-dark);
  color: var(--text);
  background: #f6f7fb;
}

.use-case-section {
  color: var(--text);
  background: #ffffff;
}

.use-case-section .eyebrow {
  color: var(--violet);
}

.use-case-section .section-heading p {
  color: var(--text-soft);
}

.use-case-grid {
  border-color: var(--line-dark);
  background: var(--line-dark);
}

.use-case-grid article {
  background: #f6f7fb;
  color: var(--text);
}

.use-case-grid article:hover {
  background: #ffffff;
}

.use-case-grid article span {
  color: var(--violet);
}

.use-case-grid p {
  color: var(--text-soft);
}

.clarity-section.section-dark {
  color: var(--text);
  background: #f6f7fb;
}

.clarity-section .eyebrow {
  color: var(--violet);
}

.clarity-copy p {
  color: var(--text-soft);
}

.comparison div {
  border-color: var(--line-dark);
  background: #ffffff;
}

.comparison span {
  color: var(--violet);
}

.comparison p {
  color: var(--text-soft);
}

/*
  Overrides above intentionally lighten the site after the initial dark concept.
  Keep these before the footer/form rules so contact remains high contrast.
*/

.problem-card:nth-child(1) {
  color: var(--white);
}

.problem-card p,
.problem-card:nth-child(1) p {
  color: rgba(255, 255, 255, 0.66);
}

#problemi.section-light {
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.1), transparent 38%),
    #05060a;
  color: var(--white);
}

#problemi .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.problem-card span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--cyan);
  font-weight: 850;
}

.problem-card p,
.solution-list p,
.timeline p,
.use-case-grid p {
  color: var(--text-soft);
}

.problem-card p,
.use-case-grid p {
  color: rgba(255, 255, 255, 0.65);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
}

.split-section .section-heading,
.split-section .solution-list {
  width: auto;
  margin-inline: 0;
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list article {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0a0b10;
}

.solution-list article:hover {
  border-color: rgba(81, 240, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.18), rgba(255, 255, 255, 0.025)),
    #0d0f17;
}

.solution-list p {
  color: var(--muted);
}

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

.timeline article,
.use-case-grid article {
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: var(--white);
}

#metodo.section-light {
  background: #ffffff;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  color: var(--white);
  font-weight: 850;
  background: var(--ink);
  border-radius: 6px;
}

.compact-section {
  padding-top: clamp(66px, 7vw, 100px);
  padding-bottom: clamp(66px, 7vw, 100px);
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-grid span {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 750;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.use-case-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.12), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 46%),
    #05060a;
}

.use-case-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.use-case-grid {
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.use-case-grid article {
  min-height: 330px;
  padding: clamp(26px, 3vw, 34px);
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #0a0b10;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.use-case-grid article:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.22), rgba(255, 255, 255, 0.03)),
    #0d0f17;
}

.use-case-grid article span {
  display: block;
  margin-bottom: 96px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.use-case-grid h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

.use-case-grid p {
  color: rgba(255, 255, 255, 0.65);
}

.clarity-section {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 650px)
    minmax(320px, 500px)
    minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

.clarity-copy {
  grid-column: 2;
}

.comparison {
  grid-column: 3;
}

.comparison {
  display: grid;
  gap: 14px;
}

.comparison div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.comparison span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-weight: 850;
}

.comparison p {
  color: var(--muted);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 620px)
    minmax(320px, 520px)
    minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 74px);
  color: var(--white);
  overflow: hidden;
}

.contact-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.lead-form {
  position: relative;
  z-index: 1;
  grid-column: 3;
}

.cta-flower-bg {
  position: absolute;
  left: clamp(-160px, -10vw, -72px);
  bottom: clamp(-190px, -13vw, -94px);
  z-index: 0;
  width: min(52vw, 660px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: rotateX(54deg) rotateZ(-18deg);
  transform-style: preserve-3d;
  opacity: 0.72;
  animation: ctaFlowerFloat 6s ease-in-out infinite;
}

.cta-flower-leaf,
.cta-flower-core {
  position: absolute;
  background:
    radial-gradient(circle, rgba(45, 48, 58, 0.6) 0 1.45px, transparent 2.1px) 0 0 / 15px 15px,
    radial-gradient(circle, rgba(162, 35, 254, 0.3) 0 1.2px, transparent 1.9px) 7px 8px / 23px 23px;
  filter: blur(0.1px);
}

.cta-flower-leaf {
  left: 48%;
  top: 48%;
  width: 47%;
  height: 22%;
  border-radius: 60% 44% 62% 44%;
  transform-origin: 3% 50%;
  opacity: 0.72;
  animation: ctaLeafPulse 3.2s ease-in-out infinite;
}

.leaf-a { transform: rotate(-18deg) translateX(8%) translateZ(36px) scaleX(1.18); }
.leaf-b { transform: rotate(48deg) translateX(9%) translateZ(10px) scaleX(1.06); animation-delay: -1.2s; }
.leaf-c { transform: rotate(118deg) translateX(10%) translateZ(32px) scaleX(1.14); animation-delay: -2.4s; }
.leaf-d { transform: rotate(202deg) translateX(8%) translateZ(18px) scaleX(1.22); animation-delay: -3.6s; }
.leaf-e { transform: rotate(286deg) translateX(10%) translateZ(44px) scaleX(1.08); animation-delay: -4.8s; }

.cta-flower-core {
  left: 50%;
  top: 50%;
  width: 21%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.86;
  transform: translate(-50%, -50%) translateZ(72px);
  animation: ctaCorePulse 2.8s ease-in-out infinite;
}

.final-cta.section {
  background:
    linear-gradient(135deg, rgba(124, 60, 255, 0.22), rgba(0, 168, 255, 0.08)),
    var(--ink-2);
}

.contact-copy .btn {
  margin-top: 12px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(8, 9, 13, 0.74);
  padding: 12px 14px;
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

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

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(81, 240, 255, 0.13);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--violet);
}

.privacy-check a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.is-success {
  color: #85ffcb;
}

.form-note.is-error {
  color: #ffb4b4;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  padding: clamp(54px, 7vw, 88px) clamp(20px, 5vw, 64px) 26px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 18% 12%, rgba(162, 35, 254, 0.18), transparent 32%),
    linear-gradient(180deg, #080910 0%, #030306 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-about {
  max-width: 430px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-about p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-contact-actions a {
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.footer-contact-actions a:last-child {
  border-color: rgba(162, 35, 254, 0.46);
  background: rgba(162, 35, 254, 0.18);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom a:hover {
  color: var(--white);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
}

.floating-contact-bubble {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(330px, calc(100vw - 44px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 9, 13, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  font-size: 0.88rem;
  line-height: 1.45;
}

.floating-contact-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 142px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), #7b16d6);
  box-shadow: 0 18px 46px rgba(162, 35, 254, 0.34);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-contact-toggle:hover,
.floating-contact-toggle:focus-visible {
  box-shadow: 0 22px 58px rgba(162, 35, 254, 0.46);
  transform: translateY(-2px);
}

.floating-contact-dot {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #85ffcb;
  box-shadow: 0 0 0 0 rgba(133, 255, 203, 0.42);
  animation: contactPulse 1.8s ease-out infinite;
}

.floating-contact-menu {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: grid;
  gap: 8px;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 6, 10, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-contact.is-open .floating-contact-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-contact.is-open .floating-contact-bubble {
  display: none;
}

.floating-contact-menu a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.floating-contact-menu a:hover {
  background: rgba(162, 35, 254, 0.2);
}

.floating-contact-menu a > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--violet);
  font-weight: 900;
}

.floating-contact-menu strong {
  display: grid;
  gap: 2px;
}

.floating-contact-menu small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 650;
}

@keyframes contactPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(133, 255, 203, 0.42);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(133, 255, 203, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(133, 255, 203, 0);
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.95fr);
  gap: 18px;
  align-items: center;
  width: min(1120px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(162, 35, 254, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-banner.is-hidden,
.cookie-reopen.is-hidden {
  display: none;
}

.cookie-copy {
  display: grid;
  gap: 8px;
}

.cookie-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid rgba(162, 35, 254, 0.24);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(162, 35, 254, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-banner strong {
  display: block;
  color: #050505;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.cookie-banner p {
  max-width: 66ch;
  margin: 0;
  color: #464646;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-policy-links a {
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-preference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 8px;
  background: #f6f4f8;
  cursor: pointer;
}

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

.cookie-toggle-ui {
  position: relative;
  width: 40px;
  height: 22px;
  border: 1px solid rgba(14, 14, 14, 0.22);
  border-radius: 999px;
  background: #d6d2dc;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-toggle-ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle-ui {
  border-color: rgba(162, 35, 254, 0.58);
  background: var(--violet);
}

.cookie-toggle input:checked + .cookie-toggle-ui::after {
  transform: translateX(18px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-ui {
  outline: 3px solid rgba(162, 35, 254, 0.22);
  outline-offset: 3px;
}

.cookie-toggle b {
  display: block;
  margin-bottom: 2px;
  color: #050505;
  font-size: 0.78rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.cookie-toggle small {
  display: block;
  color: #5f5f68;
  font-size: 0.76rem;
  line-height: 1.3;
}

.cookie-toggle.is-required {
  cursor: not-allowed;
  background: rgba(162, 35, 254, 0.07);
}

.cookie-actions {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cookie-actions button,
.cookie-reopen {
  font: inherit;
  cursor: pointer;
}

.cookie-actions button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(14, 14, 14, 0.14);
  border-radius: 6px;
  color: #050505;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cookie-actions button:hover {
  border-color: rgba(162, 35, 254, 0.52);
  color: var(--violet);
  transform: translateY(-1px);
}

.cookie-actions .accept {
  border-color: var(--violet);
  color: #ffffff;
  background: var(--violet);
}

.cookie-actions .accept:hover {
  color: #ffffff;
  background: #8919da;
}

.cookie-reopen {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 79;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(162, 35, 254, 0.24);
  border-radius: 50%;
  color: var(--violet);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-reopen:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(162, 35, 254, 0.22);
}

.cookie-reopen svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cookie-reopen circle {
  fill: currentColor;
  stroke: none;
}

/* Light brand theme requested after the first dark draft. */
.enterprise-band,
#problemi.section-light,
.compact-section.section-dark,
.use-case-section {
  color: var(--text);
  background: #ffffff;
}

.split-section.section-dark,
.clarity-section.section-dark {
  color: var(--text);
  background: #f7f8fb;
}

.enterprise-kicker p,
#problemi .section-heading p,
.split-section .section-heading p,
.compact-section .section-heading p,
.use-case-section .section-heading p,
.clarity-copy p {
  color: var(--text-soft);
}

.enterprise-band .eyebrow,
#problemi .eyebrow,
.split-section .eyebrow,
.compact-section .eyebrow,
.use-case-section .eyebrow,
.clarity-section .eyebrow {
  color: var(--violet);
}

.enterprise-cards,
.problem-grid,
.use-case-grid {
  border-color: var(--line-dark);
  background: var(--line-dark);
}

.enterprise-cards article,
.problem-card,
.solution-list article,
.use-case-grid article,
.comparison div {
  color: var(--text);
  border-color: var(--line-dark);
  background: #ffffff;
}

.enterprise-cards article:nth-child(even),
.use-case-grid article:nth-child(even),
.timeline article {
  background: #f7f8fb;
}

.problem-card:nth-child(1) {
  color: var(--text);
  background: linear-gradient(180deg, rgba(162, 35, 254, 0.1), rgba(255, 255, 255, 0)), #ffffff;
}

.solution-list article:hover,
.use-case-grid article:hover {
  background: #ffffff;
  border-color: rgba(162, 35, 254, 0.28);
}

.enterprise-cards span,
.problem-card span,
.use-case-grid article span,
.comparison span {
  color: var(--violet);
}

.problem-card p,
.problem-card:nth-child(1) p,
.solution-list p,
.use-case-grid p,
.comparison p {
  color: var(--text-soft);
}

.benefit-grid span {
  border-color: var(--line-dark);
  color: var(--text);
  background: #f7f8fb;
}

#soluzioni.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.13), rgba(3, 3, 6, 0) 34%),
    radial-gradient(circle at 85% 18%, rgba(0, 168, 255, 0.11), transparent 30%),
    var(--ink);
}

#soluzioni .eyebrow {
  color: var(--cyan);
}

#soluzioni .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

#soluzioni .solution-list article {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0a0b10;
}

#soluzioni .solution-list article:hover {
  border-color: rgba(162, 35, 254, 0.45);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.18), rgba(255, 255, 255, 0.025)),
    #0d0f17;
}

#soluzioni .solution-list p {
  color: var(--muted);
}

.hero.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.13), rgba(3, 3, 6, 0) 36%),
    radial-gradient(circle at 84% 18%, rgba(0, 168, 255, 0.13), transparent 30%),
    var(--ink);
}

.hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
}

.hero-bg-code {
  color: rgba(255, 255, 255, 0.08);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.72);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero-data-strip {
  border-top-color: rgba(255, 255, 255, 0.16);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.hero-data-strip div {
  border-right-color: rgba(255, 255, 255, 0.12);
}

.hero-data-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.final-cta.section {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(162, 35, 254, 0.08), rgba(0, 168, 255, 0.04)),
    #ffffff;
}

.contact-copy p,
.contact-details,
.form-note {
  color: var(--text-soft);
}

.lead-form {
  border-color: var(--line-dark);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 18, 28, 0.12);
}

.form-row label,
.privacy-check {
  color: var(--text);
}

.form-row input,
.form-row textarea {
  color: var(--text);
  border-color: var(--line-dark);
  background: #f7f8fb;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #808897;
}

.service-hero {
  position: relative;
  min-height: 78vh;
  padding: 150px clamp(20px, 5vw, 64px) clamp(76px, 9vw, 126px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.16), rgba(3, 3, 6, 0) 38%),
    radial-gradient(circle at 78% 18%, rgba(0, 168, 255, 0.13), transparent 30%),
    var(--ink);
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 78px auto 0 0;
  width: clamp(5px, 0.8vw, 10px);
  background: linear-gradient(180deg, var(--violet), var(--blue) 58%, transparent);
}

.service-hero > * {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.service-hero h1 {
  max-width: 980px;
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
}

.service-section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 64px);
}

.service-light {
  color: var(--text);
  background: #ffffff;
}

.service-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.12), transparent 34%),
    var(--ink);
}

.service-heading,
.service-grid,
.service-list,
.service-cta {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.service-heading {
  margin-bottom: clamp(32px, 5vw, 58px);
}

.service-heading h2,
.service-cta h2 {
  max-width: 880px;
}

.service-heading p,
.service-cta p {
  max-width: 700px;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.service-dark .service-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.service-grid article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
  background: #f7f8fb;
}

.service-grid article:nth-child(odd) {
  background: #ffffff;
}

.service-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-grid p {
  color: var(--text-soft);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.service-list p {
  margin: 0;
  padding: 24px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 750;
}

.service-steps {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.service-steps article {
  min-height: 220px;
  padding: 24px;
  background: #ffffff;
}

.service-steps article:nth-child(even) {
  background: #f7f8fb;
}

.service-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 52px;
  color: var(--white);
  background: var(--ink);
  border-radius: 2px;
  font-weight: 850;
}

.service-steps p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 650;
}

.service-benefits {
  padding-top: clamp(50px, 6vw, 84px);
}

.service-faq {
  color: var(--text);
  background: #f7f8fb;
}

.faq-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
}

.faq-grid p {
  color: var(--text-soft);
}

.service-cta {
  padding: clamp(70px, 8vw, 112px) clamp(20px, 5vw, 64px);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(162, 35, 254, 0.08), rgba(0, 168, 255, 0.04)),
    #ffffff;
}

.service-cta .btn {
  margin-top: 14px;
}

.contact-page-hero {
  min-height: 72vh;
  padding: 150px clamp(20px, 5vw, 64px) clamp(70px, 8vw, 110px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.15), rgba(3, 3, 6, 0) 38%),
    radial-gradient(circle at 82% 18%, rgba(0, 168, 255, 0.13), transparent 30%),
    var(--ink);
}

.contact-page-hero > div {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.contact-page-hero h1 {
  max-width: 960px;
}

.contact-page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
}

.contact-page-section.final-cta {
  background: #ffffff;
}

.contact-cards {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 34px;
}

.contact-cards article {
  padding: 22px;
  border: 1px solid var(--line-dark);
  background: #f7f8fb;
  border-radius: 2px;
}

.contact-cards span {
  display: block;
  margin-bottom: 18px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-cards p {
  margin-bottom: 0;
}

.legal-page {
  background: #ffffff;
}

.legal-hero {
  padding: 150px clamp(20px, 5vw, 64px) clamp(66px, 8vw, 104px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(162, 35, 254, 0.14), rgba(3, 3, 6, 0) 38%),
    var(--ink);
}

.legal-hero > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
}

.legal-content {
  width: min(100%, 920px);
  margin-inline: auto;
  padding: clamp(54px, 7vw, 90px) clamp(20px, 5vw, 36px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.legal-content p {
  color: var(--text-soft);
}

.legal-content a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home2-page {
  background: #000;
  color: #fff;
}

.home2-header {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.home2-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 132px clamp(22px, 5vw, 92px) 76px;
  background: #000;
}

.home2-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.home2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #000 94%);
}

.home2-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 208px);
  align-content: center;
  gap: clamp(32px, 6vw, 80px);
}

.home2-kicker,
.home2-section-heading p {
  margin: 0;
  color: #8d96aa;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home2-hero h1 {
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-size: clamp(4.5rem, 10vw, 9.7rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home2-hero h1 span {
  display: inline-block;
  color: var(--violet);
  text-shadow: 0 0 34px rgba(162, 35, 254, 0.72);
  transform: translateY(-0.04em);
}

.home2-hero-copy {
  display: grid;
  gap: 16px;
  width: min(100%, 470px);
  margin-left: auto;
  margin-right: 6vw;
}

.home2-hero-copy > span {
  display: block;
  width: 46px;
  height: 5px;
  background: var(--violet);
}

.home2-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.home2-hero-copy a,
.home2-final > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff;
  font-weight: 900;
}

.home2-hero-copy a span,
.home2-final > a span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #fff;
  background: var(--violet);
}

.home2-card-section,
.home2-method {
  padding: clamp(76px, 9vw, 128px) clamp(18px, 4vw, 72px);
  background: #000;
}

.home2-section-heading {
  display: grid;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto clamp(34px, 5vw, 60px);
}

.home2-section-heading h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.98;
}

.home2-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 46px);
}

.home2-card {
  position: relative;
  min-height: clamp(440px, 42vw, 560px);
  overflow: hidden;
  color: #fff;
  background: #111;
  isolation: isolate;
}

.home2-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.home2-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.05) 48%, rgba(0, 0, 0, 0.52));
}

.home2-card.is-light::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.02) 44%, rgba(0, 0, 0, 0.48));
}

.home2-card div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 100%;
  padding: 28px;
}

.home2-card span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home2-card h3 {
  max-width: 12.8em;
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.1;
}

.home2-card:hover img {
  opacity: 0.86;
  transform: scale(1.045);
}

.home2-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 8vw, 120px);
  padding: clamp(78px, 10vw, 142px) clamp(22px, 7vw, 110px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(162, 35, 254, 0.16), transparent 32%),
    #05050a;
}

.home2-split h2,
.home2-final h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.95;
}

.home2-split p:not(.home2-kicker),
.home2-final p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.home2-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.home2-method-grid article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home2-method-grid span {
  color: #51f0ff;
  font-weight: 900;
}

.home2-method-grid h3 {
  margin: 54px 0 12px;
  color: #fff;
  font-size: 1.45rem;
}

.home2-method-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.home2-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(80px, 11vw, 150px) clamp(22px, 7vw, 110px);
  background:
    linear-gradient(135deg, rgba(162, 35, 254, 0.2), rgba(0, 168, 255, 0.08)),
    #07070d;
}

.home2-final p {
  max-width: 740px;
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes particleDrift {
  0%,
  100% {
    background-position: 0 0, 15px 18px;
    transform: rotateX(58deg) rotateZ(-10deg) translate3d(8%, -18%, -120px);
  }
  50% {
    background-position: 90px 54px, -38px 82px;
    transform: rotateX(58deg) rotateZ(-8deg) translate3d(5%, -14%, -120px);
  }
}

@keyframes particleBloomSway {
  0%,
  100% {
    transform: rotateX(46deg) rotateZ(-14deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateX(50deg) rotateZ(-9deg) translate3d(-16px, 18px, 34px);
  }
}

@keyframes particlePetalPulse {
  0%,
  100% {
    opacity: 0.56;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
  }
  50% {
    opacity: 0.88;
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42));
  }
}

@keyframes particleCorePulse {
  0%,
  100% {
    opacity: 0.66;
    transform: translate(-50%, -50%) translateZ(60px) scale(0.94);
  }
  50% {
    opacity: 0.98;
    transform: translate(-50%, -50%) translateZ(92px) scale(1.04);
  }
}

@keyframes particleDepth {
  0%,
  100% {
    background-position: 0 0, 8px 7px;
    transform: rotateX(68deg) rotateZ(-18deg) translate3d(0, 0, -160px);
  }
  50% {
    background-position: 120px 70px, -44px 36px;
    transform: rotateX(68deg) rotateZ(-12deg) translate3d(-26px, 22px, -160px);
  }
}

@keyframes ctaFlowerFloat {
  0%,
  100% {
    transform: rotateX(54deg) rotateZ(-18deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateX(58deg) rotateZ(-12deg) translate3d(24px, -18px, 34px);
  }
}

@keyframes ctaLeafPulse {
  0%,
  100% {
    opacity: 0.5;
    background-position: 0 0, 7px 8px;
  }
  50% {
    opacity: 0.9;
    background-position: 42px 18px, -18px 34px;
  }
}

@keyframes ctaCorePulse {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) translateZ(54px) scale(0.94);
  }
  50% {
    opacity: 0.94;
    transform: translate(-50%, -50%) translateZ(88px) scale(1.05);
  }
}

@keyframes brandMarkSweep {
  0% {
    opacity: 0;
    transform: translateX(-72%) rotate(12deg);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(72%) rotate(12deg);
  }
}

@keyframes scrollCueDot {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 0.9;
    transform: translate(-50%, 16px);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-bg-code {
    opacity: 0.65;
  }

  .hero-content {
    margin-inline: auto;
  }

  .particle-flower {
    right: -14vw;
    top: clamp(120px, 18vw, 180px);
    width: min(86vw, 720px);
  }

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

  .enterprise-cards {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-list,
  .service-steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-cards article {
    min-height: 210px;
  }

  .enterprise-cards span,
  .use-case-grid article span {
    margin-bottom: 46px;
  }

  .split-section,
  .clarity-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .cta-flower-bg {
    width: min(76vw, 620px);
    opacity: 0.46;
  }

  .clarity-copy,
  .comparison,
  .contact-copy,
  .lead-form {
    grid-column: auto;
  }

  .sticky-heading {
    position: static;
  }

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

  .footer-about {
    max-width: none;
    grid-column: 1 / -1;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100vw - 28px));
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
  }

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

  .home2-split,
  .home2-final {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(8, 9, 13, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-item {
    position: static;
  }

  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 6px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu a {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .floating-cta {
    display: none;
  }

  body.show-floating-cta .floating-cta {
    display: inline-flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .floating-contact-bubble {
    display: none;
  }

  .floating-contact-menu {
    right: 0;
    min-width: min(280px, calc(100vw - 32px));
  }

  .cookie-banner {
    bottom: 14px;
    gap: 12px;
    padding: 14px;
  }

  .cookie-preference-list {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-actions button {
    min-height: 42px;
  }

  .cookie-reopen {
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .home2-hero {
    min-height: auto;
    padding-top: 116px;
  }

  .home2-hero-inner {
    min-height: 0;
    align-content: start;
  }

  .home2-hero h1 {
    font-size: clamp(3.15rem, 17vw, 6rem);
  }

  .home2-hero-copy {
    margin-left: 0;
    margin-right: 0;
  }

  .home2-card-grid,
  .home2-method-grid {
    grid-template-columns: 1fr;
  }

  .home2-card {
    min-height: 420px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-data-strip {
    grid-template-columns: 1fr;
  }

  .hero-data-strip div {
    min-height: 0;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-data-strip div:last-child {
    border-bottom: 0;
  }

  .particle-flower {
    right: -46vw;
    top: 150px;
    width: 136vw;
    opacity: 0.52;
  }
}

@media (max-width: 640px) {
  .section,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 118px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-bg-code {
    display: none;
  }

  .enterprise-statement h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-scroll-cue {
    left: 18px;
    bottom: 24px;
    transform: none;
  }

  .problem-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid article {
    min-height: 245px;
  }

  .problem-card {
    min-height: 0;
  }

  .problem-card span {
    margin-bottom: 26px;
  }

  .hero-particle-bg::before {
    background:
      linear-gradient(90deg, rgba(3, 3, 6, 0.96) 0%, rgba(3, 3, 6, 0.8) 52%, rgba(3, 3, 6, 0.48) 100%),
      linear-gradient(180deg, rgba(3, 3, 6, 0.12), rgba(3, 3, 6, 0.8) 94%);
  }

  .particle-field {
    opacity: 0.34;
  }

  .particle-flower {
    right: -78vw;
    top: 190px;
    width: 165vw;
    opacity: 0.42;
  }

  .node {
    width: 144px;
    min-height: 78px;
    padding: 12px;
    font-size: 0.88rem;
  }

  .node-main {
    width: 174px;
  }

  .node-c {
    right: 10%;
  }

  .dashboard-panel {
    grid-template-columns: 1fr;
  }

  .metric strong {
    font-size: 1.6rem;
  }

  .floating-cta {
    left: 18px;
    right: 18px;
  }

  .floating-contact-toggle {
    min-width: 124px;
    min-height: 50px;
    padding: 0 18px;
  }

  .cookie-banner {
    width: calc(100vw - 20px);
    padding: 12px;
  }

  .cta-flower-bg {
    left: -210px;
    bottom: -150px;
    width: 520px;
    opacity: 0.32;
  }

  .cookie-eyebrow {
    display: none;
  }

  .cookie-banner strong {
    font-size: 1.05rem;
  }

  .cookie-banner p,
  .cookie-toggle small {
    font-size: 0.78rem;
  }

  .cookie-toggle {
    min-height: 58px;
    padding: 8px;
  }

  .home2-card-section,
  .home2-method,
  .home2-split,
  .home2-final {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home2-card div {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
