:root {
  --bg: #f7f6f1;
  --panel: #eeeeea;
  --ink: #101010;
  --muted: #77746c;
  --line: #d9d5cb;
  --lime: #d7ff44;
  --coral: #ff6f4d;
  --blue: #1d55ff;
  --radius: 16px;
  --max: 1340px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, sans-serif;
}

body::before {
  display: none;
}

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

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

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.project-card::after,
.service-visual::before,
.choice-card::before,
.tool-lab::before,
.production-belt::before,
.machine-card::before,
.operation-line::before,
.industry-section::before {
  background-image: none !important;
  opacity: 0 !important;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  margin: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .68), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .34), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .2) 48%, rgba(255, 255, 255, .08)),
    rgba(226, 240, 248, .3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    inset 0 -1px 0 rgba(255, 255, 255, .22),
    inset 18px 0 40px rgba(255, 255, 255, .16),
    inset -18px 0 38px rgba(16, 64, 92, .08),
    0 22px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(34px) saturate(1.75);
  -webkit-backdrop-filter: blur(34px) saturate(1.75);
  overflow: hidden;
  transition:
    top .42s cubic-bezier(.2, .8, .2, 1),
    width .42s cubic-bezier(.2, .8, .2, 1),
    padding .42s cubic-bezier(.2, .8, .2, 1),
    border-color .42s ease,
    background .42s ease,
    box-shadow .42s ease,
    backdrop-filter .42s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, 0) 56%),
    linear-gradient(100deg, rgba(255, 255, 255, .24), transparent 42%, rgba(255, 255, 255, .14));
  pointer-events: none;
  transition: opacity .34s ease;
}

.site-header::after {
  display: none;
}

.brand,
.nav-links,
.header-cta,
.pill-button {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand {
  position: relative;
  z-index: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 6px;
  transition: color .34s ease, gap .34s ease, padding .34s ease, font-size .34s ease;
}

.brand-logo {
  display: block;
  width: 178px;
  height: auto;
  object-fit: contain;
}

.brand-logo-hero {
  display: none;
  width: clamp(247px, 22.1vw, 338px);
}

.site-header.is-scrolled .brand-logo-menu {
  display: block;
}

.site-header.is-scrolled .brand-logo-hero {
  display: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--ink);
  transition: width .34s ease, height .34s ease, color .34s ease, background .34s ease, box-shadow .34s ease;
}

.nav-links {
  position: relative;
  z-index: 5;
  top: auto;
  left: auto;
  justify-self: center;
  display: flex;
  gap: 24px;
  color: rgba(16, 16, 16, .68);
  white-space: nowrap;
  transform: none;
  transition: color .34s ease, opacity .34s ease;
}

.nav-links a,
.footer a {
  transition: color .2s ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--blue);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 41px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
}

.header-cta {
  position: relative;
  z-index: 6;
  justify-self: end;
  border-color: #1aba14;
  color: #fff;
  background: #1aba14;
  box-shadow: 0 12px 34px rgba(26, 186, 20, .28);
  transition: color .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
  overflow: hidden;
}

.header-actions {
  position: relative;
  z-index: 8;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  position: relative;
  z-index: 12;
}

.language-trigger,
.language-menu button {
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.language-trigger {
  display: grid;
  grid-template-columns: 24px auto 8px;
  align-items: center;
  gap: 7px;
  min-width: 78px;
  min-height: 41px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  color: rgba(16, 16, 16, .82);
  background: rgba(255, 255, 255, .34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 10px 28px rgba(4, 11, 26, .1);
  backdrop-filter: blur(18px) saturate(1.45);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
  transition: border-color .24s ease, background .24s ease, transform .24s ease;
}

.language-trigger:hover,
.language-trigger:focus-visible {
  border-color: rgba(29, 85, 255, .58);
  background: rgba(255, 255, 255, .54);
}

.language-trigger:focus-visible,
.language-menu button:focus-visible {
  outline: 2px solid #1d55ff;
  outline-offset: 2px;
}

.language-trigger img,
.language-menu img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(4, 11, 26, .12);
}

.language-trigger span,
.language-menu span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.language-trigger i {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.language-switcher.is-open .language-trigger i {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  gap: 4px;
  width: 132px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(230, 240, 247, .42)),
    rgba(226, 240, 248, .56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 18px 48px rgba(4, 11, 26, .2);
  backdrop-filter: blur(26px) saturate(1.55);
  -webkit-backdrop-filter: blur(26px) saturate(1.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.96);
  transform-origin: top right;
  transition: opacity .24s ease, visibility .24s ease, transform .3s cubic-bezier(.2, .8, .2, 1);
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-menu button {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 39px;
  padding: 7px 9px;
  border-radius: 10px;
  text-align: left;
  color: #101010;
  background: transparent;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.language-menu button:hover,
.language-menu button[aria-selected="true"] {
  color: #0b2c7a;
  background: rgba(29, 85, 255, .1);
}

.language-menu button:hover {
  transform: translateX(2px);
}

.site-header.is-language-open {
  overflow: visible;
}

.site-header:not(.is-scrolled) .language-trigger {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(5, 9, 14, .38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}

.site-header:not(.is-scrolled) {
  top: 24px;
  width: min(calc(100% - 140px), var(--max));
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.site-header:not(.is-scrolled)::before {
  opacity: 0;
}

.site-header:not(.is-scrolled) .brand {
  gap: 12px;
  padding-left: 0;
  color: #fff;
  font-size: 14px;
}

.site-header:not(.is-scrolled) .brand-logo-hero {
  display: block;
}

.site-header:not(.is-scrolled) .brand-logo-menu {
  display: none;
}

.site-header:not(.is-scrolled) .brand-mark {
  width: 48px;
  height: 48px;
  color: #050607;
  background: rgba(255, 255, 255, .94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .84),
    0 14px 40px rgba(0, 0, 0, .36);
}

.site-header:not(.is-scrolled) .nav-links {
  color: rgba(255, 255, 255, .72);
  opacity: .72;
}

.site-header:not(.is-scrolled) .header-cta {
  min-height: 43px;
  padding-inline: 20px;
  box-shadow: 0 16px 36px rgba(26, 186, 20, .2);
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .62), transparent);
  transform: rotate(18deg);
  animation: cta-sheen 3.8s ease-in-out infinite;
}

.header-cta:hover {
  color: #1aba14;
  border-color: #1aba14;
  background: #fff;
  box-shadow: 0 16px 38px rgba(26, 186, 20, .18);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: min(100svh, calc(100vw * 9 / 16));
  aspect-ratio: 16 / 9;
  margin-inline: 0;
  padding: 80px 0 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #000;
}

.hero > .eyebrow,
.hero > .hero-grid,
.hero > .hero-service-strip {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, .32) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.eyebrow,
.section-kicker {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 32px;
  transform: translateY(-80px);
}

.hero-grid h1 {
  transform: translateY(-42px);
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(46px, 7.4vw, 106px);
  line-height: .92;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .38);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, .78);
  margin-top: 96px;
}

sup {
  font-size: .18em;
  vertical-align: super;
}

.hero-card {
  min-height: 430px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(247, 246, 241, .9);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.hero-service-strip {
  position: absolute;
  right: auto;
  bottom: 118px;
  left: max(16px, calc((100% - var(--max)) / 2));
  z-index: 2;
  width: min(calc(100% - 424px), calc(var(--max) - 392px));
  margin-inline: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-service-chip {
  position: relative;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06)),
    rgba(3, 9, 14, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    0 18px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.hero-service-chip::before {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
  opacity: .9;
  filter: blur(14px);
}

.hero-service-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 255, 68, .52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08)),
    rgba(3, 9, 14, .42);
}

.hero-service-chip span {
  font-family: "DM Mono", monospace;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.hero-service-chip strong {
  display: block;
  margin-top: auto;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-service-chip small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 650;
}

.revenue-chart {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 220px;
  padding: 16px 14px 8px;
}

.revenue-label {
  align-self: flex-start;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.revenue-chart svg {
  width: 100%;
  height: 118px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: rgba(16, 16, 16, .12);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: url("#chartFill");
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: chart-grow 2.8s ease-in-out infinite;
}

.chart-dot {
  fill: var(--lime);
  stroke: var(--ink);
  stroke-width: 5;
  transform-origin: 244px 18px;
  animation: chart-dot-pulse 2.8s ease-in-out infinite;
}

.revenue-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
  height: 48px;
}

.revenue-bars span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: var(--ink);
  transform-origin: bottom;
  animation: revenue-bar-grow 2.8s ease-in-out infinite;
}

.revenue-bars span:nth-child(1) {
  height: 35%;
}

.revenue-bars span:nth-child(2) {
  height: 48%;
  animation-delay: .08s;
}

.revenue-bars span:nth-child(3) {
  height: 64%;
  animation-delay: .16s;
}

.revenue-bars span:nth-child(4) {
  height: 78%;
  background: var(--blue);
  animation-delay: .24s;
}

.revenue-bars span:nth-child(5) {
  height: 96%;
  background: var(--lime);
  animation-delay: .32s;
}

.dark {
  color: var(--bg);
  background: var(--ink);
}

.light {
  background: transparent;
}

.intro-strip {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 410px;
  align-items: start;
  gap: 32px;
  padding: 44px 0 34px;
  border-top: 1px solid var(--line);
}

.intro-strip::before {
  content: none;
}

.intro-strip::after {
  content: none;
}

.intro-strip > * {
  position: relative;
  z-index: 1;
}

.intro-strip p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.intro-neural-bridge {
  position: absolute;
  top: 54px;
  right: 350px;
  z-index: 0;
  width: clamp(210px, 24vw, 360px);
  height: 230px;
  pointer-events: none;
  opacity: .86;
  filter: drop-shadow(0 0 22px rgba(29, 85, 255, .24));
}

.intro-neural-bridge svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.intro-neural-bridge path {
  fill: none;
  stroke: url(#neural-stroke);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: neural-flow 8s linear infinite;
}

.intro-neural-bridge path:nth-of-type(2) {
  animation-direction: reverse;
  animation-duration: 10s;
}

.intro-neural-bridge path:nth-of-type(3) {
  stroke-width: 1;
  opacity: .58;
  animation-duration: 12s;
}

.intro-neural-bridge path:nth-of-type(4) {
  stroke-width: 1.25;
  opacity: .72;
  animation-direction: reverse;
}

.intro-neural-bridge circle {
  fill: url(#neural-node);
  transform-box: fill-box;
  transform-origin: center;
  animation: neural-node-breathe 3.6s ease-in-out infinite;
}

.intro-neural-bridge circle:nth-child(even) {
  animation-delay: -1.8s;
}

.reading-text .read-letter,
.industry-reading .read-letter {
  color: #c8c4bb;
  transition: color .12s linear;
}

.reading-text .read-letter.is-read {
  color: var(--ink);
}

.industry-reading .read-letter {
  color: rgba(247, 246, 241, .28);
}

.industry-reading .read-letter.is-read {
  color: #f7f6f1;
}

.read-word-inline {
  display: inline-block;
}

.intro-pillars {
  position: relative;
  min-height: 0;
  padding: 18px;
  border-radius: var(--radius);
  color: #f7f6f1;
  background:
    radial-gradient(circle at 82% 16%, rgba(29, 85, 255, .42), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(37, 115, 255, .2), transparent 36%),
    linear-gradient(145deg, rgba(7, 11, 16, .97), rgba(9, 20, 36, .94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 28px 80px rgba(16, 16, 16, .16);
  overflow: hidden;
}

.intro-pillars::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(247, 246, 241, .12);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 78% 18%, rgba(29, 85, 255, .22), transparent 30%),
    radial-gradient(circle at 20% 86%, rgba(255, 255, 255, .06), transparent 28%);
  opacity: .86;
}

.intro-system-copy,
.growth-orbit,
.intro-signal {
  position: relative;
  z-index: 1;
}

.intro-system-copy {
  max-width: 340px;
}

.intro-system-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  font-family: "DM Mono", monospace;
  color: #7eb2ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-system-copy strong {
  display: block;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: .92;
  letter-spacing: -0.045em;
}

.intro-system-copy p {
  max-width: 330px;
  margin: 10px 0 0;
  color: rgba(247, 246, 241, .72);
  font-size: 13px;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 700;
}

.growth-orbit {
  position: relative;
  height: 108px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

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

.growth-orbit li {
  position: absolute;
  inset: 0;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(247, 246, 241, .12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 20%, rgba(29, 85, 255, .22), transparent 38%),
    rgba(247, 246, 241, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateX(26px) scale(.96);
  animation: growth-card-cycle 12s cubic-bezier(.2, .8, .2, 1) infinite;
}

.growth-orbit li:nth-child(2) {
  animation-delay: 3s;
}

.growth-orbit li:nth-child(3) {
  animation-delay: 6s;
}

.growth-orbit li:nth-child(4) {
  animation-delay: 9s;
}

.growth-orbit b {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: #7eb2ff;
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.growth-orbit strong {
  margin-top: auto;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: .98;
  letter-spacing: -0.05em;
}

.growth-orbit small {
  display: block;
  max-width: 260px;
  margin-top: 7px;
  color: rgba(247, 246, 241, .66);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}

.intro-signal {
  display: none;
}

.intro-signal i {
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: rgba(247, 246, 241, .28);
  animation: signal-rise 1.8s ease-in-out infinite;
}

.intro-signal i:nth-child(2) {
  animation-delay: .15s;
}

.intro-signal i:nth-child(3) {
  animation-delay: .3s;
}

.intro-signal i:nth-child(4) {
  background: var(--lime);
  animation-delay: .45s;
}

.work,
.testimonials,
.blog,
.seo-faq,
.cta {
  padding: 86px 0;
}

.work {
  --work-card-top: clamp(210px, 26vh, 270px);
  --work-card-height: min(64vh, 560px);
  padding-top: 44px;
}

.work-mobile-stage {
  display: contents;
}

.work,
.services,
.testimonials,
.blog,
.seo-faq,
.cta {
  scroll-margin-top: 110px;
}

.marquee-title {
  display: flex;
  gap: 0;
  width: 100vw;
  overflow: hidden;
  margin: 14px calc(50% - 50vw) 32px;
  text-transform: uppercase;
}

.marquee-title span {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .18em;
  font-size: clamp(58px, 10vw, 150px);
  line-height: .9;
  letter-spacing: -0.05em;
  font-weight: 900;
  animation: drift 22s linear infinite;
}

.marquee-title span::after {
  content: "•";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 .18em;
  color: var(--blue);
  font-size: .38em;
  line-height: 1;
  transform: translateY(-.08em);
}

.marquee-title.compact span {
  font-size: clamp(46px, 8vw, 112px);
}

.work-sticky-title {
  --work-progress: 0;
  position: sticky;
  top: 76px;
  z-index: 6;
  margin-bottom: 18px;
  padding: 10px 0 8px;
  opacity: clamp(0, calc((.72 - var(--work-progress)) * 10), 1);
  background:
    linear-gradient(180deg, rgba(247, 246, 241, .98), rgba(247, 246, 241, .78) 62%, rgba(247, 246, 241, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .08s linear;
}

.work-sticky-title .marquee-title {
  margin-bottom: 0;
}

.work-sticky-title .marquee-title span {
  font-size: clamp(56px, 8.8vw, 132px);
}

.project-stack {
  --work-step-1: 0;
  --work-step-2: 0;
  --work-step-3: 0;
  position: sticky;
  z-index: 7;
  top: var(--work-card-top);
  height: var(--work-card-height);
  min-height: 500px;
  margin-top: 18px;
  perspective: 1200px;
}

.work-exit-spacer {
  height: clamp(80px, 12vh, 140px);
}

.work-cta {
  position: sticky;
  top: calc(var(--work-card-top) + var(--work-card-height) + 18px);
  z-index: 11;
  margin-top: 18px;
  pointer-events: none;
}

.work-cta .section-cta-button {
  pointer-events: auto;
}

.project-card {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) 1fr;
  align-items: end;
  gap: 40px;
  padding: 40px 40px clamp(108px, 13vh, 150px);
  border-radius: var(--radius);
  overflow: hidden;
  background: #101010;
  color: var(--bg);
  box-shadow: 0 28px 90px rgba(16, 16, 16, .14);
}

.project-stack .project-card {
  position: absolute;
  inset: 0;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform .08s linear, opacity .08s linear, filter .08s linear;
}

.project-stack .work-card-1 {
  z-index: 4;
  opacity: clamp(0, calc(1 - var(--work-step-1) * 1.18), 1);
  transform: translateY(calc(var(--work-step-1) * -64px)) scale(calc(1 - var(--work-step-1) * .04));
  filter: blur(calc(var(--work-step-1) * 7px));
}

.project-stack .work-card-2 {
  z-index: 3;
  opacity: clamp(0, min(calc(var(--work-step-1) * 1.25), calc((1 - var(--work-step-2)) * 1.18)), 1);
  transform: translateY(calc((1 - var(--work-step-1)) * 92px - var(--work-step-2) * 64px)) scale(calc(.94 + var(--work-step-1) * .06 - var(--work-step-2) * .04));
  filter: blur(calc((1 - var(--work-step-1)) * 9px + var(--work-step-2) * 7px));
}

.project-stack .work-card-3 {
  z-index: 2;
  opacity: clamp(0, min(calc(var(--work-step-2) * 1.25), calc((1 - var(--work-step-3)) * 1.18)), 1);
  transform: translateY(calc((1 - var(--work-step-2)) * 92px - var(--work-step-3) * 64px)) scale(calc(.94 + var(--work-step-2) * .06 - var(--work-step-3) * .04));
  filter: blur(calc((1 - var(--work-step-2)) * 9px + var(--work-step-3) * 7px));
}

.project-stack .work-card-4 {
  z-index: 1;
  opacity: clamp(0, calc(var(--work-step-3) * 1.25), 1);
  transform: translateY(calc((1 - var(--work-step-3)) * 92px)) scale(calc(.94 + var(--work-step-3) * .06));
  filter: blur(calc((1 - var(--work-step-3)) * 9px));
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.95) contrast(1.06);
  transition: transform .55s ease, opacity .3s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, .94), rgba(16, 16, 16, .55) 48%, rgba(16, 16, 16, .18)),
    radial-gradient(circle at 84% 20%, rgba(29, 85, 255, .42), transparent 28%);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .26;
  background-image:
    linear-gradient(rgba(247, 246, 241, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 241, .1) 1px, transparent 1px);
  background-size: 42px 42px;
}

.project-card:hover img {
  transform: scale(1.04);
  opacity: .84;
}

.project-icon,
.project-copy,
.project-meta {
  position: relative;
  z-index: 2;
}

.project-icon {
  align-self: start;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 54px rgba(215, 255, 68, .24);
}

.project-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-copy {
  grid-column: 1 / span 1;
  max-width: 600px;
}

.project-copy span {
  font-family: "DM Mono", monospace;
  color: var(--lime);
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 14px 0 18px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .86;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.project-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(247, 246, 241, .78);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 650;
}

.project-meta {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(247, 246, 241, .88);
  backdrop-filter: blur(14px);
}

.project-meta span {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  line-height: 1.65;
  text-transform: uppercase;
  color: var(--muted);
}

.project-meta strong {
  font-family: Inter, sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  text-transform: none;
}

.project-cta {
  position: absolute;
  right: 40px;
  bottom: 28px;
  z-index: 3;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid #1aba14;
  border-radius: 999px;
  color: #fff;
  background: #1aba14;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(26, 186, 20, .28);
  transition: transform .22s ease, color .22s ease, background .22s ease;
}

.project-cta:hover {
  color: #1aba14;
  background: #fff;
  transform: translateY(-2px);
}

.services {
  padding: 32px 0 86px;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 12px;
  width: max-content;
  margin-bottom: 84px;
  animation: ticker 26s linear infinite;
}

.ticker span {
  padding: 16px 24px;
  border: 1px solid rgba(16, 16, 16, .28);
  border-radius: 999px;
  font-size: clamp(24px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(247, 246, 241, .72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.ticker span:nth-child(3n + 1) {
  border-color: rgba(26, 186, 20, .34);
  background:
    linear-gradient(135deg, rgba(215, 255, 68, .5), rgba(247, 246, 241, .8) 68%);
}

.ticker span:nth-child(3n + 2) {
  border-color: rgba(29, 85, 255, .26);
  background:
    linear-gradient(135deg, rgba(247, 246, 241, .9), rgba(29, 85, 255, .16));
}

.ticker span:nth-child(3n + 3) {
  border-color: rgba(26, 186, 20, .28);
  background:
    linear-gradient(135deg, rgba(247, 246, 241, .9), rgba(26, 186, 20, .18));
}

.split-section,
.section-heading,
.cta {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}

.split-section h2,
.brands h2,
.section-heading h2,
.seo-faq h2,
.cta h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: #514d45;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}

.section-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-cta-button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid #1aba14;
  border-radius: 999px;
  color: #fff;
  background: #1aba14;
  box-shadow:
    0 16px 42px rgba(26, 186, 20, .25),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  transition: color .28s ease, background .28s ease, transform .28s ease, box-shadow .28s ease;
}

.section-cta-button::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .68), transparent);
  transform: rotate(18deg);
  animation: cta-sheen 4.4s ease-in-out infinite;
}

.section-cta-button:hover {
  color: #1aba14;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(26, 186, 20, .18);
}

.section-cta-button span {
  position: relative;
}

.section-cta-dark .section-cta-button {
  box-shadow: 0 18px 48px rgba(26, 186, 20, .32), inset 0 1px 0 rgba(255, 255, 255, .32);
}

.service-visual {
  position: relative;
  min-height: 245px;
  margin-top: 48px;
  padding: 22px;
  border: 1px solid rgba(16, 16, 16, .1);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 255, 68, .48), transparent 34%),
    linear-gradient(100deg, rgba(29, 85, 255, .12), transparent 58%),
    var(--panel);
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(16, 16, 16, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, .08) 1px, transparent 1px);
  background-size: 26px 26px;
}

.visual-topline,
.visual-bars,
.visual-bottomline {
  position: relative;
  z-index: 1;
}

.visual-topline,
.visual-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
}

.visual-topline span,
.visual-bottomline b {
  color: var(--muted);
  font-size: 12px;
}

.visual-topline strong {
  font-size: clamp(42px, 5vw, 72px);
  line-height: .85;
  letter-spacing: -0.06em;
}

.funnel-chart {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr .72fr .5fr;
  align-items: end;
  gap: 10px;
  height: 108px;
  margin: 22px 0;
}

.funnel-chart::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--ink), var(--blue), var(--lime));
  opacity: .35;
}

.funnel-chart div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 54px;
  padding: 12px;
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 16, 16, .12);
}

.funnel-chart div:nth-child(2) {
  min-height: 70px;
  background: #15324b;
}

.funnel-chart div:nth-child(3) {
  min-height: 86px;
  background: var(--blue);
}

.funnel-chart div:nth-child(4) {
  min-height: 102px;
  color: var(--ink);
  background: var(--lime);
}

.funnel-chart b {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  opacity: .78;
}

.funnel-chart span {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mobile-services-scroll,
.mobile-services-stage,
.mobile-services-carousel,
.service-carousel-row,
.service-carousel-track {
  display: contents;
}

.work {
  min-height: 2240px;
}

.metric-card,
.blog article,
.testimonial-stack blockquote,
.faq-grid article,
.faq-item {
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, .08), rgba(16, 16, 16, .74)),
    radial-gradient(circle at 22% 18%, rgba(215, 255, 68, .35), transparent 32%);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.95) contrast(1.05);
  transform: scale(1.02);
  transition: transform .6s ease, opacity .3s ease;
}

.service-card:hover img {
  opacity: .88;
  transform: scale(1.08);
}

.service-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--bg);
}

.service-grid span {
  font-family: "DM Mono", monospace;
  color: var(--lime);
}

.service-grid h3 {
  margin: 96px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.service-signals b {
  padding: 7px 10px;
  border: 1px solid rgba(247, 246, 241, .38);
  border-radius: 999px;
  background: rgba(247, 246, 241, .12);
  color: var(--bg);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.service-grid p,
.blog p,
.testimonial-stack p,
.metric-card p,
.faq-grid p {
  color: #555149;
  line-height: 1.45;
  font-weight: 500;
}

.service-grid p {
  margin: 0;
  color: rgba(247, 246, 241, .86);
  font-weight: 600;
}

.services .split-section {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.services .split-section > div:first-child {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  align-self: start;
  padding-right: 34px;
}

.services .service-grid {
  display: contents;
}

.services .service-card {
  min-height: 350px;
}

.services .service-card:nth-child(5),
.services .service-card:nth-child(6) {
  min-height: 270px;
}

.services .service-card:nth-child(5) {
  grid-column: 1 / span 2;
}

.services .service-card:nth-child(6) {
  grid-column: 3 / span 2;
}

.services .service-card:nth-child(5) .service-content,
.services .service-card:nth-child(6) .service-content {
  max-width: 520px;
}

.services .service-card:nth-child(5) h3,
.services .service-card:nth-child(6) h3 {
  margin-top: 56px;
}

.services .service-carousel-row-reverse .service-card:nth-child(2),
.services .service-carousel-row-reverse .service-card:nth-child(3) {
  min-height: 270px;
}

.services .service-carousel-row-reverse .service-card:nth-child(2) {
  grid-column: 1 / span 2;
}

.services .service-carousel-row-reverse .service-card:nth-child(3) {
  grid-column: 3 / span 2;
}

.services .service-carousel-row-reverse .service-card:nth-child(2) .service-content,
.services .service-carousel-row-reverse .service-card:nth-child(3) .service-content {
  max-width: 520px;
}

.services .service-carousel-row-reverse .service-card:nth-child(2) h3,
.services .service-carousel-row-reverse .service-card:nth-child(3) h3 {
  margin-top: 56px;
}

.why-valoritec {
  padding: 94px 0 104px;
  scroll-margin-top: 110px;
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.why-heading h2 {
  max-width: 900px;
  margin: 12px 0 0;
  font-size: clamp(46px, 7vw, 108px);
  line-height: .95;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.why-heading .why-answer {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: .98;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.why-heading p {
  margin: 0;
  color: #514d45;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 650;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 16px;
}

.choice-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(16, 16, 16, .06);
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(16, 16, 16, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, .08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.choice-card.primary {
  color: var(--bg);
  background:
    radial-gradient(circle at 18% 16%, rgba(215, 255, 68, .42), transparent 28%),
    linear-gradient(135deg, #101010, #183263);
}

.choice-card.primary::before {
  opacity: .18;
  background-image:
    linear-gradient(rgba(247, 246, 241, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 241, .14) 1px, transparent 1px);
}

.choice-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
}

.choice-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-card > span,
.choice-card h3,
.choice-card p {
  position: relative;
  z-index: 1;
}

.choice-card > span {
  align-self: flex-start;
  margin-top: auto;
  font-family: "DM Mono", monospace;
  color: var(--blue);
}

.choice-card.primary > span {
  color: var(--lime);
}

.choice-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.choice-card p {
  margin: 0;
  color: #555149;
  line-height: 1.45;
  font-weight: 600;
}

.choice-card.primary p {
  color: rgba(247, 246, 241, .82);
}

.workflow-panel {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr 52px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 255, 68, .45), transparent 38%),
    var(--panel);
}

.workflow-step {
  min-height: 128px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(247, 246, 241, .72);
  border: 1px solid rgba(16, 16, 16, .06);
}

.workflow-step b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--ink);
}

.workflow-step span {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.workflow-step p {
  margin: 8px 0 0;
  color: #5a554c;
  line-height: 1.35;
  font-weight: 600;
}

.workflow-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), var(--blue), #1aba14);
}

.decision-map {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  grid-template-areas:
    "manifest contrast"
    "manifest system";
  gap: 16px;
}

.decision-map .choice-card.primary {
  grid-area: manifest;
  min-height: 620px;
  padding: 34px;
}

.decision-map .choice-card.primary > div:first-child {
  position: relative;
  z-index: 1;
}

.decision-map .choice-card.primary > div:first-child > span {
  margin: 0;
  color: var(--lime);
}

.decision-map .choice-card.primary h3 {
  max-width: 720px;
  margin: 28px 0 22px;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: .9;
  letter-spacing: -0.06em;
}

.tool-lab {
  position: relative;
  z-index: 1;
  min-height: 270px;
  margin-top: 30px;
  border: 1px solid rgba(247, 246, 241, .18);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(26, 186, 20, .26), transparent 26%),
    linear-gradient(135deg, rgba(247, 246, 241, .11), rgba(247, 246, 241, .04));
  backdrop-filter: blur(18px);
}

.tool-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 246, 241, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 241, .12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .35;
}

.gear {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 34%, rgba(16, 16, 16, .96) 35% 46%, transparent 47%),
    repeating-conic-gradient(from 0deg, var(--lime) 0 12deg, transparent 12deg 24deg),
    radial-gradient(circle, rgba(215, 255, 68, .9), rgba(26, 186, 20, .55));
  box-shadow: 0 0 28px rgba(215, 255, 68, .24);
  animation: gear-spin 16s linear infinite;
}

.gear-a {
  width: 116px;
  height: 116px;
  right: 38px;
  top: 36px;
}

.gear-b {
  width: 82px;
  height: 82px;
  right: 132px;
  top: 136px;
  animation-direction: reverse;
  animation-duration: 12s;
}

.gear-c {
  width: 52px;
  height: 52px;
  left: 34px;
  bottom: 38px;
  opacity: .86;
  animation-duration: 10s;
}

.robot-arm {
  position: absolute;
  left: 26px;
  top: 36px;
  width: min(66%, 360px);
  height: auto;
  overflow: visible;
}

.robot-arm path,
.robot-arm circle {
  fill: none;
  stroke: rgba(247, 246, 241, .86);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.robot-arm .arm-base {
  stroke: var(--lime);
}

.robot-arm .arm-claw {
  stroke: #1aba14;
  transform-origin: 202px 118px;
  animation: claw-work 2.4s ease-in-out infinite;
}

.robot-arm .link-one,
.robot-arm .link-two {
  stroke-dasharray: 220;
  animation: arm-pulse 2.8s ease-in-out infinite;
}

.robot-arm .arm-joint {
  fill: #101010;
  stroke: var(--lime);
}

.robot-arm .arm-joint.end {
  fill: var(--lime);
  stroke: #101010;
}

.tool-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(247, 246, 241, .18);
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
  animation: chip-float 3.5s ease-in-out infinite;
}

.chip-a {
  left: 34px;
  top: 28px;
}

.chip-b {
  right: 48px;
  bottom: 36px;
  animation-delay: -.8s;
}

.chip-c {
  left: 46%;
  bottom: 62px;
  background: #d9e5ff;
  animation-delay: -1.4s;
}

.chip-d {
  right: 150px;
  top: 46px;
  background: rgba(247, 246, 241, .92);
  animation-delay: -2s;
}

.decision-proof {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  width: min(100%, 360px);
  margin-top: auto;
  padding: 20px;
  border: 1px solid rgba(247, 246, 241, .18);
  border-radius: var(--radius);
  background: rgba(247, 246, 241, .1);
  backdrop-filter: blur(14px);
}

.decision-proof b,
.decision-proof small {
  display: block;
  font-family: "DM Mono", monospace;
  color: rgba(247, 246, 241, .68);
  text-transform: uppercase;
}

.decision-proof strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--lime);
  font-size: clamp(58px, 8vw, 104px);
  line-height: .82;
  letter-spacing: -0.07em;
}

.choice-contrast {
  grid-area: contrast;
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  align-items: stretch;
  gap: 10px;
  min-height: 260px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--panel);
}

.contrast-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 12px;
}

.contrast-column span {
  font-family: "DM Mono", monospace;
  color: var(--muted);
  text-transform: uppercase;
}

.contrast-column p {
  margin: 34px 0 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.contrast-column.weak {
  background: rgba(16, 16, 16, .06);
  color: #77746c;
}

.contrast-column.strong {
  background: var(--lime);
  color: var(--ink);
}

.contrast-column.strong span {
  color: var(--ink);
}

.contrast-divider {
  align-self: center;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.choice-system {
  grid-area: system;
  display: grid;
  gap: 10px;
}

.system-node {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(16, 16, 16, .08);
  border-radius: var(--radius);
  background: rgba(238, 238, 234, .76);
  overflow: hidden;
}

.system-node::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #1aba14;
}

.system-node b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--ink);
  font-family: "DM Mono", monospace;
}

.system-node span {
  display: block;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.system-node p {
  grid-column: 2;
  margin: -4px 0 0;
  color: #555149;
  line-height: 1.35;
  font-weight: 650;
}

.production-belt {
  position: relative;
  margin-top: 16px;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--bg);
  background:
    radial-gradient(circle at 88% 0%, rgba(26, 186, 20, .34), transparent 25%),
    radial-gradient(circle at 14% 100%, rgba(31, 101, 255, .24), transparent 28%),
    linear-gradient(135deg, #0b0d12, #101010 58%, #06130a);
  border: 1px solid rgba(16, 16, 16, .08);
}

.production-belt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 246, 241, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 241, .08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .38;
  pointer-events: none;
}

.belt-head,
.belt-track,
.belt-stations {
  position: relative;
  z-index: 1;
}

.belt-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.belt-head span {
  font-family: "DM Mono", monospace;
  color: var(--lime);
  text-transform: uppercase;
  font-weight: 800;
}

.belt-head strong {
  max-width: 640px;
  text-align: right;
  font-size: clamp(28px, 4vw, 56px);
  line-height: .92;
  letter-spacing: -0.05em;
}

.belt-track {
  height: 112px;
  margin: 0 0 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(247, 246, 241, .16);
  background:
    linear-gradient(180deg, rgba(247, 246, 241, .08), rgba(247, 246, 241, .02)),
    repeating-linear-gradient(90deg, rgba(247, 246, 241, .22) 0 32px, rgba(247, 246, 241, .05) 32px 64px);
}

.belt-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 30px;
  background:
    repeating-linear-gradient(90deg, rgba(247, 246, 241, .92) 0 44px, rgba(215, 255, 68, .9) 44px 58px, transparent 58px 76px);
  opacity: .82;
  animation: belt-move 1.35s linear infinite;
}

.belt-package {
  position: absolute;
  top: 22px;
  left: -160px;
  display: grid;
  place-items: center;
  width: 136px;
  height: 48px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
  animation: package-run 9.6s linear infinite;
}

.package-2 {
  animation-delay: -2.4s;
  background: rgba(247, 246, 241, .96);
}

.package-3 {
  animation-delay: -4.8s;
  background: #d9e5ff;
}

.package-4 {
  animation-delay: -7.2s;
  background: #1aba14;
  color: #fff;
}

.belt-stations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.belt-station {
  position: relative;
  min-height: 178px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(247, 246, 241, .14);
  background: rgba(247, 246, 241, .08);
  overflow: hidden;
}

.belt-station::before,
.belt-station::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.belt-station::before {
  top: -10px;
  right: 28px;
  width: 8px;
  height: 78px;
  border-radius: 999px;
  background: var(--lime);
  transform-origin: top center;
  animation: station-arm 2.2s ease-in-out infinite;
}

.belt-station::after {
  top: 54px;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 5px solid rgba(247, 246, 241, .78);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: gear-spin 2s linear infinite;
}

.belt-station i {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 54px;
  background: var(--lime);
}

.belt-station span {
  display: block;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: .94;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.belt-station p {
  margin: 10px 0 0;
  color: rgba(247, 246, 241, .72);
  line-height: 1.35;
  font-weight: 650;
}

@keyframes gear-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes claw-work {
  0%, 100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(12deg);
  }
}

@keyframes arm-pulse {
  0%, 100% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 28;
  }
}

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

@keyframes belt-move {
  to {
    background-position-x: 76px;
  }
}

@keyframes package-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 320px));
  }
}

@keyframes station-arm {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(11deg);
  }
}

.growth-machine {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.35fr);
  gap: 16px;
  align-items: stretch;
}

.machine-card,
.operation-line {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 16, 16, .08);
}

.machine-card {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: var(--bg);
  background:
    radial-gradient(circle at 20% 14%, rgba(215, 255, 68, .34), transparent 24%),
    linear-gradient(145deg, #101010 0%, #132441 64%, #06130a 100%);
}

.machine-card::before,
.operation-line::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 246, 241, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 241, .1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .28;
}

.machine-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 28%, rgba(16, 16, 16, .96) 29% 43%, transparent 44%),
    repeating-conic-gradient(var(--lime) 0 12deg, transparent 12deg 24deg);
  opacity: .68;
  animation: gear-spin 22s linear infinite;
}

.machine-card > * {
  position: relative;
  z-index: 1;
}

.machine-label,
.line-head span {
  font-family: "DM Mono", monospace;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.machine-card h3 {
  max-width: 620px;
  margin: 90px 0 18px;
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: .9;
  letter-spacing: -0.06em;
}

.machine-card p {
  max-width: 540px;
  margin: 0;
  color: rgba(247, 246, 241, .78);
  font-size: 18px;
  line-height: 1.42;
  font-weight: 650;
}

.tool-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.tool-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(247, 246, 241, .18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(247, 246, 241, .9);
  font-size: 13px;
  font-weight: 850;
}

.tool-stack span:nth-child(1),
.tool-stack span:nth-child(6) {
  background: var(--lime);
}

.operation-line {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 14%, rgba(26, 186, 20, .2), transparent 25%),
    linear-gradient(180deg, #eeeeea, #f7f6f1);
}

.operation-line::before {
  background-image:
    linear-gradient(rgba(16, 16, 16, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, .08) 1px, transparent 1px);
  opacity: .42;
}

.line-head,
.conveyor,
.flow-steps {
  position: relative;
  z-index: 1;
}

.line-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}

.line-head strong {
  max-width: 680px;
  margin-left: auto;
  text-align: right;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: .92;
  letter-spacing: -0.055em;
}

.conveyor {
  height: 130px;
  margin: 36px 0 26px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .09);
  background:
    linear-gradient(180deg, rgba(16, 16, 16, .03), rgba(16, 16, 16, .08)),
    repeating-linear-gradient(90deg, rgba(16, 16, 16, .12) 0 34px, rgba(16, 16, 16, .04) 34px 68px);
}

.conveyor::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 34px;
  background:
    repeating-linear-gradient(90deg, #101010 0 42px, var(--lime) 42px 54px, transparent 54px 76px);
  animation: belt-move 1.25s linear infinite;
}

.conveyor::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 16, 16, .28), transparent);
}

.conveyor-package {
  position: absolute;
  top: 28px;
  left: -150px;
  display: grid;
  place-items: center;
  width: 128px;
  height: 48px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(16, 16, 16, .16);
  animation: package-run 9.4s linear infinite;
}

.conveyor-package.package-2 {
  animation-delay: -2.35s;
  background: #fff;
}

.conveyor-package.package-3 {
  animation-delay: -4.7s;
  background: #d9e5ff;
}

.conveyor-package.package-4 {
  animation-delay: -7.05s;
  color: #fff;
  background: #1aba14;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flow-step {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 16, 16, .08);
}

.flow-step b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--ink);
  font-family: "DM Mono", monospace;
}

.flow-step span {
  display: block;
  margin-top: auto;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: .95;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.flow-step p {
  margin: 10px 0 0;
  color: #555149;
  line-height: 1.34;
  font-weight: 650;
}

.why-valoritec.section-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  padding: 108px 0 48px;
  color: var(--bg);
  background:
    radial-gradient(circle at 50% 3%, rgba(29, 85, 255, .2), transparent 33%),
    radial-gradient(circle at 10% 70%, rgba(29, 85, 255, .1), transparent 28%),
    #000;
  overflow: hidden;
}

.why-valoritec.section-shell::before {
  display: none;
}

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

.why-valoritec .section-kicker {
  color: #7fa2ff;
}

.why-valoritec .why-heading {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 34px;
  text-align: center;
}

.why-valoritec .why-heading h2 {
  max-width: 1180px;
  margin: 0;
  color: transparent;
  background:
    linear-gradient(90deg, #f7f6f1 0%, #8fb0ff 22%, #ffffff 44%, #1d55ff 60%, #f7f6f1 78%, #f7f6f1 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(54px, 8.4vw, 128px);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 42px rgba(29, 85, 255, .2);
  animation: why-title-shine 5.6s ease-in-out infinite;
}

.why-valoritec .why-answer {
  max-width: 860px;
  margin: 22px auto 0;
  color: var(--bg);
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 900;
}

.expensive-tag {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 .16em .08em;
  color: #fff;
  transform: rotate(-1deg);
}

.expensive-tag::before {
  content: "";
  position: absolute;
  inset: .06em -.1em 0;
  z-index: -1;
  border-radius: .16em;
  background:
    linear-gradient(135deg, rgba(255, 66, 66, .98), rgba(185, 0, 26, .96));
  box-shadow:
    0 .08em .34em rgba(255, 24, 24, .28),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}

.why-valoritec .why-heading > .why-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(247, 246, 241, .72);
  font-size: clamp(18px, 1.6vw, 23px);
}

.why-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 34px;
}

.compare-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(247, 246, 241, .13);
}

.compare-card::before {
  display: none;
}

.compare-card > * {
  position: relative;
  z-index: 1;
}

.compare-card span,
.tech-copy > span {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.compare-card h3 {
  max-width: 620px;
  margin: auto 0 14px;
  font-size: clamp(34px, 4.4vw, 70px);
  line-height: .9;
  letter-spacing: -0.06em;
}

.compare-card p {
  max-width: 560px;
  margin: 0;
  line-height: 1.4;
  font-weight: 650;
}

.compare-muted {
  color: rgba(247, 246, 241, .72);
  background:
    radial-gradient(circle at 20% 20%, rgba(247, 246, 241, .08), transparent 28%),
    rgba(247, 246, 241, .05);
}

.compare-muted span {
  color: rgba(247, 246, 241, .54);
}

.compare-muted h3 {
  color: rgba(247, 246, 241, .58);
}

.compare-strong {
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .22), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(143, 176, 255, .22), transparent 32%),
    linear-gradient(135deg, rgba(29, 85, 255, .96), rgba(8, 31, 107, .98));
  box-shadow: 0 30px 74px rgba(29, 85, 255, .25);
}

.compare-strong::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2px;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, .74), #8fb0ff, #1d55ff, transparent 72%),
    linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .22));
  background-size: 240% 100%, 100% 100%;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: .88;
  pointer-events: none;
  animation: valoritec-border-flow 4.2s ease-in-out infinite;
}

.compare-strong span,
.compare-strong p {
  color: rgba(247, 246, 241, .82);
}

.compare-strong h3 {
  color: #fff;
}

.compare-vs {
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--bg);
  font-size: 24px;
  font-weight: 950;
  box-shadow:
    0 0 0 10px rgba(247, 246, 241, .06),
    0 0 42px rgba(29, 85, 255, .32);
}

.tech-showcase {
  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 720px;
  margin: 0;
  margin-left: -50vw;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  color: var(--bg);
  background: #000;
  box-shadow:
    inset 0 150px 150px rgba(0, 0, 0, .92),
    inset 0 -180px 170px #000;
}

.tech-video,
.tech-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tech-video {
  object-fit: cover;
  z-index: 0;
}

.tech-video-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 62% 42%, rgba(0, 0, 0, 0), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .06) 48%, rgba(0, 0, 0, .34)),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .04) 32%, rgba(0, 0, 0, .62) 68%, #000 100%);
  pointer-events: none;
}

.tech-section {
  position: relative;
  background: #000;
  overflow: hidden;
  padding-bottom: 0;
}

.tech-section .tech-content {
  padding-bottom: 44px;
}

.tech-section::after {
  content: none;
}

.tech-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .42fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(24px, 6vw, 96px);
  row-gap: 30px;
  align-items: end;
  margin: 0 auto;
  padding: 104px 0 52px;
}

.tech-copy,
.tech-panel {
  position: relative;
  overflow: visible;
}

.tech-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 820px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.tech-copy > span {
  color: var(--lime);
}

.tech-copy h3 {
  max-width: 820px;
  margin: 28px 0 18px;
  font-size: clamp(42px, 6.2vw, 92px);
  line-height: .9;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .54);
}

.tech-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(247, 246, 241, .78);
  font-size: 18px;
  line-height: 1.43;
  font-weight: 650;
}

.tech-panel {
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(280px, 430px);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(247, 246, 241, .14);
  border-radius: 999px;
  background: rgba(5, 6, 9, .2);
  backdrop-filter: blur(8px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

.panel-label {
  font-family: "DM Mono", monospace;
  color: rgba(247, 246, 241, .62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.tech-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(247, 246, 241, .14);
  border-radius: 999px;
  color: var(--bg);
  background: rgba(247, 246, 241, .08);
  backdrop-filter: blur(4px);
  font-weight: 850;
}

.tech-grid span:nth-child(1),
.tech-grid span:nth-child(5),
.tech-grid span:nth-child(8) {
  color: var(--ink);
  background: var(--lime);
}

.tech-proof {
  margin: 0;
  padding: 0 0 0 22px;
  border-top: 0;
  border-left: 1px solid rgba(247, 246, 241, .14);
}

.tech-proof strong {
  display: block;
  color: var(--bg);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: .94;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.tech-proof p {
  margin: 12px 0 0;
  color: rgba(247, 246, 241, .64);
  line-height: 1.38;
  font-weight: 650;
}

.cyber-arm {
  background:
    radial-gradient(circle at 72% 20%, rgba(215, 255, 68, .2), transparent 22%),
    radial-gradient(circle at 22% 78%, rgba(31, 101, 255, .22), transparent 30%),
    linear-gradient(135deg, #050609, #111823 50%, #050609);
}

.cyber-grid,
.arm-glow,
.arm-base,
.arm-segment,
.arm-joint,
.arm-claw,
.scan-line {
  position: absolute;
}

.cyber-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 246, 241, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 241, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .52;
}

.arm-glow {
  inset: 18% 12% 12% 10%;
  border-radius: 42%;
  background: radial-gradient(circle, rgba(215, 255, 68, .22), transparent 58%);
  filter: blur(22px);
  animation: arm-glow 3.4s ease-in-out infinite;
}

.arm-base {
  left: 11%;
  bottom: 14%;
  width: 180px;
  height: 92px;
  border-radius: 28px 28px 8px 8px;
  background:
    linear-gradient(135deg, #eef4ff 0%, #7e8ca3 24%, #1d2430 58%, #050609 100%);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, .16),
    0 24px 70px rgba(0, 0, 0, .45);
}

.arm-segment {
  height: 54px;
  border-radius: 999px;
  transform-origin: left center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(126, 140, 163, .72) 30%, rgba(19, 28, 44, .96) 72%, #050609),
    linear-gradient(90deg, #d7ff44, transparent);
  box-shadow:
    inset 0 9px 18px rgba(255, 255, 255, .16),
    inset 0 -10px 16px rgba(0, 0, 0, .36),
    0 0 34px rgba(215, 255, 68, .18);
}

.segment-one {
  left: 24%;
  bottom: 28%;
  width: 280px;
  transform: rotate(-34deg);
}

.segment-two {
  left: 49%;
  top: 34%;
  width: 230px;
  transform: rotate(23deg);
}

.arm-joint {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #050609 0 31%, var(--lime) 32% 40%, #6c778c 41% 54%, #151b25 55% 100%);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, .12),
    0 0 42px rgba(215, 255, 68, .2);
  animation: cyber-joint 5s ease-in-out infinite;
}

.joint-one {
  left: 38%;
  bottom: 34%;
}

.joint-two {
  right: 18%;
  top: 28%;
  width: 86px;
  height: 86px;
  animation-delay: -1.7s;
}

.arm-claw {
  right: 9%;
  top: 34%;
  width: 118px;
  height: 88px;
  transform-origin: left center;
  animation: cyber-claw 2.6s ease-in-out infinite;
}

.arm-claw::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 78px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #edf3ff, #606d81 52%, #111823);
}

.arm-claw i {
  position: absolute;
  right: 0;
  width: 62px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7f6f1, #657286 60%, #07090d);
}

.arm-claw i:first-child {
  top: 14px;
  transform: rotate(-28deg);
}

.arm-claw i:last-child {
  bottom: 14px;
  transform: rotate(28deg);
}

.scan-line {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 18px rgba(215, 255, 68, .72);
  animation: scan-line 3s ease-in-out infinite;
}

@keyframes arm-glow {
  0%, 100% {
    opacity: .58;
    transform: scale(.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes cyber-joint {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes cyber-claw {
  0%, 100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

@keyframes scan-line {
  0%, 100% {
    transform: translateY(-120px);
    opacity: .15;
  }
  50% {
    transform: translateY(120px);
    opacity: .9;
  }
}

@keyframes why-title-shine {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 0 rgba(29, 85, 255, 0));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 18px rgba(29, 85, 255, .3));
  }
}

@keyframes neural-pulse {
  0%, 100% {
    opacity: .68;
    filter: drop-shadow(0 0 18px rgba(29, 85, 255, .18));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 34px rgba(29, 85, 255, .34));
  }
}

@keyframes neural-flow {
  to {
    stroke-dashoffset: -80;
  }
}

@keyframes neural-node-breathe {
  0%, 100% {
    opacity: .52;
    transform: scale(.72);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes history-network-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: .78;
  }
  50% {
    transform: translate3d(-10px, 8px, 0) rotate(-1deg);
    opacity: 1;
  }
}

@keyframes history-node-pulse {
  0%, 100% {
    transform: scale(.92);
    box-shadow:
      0 0 0 7px rgba(29, 85, 255, .08),
      0 0 22px rgba(29, 85, 255, .34);
  }
  50% {
    transform: scale(1.12);
    box-shadow:
      0 0 0 13px rgba(29, 85, 255, .12),
      0 0 36px rgba(29, 85, 255, .58);
  }
}

@keyframes valoritec-border-flow {
  0%, 100% {
    background-position: 0% 50%, 0 0;
    opacity: .72;
  }
  50% {
    background-position: 100% 50%, 0 0;
    opacity: 1;
  }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 0 86px;
}

.metric-card {
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-card span {
  font-size: clamp(58px, 8vw, 112px);
  line-height: .85;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.metric-card:nth-child(2) {
  background: var(--lime);
}

.metric-card:nth-child(3) {
  background: #d9e5ff;
}

.story-brands-gradient {
  background:
    radial-gradient(circle at 82% 12%, rgba(29, 85, 255, .22), transparent 34%),
    radial-gradient(circle at 10% 68%, rgba(29, 85, 255, .18), transparent 36%),
    linear-gradient(180deg, #e9f2ff 0%, #e9fff8 46%, #d6e7ff 100%);
}

.industry-section {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  margin: 0;
  padding: 126px 0 92px;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border-top: 0;
}

.industry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image:
    linear-gradient(rgba(247, 246, 241, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 241, .06) 1px, transparent 1px);
  background-size: 90px 90px;
}

.industry-section::after {
  content: none;
}

.industry-wave {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.industry-wave.top {
  display: none;
}

.industry-wave.bottom {
  display: none;
}

.industry-glow {
  display: none;
}

.history-constellation {
  position: absolute;
  top: 54px;
  right: max(34px, calc((100vw - var(--max)) / 2));
  z-index: 1;
  width: min(520px, 42vw);
  height: 214px;
  pointer-events: none;
  opacity: .92;
  background:
    linear-gradient(18deg, transparent 19%, rgba(29, 85, 255, .23) 19.4%, transparent 20%),
    linear-gradient(151deg, transparent 32%, rgba(29, 85, 255, .18) 32.4%, transparent 33%),
    linear-gradient(178deg, transparent 54%, rgba(29, 85, 255, .14) 54.4%, transparent 55%),
    radial-gradient(ellipse at 54% 48%, rgba(29, 85, 255, .12), transparent 68%);
  filter: drop-shadow(0 20px 48px rgba(29, 85, 255, .18));
  animation: history-network-drift 7s ease-in-out infinite;
}

.history-constellation::before,
.history-constellation::after {
  content: "";
  position: absolute;
  inset: 24px 30px 28px 22px;
  border: 1px solid rgba(29, 85, 255, .16);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 48% 52% 46% 54%;
  transform: rotate(-7deg);
}

.history-constellation::after {
  inset: 58px 74px 48px 68px;
  border-color: rgba(29, 85, 255, .12);
  border-right-color: transparent;
  transform: rotate(14deg);
}

.history-node {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1d55ff;
  box-shadow:
    0 0 0 9px rgba(29, 85, 255, .1),
    0 0 28px rgba(29, 85, 255, .48);
  animation: history-node-pulse 3.8s ease-in-out infinite;
}

.node-a {
  top: 46px;
  left: 42px;
}

.node-b {
  top: 112px;
  left: 178px;
  animation-delay: .45s;
}

.node-c {
  top: 72px;
  right: 136px;
  animation-delay: .9s;
}

.node-d {
  right: 36px;
  bottom: 42px;
  animation-delay: 1.35s;
}

.history-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(29, 85, 255, .2);
  border-radius: 999px;
  color: #0c2f88;
  background: rgba(255, 255, 255, .48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .74),
    0 16px 40px rgba(29, 85, 255, .12);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pill-a {
  top: 22px;
  left: 88px;
}

.pill-b {
  top: 92px;
  right: 118px;
}

.pill-c {
  right: 18px;
  bottom: 18px;
}

.industry-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 96px;
}

.industry-inner .section-kicker {
  color: rgba(16, 16, 16, .58);
}

.industry-inner h2 {
  max-width: 980px;
  margin: 12px 0 0;
  font-size: clamp(24px, 3vw, 41px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.industry-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.industry-metric {
  position: relative;
  min-height: 170px;
  padding: 36px 0 20px;
  border-bottom: 1px solid rgba(16, 16, 16, .14);
  transform: translateY(28px);
  opacity: 0;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), opacity .8s ease;
}

.industry-section.is-visible .industry-metric {
  transform: translateY(0);
  opacity: 1;
}

.industry-section.is-visible .industry-metric:nth-child(2) {
  transition-delay: .08s;
}

.industry-section.is-visible .industry-metric:nth-child(3) {
  transition-delay: .16s;
}

.industry-section.is-visible .industry-metric:nth-child(4) {
  transition-delay: .24s;
}

.industry-metric::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.industry-section.is-visible .industry-metric::after {
  transform: scaleX(1);
}

.industry-metric i {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: rgba(16, 16, 16, .18);
  animation: industry-square 4s ease-in-out infinite;
}

.industry-metric:nth-child(even) i {
  background: var(--blue);
  animation-delay: .55s;
}

.industry-metric strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(56px, 7vw, 94px);
  line-height: .82;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.industry-metric span {
  display: block;
  max-width: 220px;
  color: rgba(16, 16, 16, .58);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.brands {
  padding: 14px 0 118px;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  overflow: hidden;
}

.brands-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 34px;
  text-align: center;
}

.brands-copy h2 {
  max-width: 920px;
  margin-top: 10px;
}

.brands-copy::after {
  content: "Clientes que exigem clareza, performance e execução consistente.";
  max-width: 430px;
  margin-top: 18px;
  color: rgba(16, 16, 16, .58);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 750;
}

.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 0;
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: logo-carousel 26s linear infinite;
  will-change: transform;
}

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

.logo-card {
  flex: 0 0 252px;
  height: 136px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 16, 16, .08);
  background: rgba(247, 246, 241, .64);
  box-shadow: 0 24px 70px rgba(16, 16, 16, .06);
  backdrop-filter: blur(10px);
}

.logo-card img {
  width: 76%;
  height: 70px;
  object-fit: contain;
  filter: saturate(.95) contrast(1.02);
}

.logo-card:nth-child(3n) img {
  width: 82%;
}

.logo-card:nth-child(4n) img {
  width: 84%;
}

.testimonials.section-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: auto;
  padding: 110px max(16px, calc((100% - var(--max)) / 2)) 120px;
  color: var(--bg);
  background:
    radial-gradient(circle at 82% 9%, rgba(29, 85, 255, .22), transparent 30%),
    radial-gradient(circle at 16% 76%, rgba(215, 255, 68, .09), transparent 26%),
    linear-gradient(135deg, #050607 0%, #080b10 44%, #020202 100%);
  overflow: hidden;
}

.testimonials.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(215, 255, 68, .08), transparent 28%);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: radial-gradient(circle at 50% 38%, #000 0%, rgba(0, 0, 0, .86) 48%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at 50% 38%, #000 0%, rgba(0, 0, 0, .86) 48%, transparent 84%);
}

.testimonials.section-shell::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 9%;
  z-index: 0;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(215, 255, 68, .14);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(29, 85, 255, .12);
  opacity: .58;
  pointer-events: none;
}

.testimonials.section-shell > * {
  position: relative;
  z-index: 1;
}

.testimonials .section-kicker {
  color: rgba(247, 246, 241, .62);
}

.testimonials .marquee-title span {
  color: #f7f6f1;
}

.testimonial-stack {
  --testimonial-progress: 0;
  --testimonial-step-1: 0;
  --testimonial-step-2: 0;
  --testimonial-row: 540px;
  position: relative;
  min-height: calc(520px * 3 + 40px);
  margin-top: 32px;
  perspective: 1200px;
}

.testimonial-pair {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transform-style: preserve-3d;
  transition: transform .08s linear, opacity .08s linear, filter .08s linear;
}

.testimonial-pair.pair-1 {
  z-index: 3;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.testimonial-pair.pair-2 {
  z-index: 2;
  opacity: clamp(0, calc(var(--testimonial-step-1) * 1.25), 1);
  transform: translateY(calc(54px + var(--testimonial-step-1) * (var(--testimonial-row) - 54px))) scale(calc(.94 + var(--testimonial-step-1) * .06));
  filter: blur(calc((1 - var(--testimonial-step-1)) * 7px));
}

.testimonial-pair.pair-3 {
  z-index: 1;
  opacity: clamp(0, calc(var(--testimonial-step-2) * 1.25), 1);
  transform: translateY(calc(var(--testimonial-row) + 54px + var(--testimonial-step-2) * (var(--testimonial-row) - 54px))) scale(calc(.94 + var(--testimonial-step-2) * .06));
  filter: blur(calc((1 - var(--testimonial-step-2)) * 7px));
}

.testimonial-stack blockquote {
  margin: 0;
  min-height: 420px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stack p {
  margin: 0;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ink);
}

.testimonial-stack footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--blue);
  font-weight: 800;
}

.testimonial-author span {
  display: block;
  margin-top: 6px;
  color: #6b675f;
  font-weight: 600;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255, 205, 45, .18);
  border: 1px solid rgba(255, 190, 22, .38);
}

.star-rating i {
  display: block;
  width: 15px;
  height: 15px;
  background: #ffc400;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 80% 92%, 50% 70%, 20% 92%, 32% 56%, 2% 35%, 39% 35%);
}

.section-heading {
  align-items: end;
  margin-bottom: 28px;
}

.section-heading .pill-button {
  justify-self: end;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog article {
  min-height: 498px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.blog img {
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  gap: 5px;
  margin-bottom: 34px;
  color: var(--muted);
}

.blog h3 {
  margin: auto 0 10px;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.blog p {
  margin: 0;
}

.seo-faq {
  padding-top: 20px;
}

.seo-faq h2 {
  max-width: 980px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 112px;
}

.faq-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #514d45;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 650;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .08);
  box-shadow: 0 20px 70px rgba(16, 16, 16, .05);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .28s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(29, 85, 255, .24);
  background: #f0eee7;
}

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

.faq-item[open]::before {
  transform: scaleY(1);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 36px;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-family: "DM Mono", monospace;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--ink);
  font-size: 24px;
  line-height: 1;
  transition: transform .24s ease, background .24s ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--ink);
  background: var(--lime);
  transform: rotate(180deg);
}

.faq-item p {
  max-width: 660px;
  margin: 0;
  padding: 0 76px 28px 92px;
  color: #555149;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 600;
}

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

.faq-grid article {
  min-height: 260px;
  padding: 24px;
}

.faq-grid h3 {
  margin: 0 0 40px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.faq-grid p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.cta {
  align-items: end;
  min-height: 404px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--lime);
}

.cta .large {
  justify-self: end;
  min-height: 56px;
  padding-inline: 24px;
  font-size: 15px;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #1aba14;
  box-shadow:
    0 18px 42px rgba(26, 186, 20, .34),
    inset 0 1px 0 rgba(255, 255, 255, .38);
  isolation: isolate;
  transition: transform .26s ease, box-shadow .26s ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(26, 186, 20, .76);
  animation: whatsapp-wave 2.4s ease-out infinite;
}

.whatsapp-float::after {
  animation-delay: .8s;
}

.whatsapp-float img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .18));
}

.whatsapp-float span {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  min-width: max-content;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 8, 10, .78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  transform: translate(10px, -50%);
  opacity: 0;
  pointer-events: none;
  transition: transform .24s ease, opacity .24s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 24px 60px rgba(26, 186, 20, .42),
    inset 0 1px 0 rgba(255, 255, 255, .48);
}

.whatsapp-float:hover span,
.whatsapp-float:focus-visible span {
  transform: translate(0, -50%);
  opacity: 1;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s ease, visibility .26s ease;
}

.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(215, 255, 68, .18), transparent 28%),
    rgba(0, 0, 0, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lead-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 48px));
  min-height: 560px;
  max-height: none;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius);
  color: #f7f6f1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .26), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(215, 255, 68, .16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05)),
    rgba(6, 18, 28, .58);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .3);
  backdrop-filter: blur(34px) saturate(1.55);
  -webkit-backdrop-filter: blur(34px) saturate(1.55);
  overflow: visible;
  overscroll-behavior: contain;
}

.lead-dialog::before {
  content: none;
}

.lead-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(247, 246, 241, .14);
  border-radius: 50%;
  color: #f7f6f1;
  background: rgba(247, 246, 241, .08);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.lead-dialog-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-dialog-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 10px;
}

.lead-dialog-copy span {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-dialog-copy h2 {
  margin: auto 0 18px;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: .88;
  letter-spacing: -0.06em;
}

.lead-dialog-copy p {
  max-width: 330px;
  margin: 0;
  color: rgba(247, 246, 241, .7);
  font-size: 18px;
  line-height: 1.24;
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 246, 241, .72);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  min-width: 0;
}

.lead-form label:nth-of-type(3) {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 16px;
  color: #f7f6f1;
  background: rgba(255, 255, 255, .1);
  padding: 15px 14px;
  font: 800 15px/1.2 "Inter", system-ui, sans-serif;
  outline: none;
  backdrop-filter: blur(12px);
}

.lead-form textarea {
  resize: vertical;
  min-height: 112px;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-close:focus-visible {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(215, 255, 68, .14);
}

.lead-service-select {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.lead-service-select > span {
  color: rgba(247, 246, 241, .72);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-service-trigger {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 18px;
  color: #f7f6f1;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.lead-service-trigger strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 900;
}

.lead-service-trigger i {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform .22s ease;
}

.lead-service-select.is-open .lead-service-trigger i {
  transform: translateY(2px) rotate(225deg);
}

.lead-service-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 6;
  display: grid;
  gap: 7px;
  max-height: 252px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .09)),
    rgba(9, 22, 32, .86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(26px) saturate(1.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.lead-service-select.is-open .lead-service-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lead-service-menu button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  color: #f7f6f1;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  text-align: left;
  padding: 0 14px;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.lead-service-menu button:hover,
.lead-service-menu button.is-selected {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
  transform: translateY(-2px);
}

.lead-full,
.lead-submit {
  grid-column: 1 / -1;
}

.lead-submit {
  min-height: 58px;
  border: 1px solid #1aba14;
  border-radius: 999px;
  color: #fff;
  background: #1aba14;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 52px rgba(26, 186, 20, .35);
}

body.modal-open {
  overflow: hidden;
}

.footer.section-shell {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  align-items: end;
  gap: 28px;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  margin-top: 80px;
  margin-bottom: 0;
  padding: 100px max(100px, calc((100% - var(--max)) / 2)) 100px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 255, 68, .3), transparent 24%),
    linear-gradient(135deg, #dff1ff 0%, #eef7fb 48%, #d7ff44 130%);
  color: var(--muted);
  font-weight: 700;
}

.footer-brand {
  max-width: 520px;
}

.footer-logo {
  display: block;
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-mark {
  margin-bottom: 22px;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .9;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  text-transform: uppercase;
}

.bottom-blur {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  height: clamp(150px, 24vh, 280px);
  overflow: hidden;
  pointer-events: none;
}

.bottom-blur-layer {
  opacity: 1;
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
}

.bottom-blur .blur-1 {
  z-index: 1;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 37.5%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 37.5%);
  backdrop-filter: blur(0.078125px);
  -webkit-backdrop-filter: blur(0.078125px);
}

.bottom-blur .blur-2 {
  z-index: 2;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 0) 50%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 0) 50%);
  backdrop-filter: blur(0.15625px);
  -webkit-backdrop-filter: blur(0.15625px);
}

.bottom-blur .blur-3 {
  z-index: 3;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 62.5%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 62.5%);
  backdrop-filter: blur(0.3125px);
  -webkit-backdrop-filter: blur(0.3125px);
}

.bottom-blur .blur-4 {
  z-index: 4;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 0) 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 0) 75%);
  backdrop-filter: blur(0.625px);
  -webkit-backdrop-filter: blur(0.625px);
}

.bottom-blur .blur-5 {
  z-index: 5;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 87.5%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 87.5%);
  backdrop-filter: blur(1.25px);
  -webkit-backdrop-filter: blur(1.25px);
}

.bottom-blur .blur-6 {
  z-index: 6;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.bottom-blur .blur-7 {
  z-index: 7;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 1) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.bottom-blur .blur-8 {
  z-index: 8;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 1) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.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;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

@keyframes drift {
  to {
    transform: translateX(calc(-100% - 24px));
  }
}

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

@keyframes chart-grow {
  0% {
    stroke-dashoffset: 340;
    opacity: .55;
  }

  62%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes chart-dot-pulse {
  0%,
  48% {
    transform: scale(.72);
    opacity: .55;
  }

  68%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes revenue-bar-grow {
  0% {
    transform: scaleY(.22);
    opacity: .55;
  }

  58%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes bar-pulse {
  0%,
  100% {
    transform: scaleY(.92);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes liquid-sheen {
  0%,
  42%,
  100% {
    transform: translateX(-120%) rotate(16deg);
    opacity: 0;
  }

  54% {
    opacity: .7;
  }

  72% {
    transform: translateX(420%) rotate(16deg);
    opacity: 0;
  }
}

@keyframes cta-sheen {
  0%,
  42%,
  100% {
    left: -70%;
    opacity: 0;
  }

  54% {
    opacity: .74;
  }

  76% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes whatsapp-wave {
  0% {
    transform: scale(1);
    opacity: .52;
  }

  68% {
    opacity: .14;
  }

  100% {
    transform: scale(1.72);
    opacity: 0;
  }
}

@keyframes growth-card-cycle {
  0% {
    opacity: 0;
    transform: translateX(26px) scale(.96);
    filter: blur(8px);
  }

  8%,
  22% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }

  30%,
  100% {
    opacity: 0;
    transform: translateX(-22px) scale(.98);
    filter: blur(7px);
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    opacity: .35;
    transform: scaleX(.74);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes signal-rise {
  0%,
  100% {
    transform: translateY(0);
    opacity: .5;
  }

  50% {
    transform: translateY(-7px);
    opacity: 1;
  }
}

@keyframes industry-glow {
  to {
    transform: translate(-48%, -46%) scale(1.08);
  }
}

@keyframes industry-square {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes logo-carousel {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes mobile-services-left {
  0%,
  23.8% {
    transform: translateX(0);
  }

  33.3%,
  57.1% {
    transform: translateX(calc((min(74vw, 278px) + 12px) * -1));
  }

  66.7%,
  90.5% {
    transform: translateX(calc((min(74vw, 278px) + 12px) * -2));
  }

  100% {
    transform: translateX(calc((min(74vw, 278px) + 12px) * -3));
  }
}

@keyframes mobile-services-right {
  0%,
  23.8% {
    transform: translateX(calc((min(74vw, 278px) + 12px) * -3));
  }

  33.3%,
  57.1% {
    transform: translateX(calc((min(74vw, 278px) + 12px) * -2));
  }

  66.7%,
  90.5% {
    transform: translateX(calc((min(74vw, 278px) + 12px) * -1));
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes service-liquid-shape {
  0%,
  23.8%,
  33.3%,
  57.1%,
  66.7%,
  90.5%,
  100% {
    border-radius: 22px 14px 24px 16px;
  }

  28.5%,
  61.9%,
  95.2% {
    border-radius: 13px 27px 14px 25px;
  }
}

@keyframes service-liquid-light {
  0%,
  23.8%,
  33.3%,
  57.1%,
  66.7%,
  90.5%,
  100% {
    opacity: .08;
    transform: translate3d(-24%, -8%, 0) rotate(12deg);
  }

  28.5%,
  61.9%,
  95.2% {
    opacity: .3;
    transform: translate3d(30%, 12%, 0) rotate(4deg) scale(1.08);
  }
}

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

  .growth-orbit {
    height: auto;
    display: grid;
    gap: 10px;
  }

  .growth-orbit li {
    position: relative;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

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

  .site-header:not(.is-scrolled) {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-links {
    display: none;
  }

  .history-constellation {
    top: 46px;
    right: 20px;
    width: min(360px, 64vw);
    opacity: .55;
  }

  .hero-grid,
  .intro-strip,
  .split-section,
  .section-heading,
  .why-heading,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 340px;
  }

  .hero-grid {
    transform: none;
  }

  .hero-grid h1 {
    transform: none;
  }

  .work {
    --work-card-top: 198px;
    --work-card-height: min(68vh, 560px);
  }

  .intro-pillars {
    min-height: 0;
  }

  .hero {
    padding-bottom: 264px;
  }

  .hero-service-strip {
    right: 0;
    left: 0;
    width: min(calc(100% - 32px), var(--max));
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 22px;
  }

  .hero-service-chip {
    min-height: 92px;
  }

  .services .split-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services .split-section > div:first-child {
    grid-column: auto;
    grid-row: auto;
    padding-right: 0;
  }

  .services .service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .services .service-card,
  .services .service-card:nth-child(5),
  .services .service-card:nth-child(6) {
    grid-column: auto;
    min-height: 340px;
  }

  .service-visual {
    min-height: 220px;
  }

  .project-card {
    grid-template-columns: 1fr;
    min-height: 500px;
    padding: 24px 24px 118px;
  }

  .project-stack {
    top: 198px;
    height: min(68vh, 560px);
    min-height: 520px;
  }

  .work-cta {
    top: calc(var(--work-card-top) + var(--work-card-height) + 14px);
    bottom: auto;
  }

  .work-exit-spacer {
    height: 120px;
  }

  .project-copy,
  .project-meta {
    grid-column: 1;
  }

  .project-copy h3 {
    font-size: clamp(42px, 10vw, 70px);
  }

  .project-copy p {
    font-size: 16px;
  }

  .project-meta {
    grid-template-columns: 1fr;
  }

  .project-cta {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .metrics,
  .why-grid,
  .industry-metrics,
  .blog-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow-line {
    width: 2px;
    height: 34px;
    margin-inline: auto;
  }

  .decision-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "manifest"
      "contrast"
      "system";
  }

  .decision-map .choice-card.primary {
    min-height: 540px;
  }

  .growth-machine {
    grid-template-columns: 1fr;
  }

  .machine-card,
  .operation-line {
    min-height: auto;
  }

  .machine-card h3 {
    margin-top: 70px;
  }

  .line-head {
    grid-template-columns: 1fr;
  }

  .line-head strong {
    margin-left: 0;
    text-align: left;
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-lab {
    min-height: 240px;
  }

  .robot-arm {
    width: min(72%, 340px);
  }

  .belt-head {
    align-items: start;
    flex-direction: column;
  }

  .belt-head strong {
    text-align: left;
  }

  .belt-stations {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-contrast {
    grid-template-columns: 1fr;
  }

  .contrast-divider {
    justify-self: center;
  }

  .industry-section {
    min-height: auto;
    padding: 112px 0 132px;
  }

  .industry-inner {
    gap: 58px;
  }

  .industry-metric {
    min-height: 144px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-copy {
    position: static;
  }

  .lead-dialog {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lead-dialog-copy {
    min-height: 240px;
  }

  .testimonial-pair {
    grid-template-columns: 1fr;
  }

  .testimonial-stack {
    --testimonial-row: 736px;
    min-height: calc(720px * 3 + 32px);
  }

  .testimonial-stack blockquote {
    min-height: 360px;
  }

  .testimonial-stack footer {
    align-items: start;
    flex-direction: column;
  }

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

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

  .brands-copy {
    max-width: 760px;
  }

  .logo-card {
    flex-basis: 220px;
    height: 118px;
  }

  .logo-card img {
    height: 60px;
  }

  .section-heading .pill-button,
  .cta .large {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header:not(.is-scrolled) {
    top: 14px;
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header:not(.is-scrolled) .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-logo {
    width: 158px;
  }

  .brand-logo-hero {
    width: 239px;
  }

  .header-cta {
    display: none;
  }

  .history-constellation {
    display: none;
  }

  .section-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 358px;
    min-height: calc(100svh - 24px);
    aspect-ratio: auto;
  }

  .hero-service-strip {
    width: min(calc(100% - 20px), var(--max));
    right: 0;
    left: 0;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 18px;
  }

  .hero-service-chip {
    min-height: 70px;
    padding: 12px 14px;
  }

  .hero-service-chip strong {
    font-size: 18px;
  }

  .hero-service-chip small {
    margin-top: 4px;
    font-size: 12px;
  }

  .section-cta {
    margin-top: 28px;
  }

  .section-cta-button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    padding-inline: 18px;
    text-align: center;
  }

  .lead-modal {
    padding: 10px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float span {
    display: none;
  }

  .lead-dialog {
    width: min(100%, calc(100vw - 20px));
    max-height: 92vh;
    padding: 22px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .lead-dialog-copy {
    min-height: auto;
    padding-right: 42px;
  }

  .lead-dialog-copy h2 {
    margin: 28px 0 12px;
    font-size: clamp(42px, 14vw, 58px);
  }

  .lead-dialog-copy p {
    font-size: 15px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(42px, 13.5vw, 62px);
  }

  .hero-video {
    object-fit: cover;
  }

  .services .service-grid {
    grid-template-columns: 1fr;
  }

  .services .service-card,
  .services .service-card:nth-child(5),
  .services .service-card:nth-child(6) {
    min-height: 330px;
  }

  .service-visual {
    margin-top: 28px;
  }

  .intro-pillars,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    padding-bottom: 72px;
  }

  .intro-pillars {
    min-height: auto;
    padding: 18px;
  }

  .growth-orbit {
    height: 126px;
  }

  .growth-orbit::before {
    inset: auto 0 -16px;
    width: auto;
    height: 2px;
  }

  .intro-signal {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .work {
    min-height: 2100px;
    --work-card-top: 164px;
    --work-card-height: min(68vh, 520px);
  }

  .project-stack {
    top: 164px;
    height: min(68vh, 520px);
    min-height: 490px;
  }

  .work-cta {
    top: calc(var(--work-card-top) + var(--work-card-height) + 10px);
    bottom: auto;
  }

  .work-exit-spacer {
    height: 100px;
  }

  .project-card {
    min-height: 490px;
    padding-bottom: 118px;
  }

  .project-icon {
    width: 70px;
    height: 70px;
  }

  .project-icon svg {
    width: 38px;
    height: 38px;
  }

  .work,
  .testimonials,
  .blog,
  .seo-faq,
  .industry-section,
  .why-valoritec,
  .cta,
  .brands {
    padding-block: 58px;
  }

  .industry-section {
    margin-top: 0;
    padding-top: 92px;
    padding-bottom: 64px;
  }

  .brands {
    padding-top: 4px;
  }

  .brands-copy::after {
    font-size: 16px;
  }

  .logo-carousel {
    padding: 14px 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }

  .logo-card {
    flex-basis: 188px;
    height: 104px;
  }

  .logo-card img {
    height: 52px;
  }

  .decision-map .choice-card.primary {
    min-height: 500px;
    padding: 24px;
  }

  .growth-machine {
    gap: 12px;
  }

  .machine-card,
  .operation-line {
    padding: 22px;
  }

  .machine-card h3 {
    margin-top: 54px;
    font-size: clamp(36px, 11vw, 56px);
  }

  .machine-card p {
    font-size: 16px;
  }

  .tool-stack {
    margin-top: 30px;
  }

  .operation-line {
    min-height: auto;
  }

  .conveyor {
    height: 112px;
    margin: 28px 0 18px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 168px;
  }

  .why-heading h2 {
    font-size: clamp(40px, 14vw, 62px);
  }

  .why-heading .why-answer {
    font-size: clamp(26px, 8vw, 38px);
  }

  .tool-lab {
    min-height: 300px;
  }

  .robot-arm {
    left: 12px;
    top: 48px;
    width: 92%;
  }

  .gear-a {
    right: 18px;
    top: 20px;
    width: 88px;
    height: 88px;
  }

  .gear-b {
    right: 86px;
    top: 178px;
  }

  .chip-d {
    right: 22px;
    top: 118px;
  }

  .chip-c {
    left: 26px;
    bottom: 92px;
  }

  .production-belt {
    padding: 16px;
  }

  .belt-track {
    height: 96px;
  }

  .belt-stations {
    grid-template-columns: 1fr;
  }

  .choice-contrast {
    padding: 10px;
  }

  .system-node {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .system-node p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .industry-wave.top {
    height: 46px;
  }

  .industry-wave.bottom {
    height: 62px;
  }

  .faq-item summary {
    grid-template-columns: 38px 1fr 32px;
    min-height: 84px;
    padding: 18px;
  }

  .faq-item p {
    padding: 0 18px 24px 56px;
  }

  .cta {
    min-height: 360px;
    padding: 24px;
  }

  .footer.section-shell {
    grid-template-columns: 1fr;
    padding: 100px max(20px, calc((100% - var(--max)) / 2));
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .work {
    min-height: 2280px;
    --work-card-top: 198px;
    --work-card-height: min(68vh, 520px);
  }

  .project-stack {
    top: 198px;
    height: min(68vh, 520px);
    min-height: 460px;
  }

  .work-exit-spacer {
    height: 120px;
  }

  .work-sticky-title .marquee-title span {
    font-size: clamp(42px, 6vw, 82px);
  }

  .project-card {
    padding: 30px 30px 124px;
  }

  .project-icon {
    width: 72px;
    height: 72px;
  }

  .project-icon svg {
    width: 38px;
    height: 38px;
  }

  .project-copy h3 {
    font-size: clamp(42px, 6vw, 72px);
  }

  .project-copy p {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .why-valoritec.section-shell {
    padding: 96px 0 52px;
  }

  .intro-neural-bridge {
    display: none;
  }

  .tech-showcase {
    margin-bottom: 0;
  }

  .tech-section .tech-content {
    padding: 88px 0 80px;
  }

  .why-valoritec .why-heading,
  .why-comparison,
  .tech-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .compare-vs {
    width: 72px;
    height: 72px;
    margin: -4px auto;
  }

  .tech-showcase,
  .tech-content {
    min-height: auto;
  }

  .tech-content {
    padding: 88px 0 80px;
  }

  .tech-panel {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
    padding: 22px;
  }

  .tech-proof {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(247, 246, 241, .14);
  }
}

@media (max-width: 620px) {
  .why-valoritec.section-shell {
    padding: 72px 0 40px;
  }

  .tech-showcase {
    margin-top: 0;
    margin-bottom: 0;
  }

  .why-inner {
    width: min(calc(100% - 20px), var(--max));
  }

  .why-valoritec .why-heading h2 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .why-valoritec .why-heading > p {
    font-size: 16px;
  }

  .compare-card,
  .tech-panel {
    min-height: auto;
    padding: 22px;
  }

  .compare-card h3 {
    font-size: clamp(32px, 11vw, 52px);
  }

  .tech-copy h3 {
    margin-top: 24px;
    font-size: clamp(34px, 11vw, 54px);
  }

  .tech-showcase {
    min-height: auto;
  }

  .tech-content {
    width: min(calc(100% - 20px), var(--max));
    padding: 64px 0 80px;
  }

  .tech-section .tech-content {
    padding: 64px 0 80px;
  }

  .tech-panel {
    min-height: auto;
  }

  .tech-grid span {
    min-height: 34px;
    font-size: 13px;
  }
}

body::before,
.project-card::after,
.service-visual::before,
.choice-card::before,
.tool-lab::before,
.production-belt::before,
.machine-card::before,
.operation-line::before,
.why-valoritec.section-shell::before,
.compare-card::before,
.industry-section::before {
  background-image: none !important;
  opacity: 0 !important;
  display: none !important;
}

@media (max-width: 430px) {
  :root {
    --radius: 18px;
  }

  body {
    overflow-x: clip;
  }

  html {
    overflow-x: clip;
  }

  .site-header,
  .site-header:not(.is-scrolled) {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: calc(100% - 18px);
    padding: 7px;
    border-radius: 22px;
  }

  .site-header:not(.is-scrolled) {
    background: transparent;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo-menu {
    width: 108px;
  }

  .brand-logo-hero,
  .site-header:not(.is-scrolled) .brand-logo-hero {
    width: 132px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    min-height: 34px;
    padding-inline: 12px;
    font-size: 10px;
    white-space: nowrap;
  }

  .header-actions {
    gap: 5px;
  }

  .language-trigger {
    grid-template-columns: 20px auto;
    gap: 5px;
    min-width: 52px;
    min-height: 34px;
    padding: 5px 7px;
  }

  .language-trigger img,
  .language-menu img {
    width: 20px;
    height: 14px;
  }

  .language-trigger i {
    display: none;
  }

  .language-trigger span,
  .language-menu span {
    font-size: 9px;
  }

  .language-menu {
    right: -2px;
    width: 116px;
    border-radius: 14px;
  }

  .hero {
    width: 100%;
    min-height: 0;
    margin-inline: 0;
    padding: 96px 14px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 0 0 18px 18px;
  }

  .hero > .eyebrow,
  .hero > .hero-grid,
  .hero > .hero-service-strip {
    width: 100%;
    margin-inline: auto;
  }

  .hero .eyebrow {
    order: 1;
    margin-top: 42px;
    font-size: 11px;
    line-height: 1.25;
  }

  .hero-grid {
    display: contents;
  }

  .hero-grid h1,
  .hero h1 {
    order: 2;
    max-width: 100%;
    margin-top: 24px;
    font-size: clamp(36px, 10.8vw, 45px);
    line-height: .88;
    letter-spacing: -0.055em;
    transform: translateY(-20px);
  }

  .hero-card {
    display: none;
  }

  .hero-card .revenue-chart {
    grid-column: 1 / -1;
    height: 148px;
    padding: 0;
    gap: 4px;
  }

  .hero-card .revenue-label {
    padding: 7px 10px;
    font-size: 11px;
  }

  .hero-card .revenue-chart svg {
    height: 76px;
  }

  .hero-card .revenue-bars {
    height: 28px;
    gap: 5px;
  }

  .hero-card p {
    font-size: 13px;
    line-height: 1.24;
  }

  .hero-card .pill-button {
    min-height: 40px;
    padding: 10px 8px;
    font-size: 9px;
    text-align: center;
  }

  .hero-service-strip {
    position: relative;
    order: 3;
    inset: auto;
    z-index: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: -5px;
  }

  .hero-service-chip {
    min-height: 82px;
    height: 82px;
    padding: 10px;
    border-radius: 14px;
  }

  .hero-service-chip span {
    font-size: 10px;
  }

  .hero-service-chip strong {
    font-size: 15px;
  }

  .hero-service-chip small {
    font-size: 10px;
  }

  .intro-strip {
    display: block;
    padding: 44px 0 32px;
  }

  .intro-strip::before,
  .intro-strip::after {
    display: none;
  }

  .intro-strip p {
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: .98;
  }

  .intro-pillars {
    max-width: 100%;
    margin-top: 22px;
    padding: 18px;
    min-height: auto;
  }

  .intro-system-copy p {
    font-size: 10.5px;
    line-height: 1.18;
  }

  .growth-orbit {
    position: relative;
    height: 112px;
    display: block;
    margin-top: 18px;
    overflow: hidden;
  }

  .growth-orbit li {
    position: absolute;
    inset: 0;
    min-height: 112px;
    padding: 14px;
    opacity: 0;
    transform: translateX(24px) scale(.97);
    animation: growth-card-cycle 12s cubic-bezier(.2, .8, .2, 1) infinite;
  }

  .growth-orbit li:nth-child(2) {
    animation-delay: 3s;
  }

  .growth-orbit li:nth-child(3) {
    animation-delay: 6s;
  }

  .growth-orbit li:nth-child(4) {
    animation-delay: 9s;
  }

  .intro-signal {
    display: none;
  }

  .work {
    --work-card-top: 0px;
    --work-card-height: auto;
    min-height: 2160px;
    padding-top: 44px;
    padding-bottom: 0;
  }

  .work-mobile-stage {
    position: sticky;
    top: 62px;
    z-index: 6;
    display: block;
    height: calc(100svh - 72px);
    min-height: 560px;
  }

  .work-sticky-title {
    position: relative;
    top: auto;
    z-index: 6;
    margin-bottom: 14px;
    padding: 8px 0 10px;
    opacity: clamp(0, calc((.78 - var(--work-progress)) * 10), 1);
  }

  .work-sticky-title .section-kicker {
    padding-inline: 14px;
  }

  .marquee-title,
  .work-sticky-title .marquee-title {
    display: flex;
    width: 100vw;
    margin: 8px calc(50% - 50vw) 0;
    padding-inline: 0;
    overflow: hidden;
  }

  .work-sticky-title .marquee-title span,
  .marquee-title span {
    display: inline-flex;
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: clamp(42px, 12.8vw, 52px);
    line-height: .92;
    animation: drift 16s linear infinite;
  }

  .work-sticky-title .marquee-title span::after,
  .marquee-title span::after {
    display: inline-flex;
  }

  .project-stack {
    position: absolute;
    top: 112px;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 7;
    display: block;
    height: auto;
    min-height: 0;
    margin-top: 0;
    perspective: 900px;
  }

  .project-stack .project-card,
  .project-stack .work-card-1,
  .project-stack .work-card-2,
  .project-stack .work-card-3,
  .project-stack .work-card-4 {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .project-stack .work-card-1 {
    z-index: 4;
    opacity: clamp(0, calc(1 - var(--work-step-1) * 1.18), 1);
    transform: translateY(calc(var(--work-step-1) * -48px)) scale(calc(1 - var(--work-step-1) * .035));
    filter: blur(calc(var(--work-step-1) * 6px));
  }

  .project-stack .work-card-2 {
    z-index: 3;
    opacity: clamp(0, min(calc(var(--work-step-1) * 1.25), calc((1 - var(--work-step-2)) * 1.18)), 1);
    transform: translateY(calc((1 - var(--work-step-1)) * 64px - var(--work-step-2) * 48px)) scale(calc(.95 + var(--work-step-1) * .05 - var(--work-step-2) * .035));
    filter: blur(calc((1 - var(--work-step-1)) * 8px + var(--work-step-2) * 6px));
  }

  .project-stack .work-card-3 {
    z-index: 2;
    opacity: clamp(0, min(calc(var(--work-step-2) * 1.25), calc((1 - var(--work-step-3)) * 1.18)), 1);
    transform: translateY(calc((1 - var(--work-step-2)) * 64px - var(--work-step-3) * 48px)) scale(calc(.95 + var(--work-step-2) * .05 - var(--work-step-3) * .035));
    filter: blur(calc((1 - var(--work-step-2)) * 8px + var(--work-step-3) * 6px));
  }

  .project-stack .work-card-4 {
    z-index: 1;
    opacity: clamp(0, calc(var(--work-step-3) * 1.25), 1);
    transform: translateY(calc((1 - var(--work-step-3)) * 64px)) scale(calc(.95 + var(--work-step-3) * .05));
    filter: blur(calc((1 - var(--work-step-3)) * 8px));
  }

  .project-card {
    min-height: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px 88px;
    border-radius: 18px;
  }

  .project-icon {
    width: 58px;
    height: 58px;
  }

  .project-icon svg {
    width: 31px;
    height: 31px;
  }

  .project-copy h3 {
    margin: 10px 0 12px;
    font-size: clamp(38px, 12vw, 48px);
  }

  .project-copy p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.28;
  }

  .project-meta {
    grid-column: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 10px;
    border-radius: 14px;
  }

  .project-meta span {
    font-size: 8px;
    line-height: 1.15;
  }

  .project-meta strong {
    font-size: 12px;
    line-height: 1.05;
  }

  .project-cta {
    right: 82px;
    bottom: 18px;
    left: 18px;
    min-height: 44px;
    justify-content: center;
    font-size: 10px;
  }

  .work-exit-spacer {
    display: block;
    height: 90px;
  }

  .ticker {
    margin-bottom: 32px;
  }

  .ticker span {
    padding: 10px 15px;
    font-size: 24px;
  }

  .services,
  .testimonials,
  .blog,
  .seo-faq,
  .cta {
    padding: 58px 0;
  }

  .services {
    overflow: clip;
  }

  .services .split-section {
    gap: 24px;
  }

  .services .split-section,
  .services .split-section > *,
  .services .service-visual,
  .services .service-grid {
    min-width: 0;
    max-width: 100%;
  }

  .services .section-copy {
    max-width: 100%;
    font-size: 14.4px;
    line-height: 1.42;
  }

  .services .service-visual {
    width: 100%;
    min-height: 216px;
    margin-top: 24px;
    padding: 16px 12px;
    border-radius: 16px;
  }

  .services .visual-topline span,
  .services .visual-bottomline b {
    font-size: 9px;
  }

  .services .visual-topline strong {
    font-size: 40px;
  }

  .services .funnel-chart {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    height: 94px;
    margin: 17px 0;
  }

  .services .funnel-chart::before {
    bottom: 23px;
  }

  .services .funnel-chart div,
  .services .funnel-chart div:nth-child(2),
  .services .funnel-chart div:nth-child(3),
  .services .funnel-chart div:nth-child(4) {
    min-width: 0;
    padding: 9px 5px;
    border-radius: 11px;
  }

  .services .funnel-chart div {
    min-height: 48px;
  }

  .services .funnel-chart div:nth-child(2) {
    min-height: 61px;
  }

  .services .funnel-chart div:nth-child(3) {
    min-height: 75px;
  }

  .services .funnel-chart div:nth-child(4) {
    min-height: 90px;
  }

  .services .funnel-chart b {
    overflow: hidden;
    font-size: 7px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .services .funnel-chart span {
    margin-top: 4px;
    font-size: clamp(15px, 4.7vw, 19px);
  }

  .mobile-services-scroll {
    position: relative;
    display: block;
    height: 360svh;
    min-width: 0;
  }

  .mobile-services-stage {
    position: sticky;
    top: 76px;
    display: block;
    width: 100%;
    height: min(calc(100svh - 96px), 680px);
    min-height: 500px;
    overflow: hidden;
    border-radius: 18px;
  }

  .section-heading h2,
  .services h2,
  .blog h2,
  .seo-faq h2,
  .cta h2,
  .brands h2 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: .92;
  }

  .service-grid,
  .services .service-grid {
    --service-step-1: 0;
    --service-step-2: 0;
    --service-step-3: 0;
    --service-step-4: 0;
    --service-step-5: 0;
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .services .service-card,
  .services .service-card:nth-child(5),
  .services .service-card:nth-child(6),
  .service-card {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    border-radius: 18px;
    will-change: transform, opacity, filter;
  }

  .services .service-card:nth-child(1) {
    z-index: 6;
    opacity: clamp(0, calc(1 - var(--service-step-1) * 1.16), 1);
    transform: translateX(calc(var(--service-step-1) * -22%));
    filter: blur(calc(var(--service-step-1) * 5px));
  }

  .services .service-card:nth-child(2) {
    z-index: 5;
    opacity: clamp(0, min(calc(var(--service-step-1) * 1.2), calc((1 - var(--service-step-2)) * 1.16)), 1);
    transform: translateX(calc((1 - var(--service-step-1)) * 100% - var(--service-step-2) * 22%));
    filter: blur(calc((1 - var(--service-step-1)) * 7px + var(--service-step-2) * 5px));
  }

  .services .service-card:nth-child(3) {
    z-index: 4;
    opacity: clamp(0, min(calc(var(--service-step-2) * 1.2), calc((1 - var(--service-step-3)) * 1.16)), 1);
    transform: translateX(calc((1 - var(--service-step-2)) * 100% - var(--service-step-3) * 22%));
    filter: blur(calc((1 - var(--service-step-2)) * 7px + var(--service-step-3) * 5px));
  }

  .services .service-card:nth-child(4) {
    z-index: 3;
    opacity: clamp(0, min(calc(var(--service-step-3) * 1.2), calc((1 - var(--service-step-4)) * 1.16)), 1);
    transform: translateX(calc((1 - var(--service-step-3)) * 100% - var(--service-step-4) * 22%));
    filter: blur(calc((1 - var(--service-step-3)) * 7px + var(--service-step-4) * 5px));
  }

  .services .service-card:nth-child(5) {
    z-index: 2;
    opacity: clamp(0, min(calc(var(--service-step-4) * 1.2), calc((1 - var(--service-step-5)) * 1.16)), 1);
    transform: translateX(calc((1 - var(--service-step-4)) * 100% - var(--service-step-5) * 22%));
    filter: blur(calc((1 - var(--service-step-4)) * 7px + var(--service-step-5) * 5px));
  }

  .services .service-card:nth-child(6) {
    z-index: 1;
    opacity: clamp(0, calc(var(--service-step-5) * 1.2), 1);
    transform: translateX(calc((1 - var(--service-step-5)) * 100%));
    filter: blur(calc((1 - var(--service-step-5)) * 7px));
  }

  .services .service-content,
  .services .service-card:nth-child(5) .service-content,
  .services .service-card:nth-child(6) .service-content {
    width: 100%;
    max-width: none;
    padding: 20px 18px 76px;
  }

  .service-grid h3 {
    margin: 58px 0 10px;
    font-size: clamp(28px, 8.6vw, 34px);
    line-height: .98;
  }

  .services .service-card:nth-child(5) h3,
  .services .service-card:nth-child(6) h3 {
    margin-top: 58px;
  }

  .services .service-signals {
    gap: 5px;
    margin-bottom: 10px;
  }

  .services .service-signals b {
    padding: 6px 8px;
    font-size: 9px;
  }

  .services .service-grid p {
    font-size: 13px;
    line-height: 1.32;
  }

  .services .split-section {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .services .split-section > div:first-child {
    display: contents;
  }

  .services .section-kicker {
    order: 1;
  }

  .services h2 {
    order: 2;
    margin-bottom: 22px;
    font-size: clamp(38px, 11.8vw, 48px);
  }

  .mobile-services-carousel {
    order: 3;
    position: relative;
    display: grid;
    gap: 0;
    width: 100vw;
    max-width: none !important;
    margin: 0 calc(50% - 50vw) 28px;
    overflow: hidden;
    padding-block: 10px 18px;
  }

  .mobile-services-carousel::before,
  .mobile-services-carousel::after {
    display: none;
  }

  .service-carousel-row {
    position: relative;
    display: block;
    width: 100%;
    height: 368px;
    padding-inline: 0;
    overflow: visible;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
  }

  .service-carousel-row.is-dragging {
    cursor: grabbing;
  }

  .services .service-carousel-track,
  .services .service-grid.service-carousel-track {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100%;
    height: 356px;
    margin-top: 6px;
    animation: none !important;
    transform: none !important;
    perspective: 900px;
  }

  .services .service-carousel-track .service-card,
  .services .service-carousel-track .service-card:nth-child(n) {
    position: absolute;
    inset: 0 26px;
    width: auto;
    min-height: 348px;
    height: 348px;
    opacity: 1;
    transform: none;
    filter: none;
    border: 0 !important;
    border-radius: 20px !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24) !important;
    animation: none !important;
    transform-origin: 50% 52%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    contain: layout paint;
    will-change: transform, opacity, filter;
    cursor: grab;
    -webkit-user-drag: none;
  }

  .services .service-carousel-track .service-card::after {
    content: "";
    position: absolute;
    inset: -38%;
    z-index: 1;
    border-radius: 42%;
    background:
      radial-gradient(circle at 28% 42%, rgba(93, 142, 255, .75), transparent 42%),
      radial-gradient(circle at 76% 58%, rgba(30, 85, 255, .42), transparent 46%);
    pointer-events: none;
    opacity: calc(.05 + var(--fluid-intensity, 0) * .28);
    transform: translate3d(var(--fluid-shift, 0), 0, 0) rotate(var(--fluid-angle, 0));
    transition: opacity .28s ease, transform .42s cubic-bezier(.2,.82,.22,1);
    animation: none !important;
  }

  .services .service-carousel-track .service-card.is-deck-active {
    box-shadow:
      0 10px 22px rgba(4, 11, 26, .18),
      0 3px 10px rgba(29, 85, 255, .1),
      inset 0 0 0 1px rgba(255, 255, 255, .32) !important;
  }

  .services .service-carousel-track .service-card img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .services .service-carousel-track .service-content,
  .services .service-carousel-row-reverse .service-card:nth-child(2) .service-content,
  .services .service-carousel-row-reverse .service-card:nth-child(3) .service-content {
    max-width: none;
    padding: 22px 20px;
  }

  .services .service-carousel-track h3,
  .services .service-carousel-row-reverse .service-card:nth-child(2) h3,
  .services .service-carousel-row-reverse .service-card:nth-child(3) h3 {
    margin: 12px 0 10px;
    font-size: clamp(28px, 8.4vw, 34px);
    line-height: .94;
  }

  .services .service-carousel-track .service-signals {
    gap: 4px;
    margin-bottom: 10px;
  }

  .services .service-carousel-track .service-signals b {
    padding: 6px 9px;
    font-size: 8px;
  }

  .services .service-carousel-track p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .services .section-copy {
    order: 4;
    margin-top: 0;
    padding-right: 62px;
  }

  .services .service-visual {
    order: 5;
    margin-top: 22px;
  }

  .services > .section-shell:last-child .section-cta {
    margin-top: 26px;
  }

  .why-valoritec.section-shell {
    padding: 66px 0 34px;
  }

  .why-valoritec .why-heading h2 {
    font-size: clamp(36px, 11.5vw, 46px);
    line-height: .9;
  }

  .why-valoritec .why-answer {
    font-size: clamp(24px, 7.4vw, 30px);
    line-height: 1.05;
  }

  .why-valoritec .why-heading > .why-lead {
    font-size: 17px;
    line-height: 1.35;
  }

  .why-comparison {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .compare-card {
    min-height: 290px;
    padding: 22px;
  }

  .compare-vs {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .tech-section .tech-content,
  .tech-content {
    width: calc(100% - 28px);
    padding: 56px 0 58px;
  }

  .tech-copy h3 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .tech-panel {
    padding: 18px;
  }

  .tech-grid {
    gap: 8px;
  }

  .tech-grid span {
    padding-inline: 12px;
    font-size: 12px;
  }

  .industry-section {
    padding: 86px 0 76px;
  }

  .industry-inner {
    gap: 42px;
  }

  .industry-inner h2 {
    font-size: clamp(28px, 9vw, 38px);
    letter-spacing: -0.055em;
  }

  .industry-metrics {
    gap: 12px;
  }

  .industry-metric {
    min-height: 128px;
    padding: 18px 0 0;
  }

  .industry-metric strong {
    font-size: clamp(58px, 18vw, 78px);
  }

  .brands {
    padding: 8px 0 70px;
  }

  .logo-carousel {
    margin-top: 28px;
  }

  .logo-card {
    flex-basis: 178px;
    height: 96px;
  }

  .logo-card img {
    max-width: 128px;
    height: 46px;
  }

  .testimonials.section-shell {
    padding: 64px 0 82px;
  }

  .testimonials .marquee-title span,
  .marquee-title.compact span {
    font-size: clamp(34px, 10.5vw, 40px);
  }

  .testimonial-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .testimonial-pair {
    position: relative;
    inset: auto;
    display: grid;
    gap: 14px;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .testimonial-stack blockquote {
    min-height: auto;
    padding: 22px;
  }

  .testimonial-stack p {
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.06;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog article {
    min-height: auto;
    padding: 14px;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-copy p {
    font-size: 16px;
  }

  .faq-question {
    gap: 12px;
    padding: 18px 16px;
  }

  .faq-question strong {
    font-size: 24px;
    line-height: .98;
  }

  .cta {
    width: calc(100% - 20px);
    min-height: 520px;
    padding: 44px 22px;
  }

  .cta h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .footer.section-shell {
    padding: 72px 22px 86px;
    gap: 26px;
  }

  .footer-logo {
    width: min(250px, 100%);
  }

  .footer-brand p {
    font-size: 16px;
  }

  .lead-modal {
    padding: 12px;
    place-items: center;
  }

  .lead-dialog {
    width: min(100%, 351px);
    min-height: auto;
    max-height: calc(100svh - 24px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 20px;
  }

  .lead-close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
  }

  .lead-dialog-copy {
    min-height: auto;
    padding-right: 38px;
  }

  .lead-dialog-copy h2 {
    margin: 22px 0 10px;
    font-size: clamp(42px, 15vw, 58px);
  }

  .lead-dialog-copy p {
    max-width: 100%;
    font-size: 14px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .lead-form input,
  .lead-form textarea,
  .lead-service-trigger {
    min-height: 50px;
    border-radius: 14px;
    padding: 0 14px;
  }

  .lead-form textarea {
    min-height: 86px;
    padding-top: 13px;
  }

  .lead-service-menu {
    position: relative;
    top: auto;
    max-height: 184px;
    margin-top: 8px;
  }

  .lead-submit {
    min-height: 52px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .bottom-blur {
    height: 104px;
    opacity: .42;
  }
}

@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  .mobile-services-carousel {
    overflow: visible;
  }

  .service-carousel-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-carousel-row::-webkit-scrollbar {
    display: none;
  }

  .service-carousel-row .service-carousel-track {
    animation: none;
  }

  .services .service-carousel-track .service-card {
    animation: none;
    scroll-snap-align: center;
  }

  .services .service-carousel-track .service-card::after {
    animation: none;
  }

  .mobile-services-scroll,
  .mobile-services-stage {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .services .service-grid {
    position: relative;
    inset: auto;
    display: grid;
    height: auto;
    gap: 14px;
  }

  .services .service-card,
  .services .service-card:nth-child(1),
  .services .service-card:nth-child(2),
  .services .service-card:nth-child(3),
  .services .service-card:nth-child(4),
  .services .service-card:nth-child(5),
  .services .service-card:nth-child(6) {
    position: relative;
    inset: auto;
    min-height: 400px;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .work {
    min-height: auto;
    padding-bottom: 54px;
  }

  .work-sticky-title {
    position: relative;
    top: auto;
    opacity: 1;
  }

  .work-mobile-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .work-sticky-title .marquee-title span {
    display: none;
    animation: none;
  }

  .work-sticky-title .marquee-title span:first-child {
    display: inline-flex;
  }

  .project-stack {
    position: relative;
    top: auto;
    display: grid;
    height: auto;
    gap: 16px;
  }

  .project-stack .project-card,
  .project-stack .work-card-1,
  .project-stack .work-card-2,
  .project-stack .work-card-3,
  .project-stack .work-card-4 {
    position: relative;
    inset: auto;
    min-height: 472px;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.bottom-blur {
  transition: opacity .42s ease, transform .42s ease, visibility .42s ease;
}

body.footer-in-view .bottom-blur {
  opacity: 0 !important;
  visibility: hidden;
  transform: translateY(18px);
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

@media (max-width: 430px) {
  .header-actions > .header-cta {
    display: none !important;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 14;
    flex: 0 0 auto;
    display: grid;
    place-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(16, 16, 16, .16);
    border-radius: 50%;
    color: #101010;
    background: rgba(255, 255, 255, .42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 24px rgba(0, 0, 0, .08);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    cursor: pointer;
  }

  .site-header:not(.is-scrolled) .mobile-menu-toggle {
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
    background: rgba(5, 9, 14, .42);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform .36s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, width .3s ease;
  }

  .site-header.is-mobile-menu-open {
    z-index: 95;
    overflow: visible;
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    width: 0;
    opacity: 0;
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 12;
    display: grid;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 22px;
    background:
      radial-gradient(circle at 86% 8%, rgba(255, 255, 255, .82), transparent 30%),
      linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(222, 224, 225, .7)),
      rgba(235, 236, 237, .76);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .94),
      0 24px 64px rgba(3, 16, 27, .25);
    backdrop-filter: blur(30px) saturate(1.65);
    -webkit-backdrop-filter: blur(30px) saturate(1.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.97);
    transform-origin: top center;
    clip-path: inset(0 0 100% 0 round 22px);
    transition:
      opacity .28s ease,
      visibility .28s ease,
      transform .48s cubic-bezier(.22, 1, .36, 1),
      clip-path .52s cubic-bezier(.22, 1, .36, 1);
  }

  .site-header.is-mobile-menu-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 22px);
  }

  .mobile-menu-panel nav {
    display: grid;
    gap: 2px;
  }

  .mobile-menu-panel nav a {
    min-height: 43px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid rgba(16, 16, 16, .1);
    color: #101010;
    font-size: 14px;
    font-weight: 850;
    transition: background-color .28s ease, padding-left .32s cubic-bezier(.22, 1, .36, 1);
  }

  .mobile-menu-panel nav a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-panel nav a:hover,
  .mobile-menu-panel nav a:focus-visible {
    padding-left: 16px;
    border-radius: 12px;
    background: rgba(16, 16, 16, .055);
  }

  .mobile-menu-panel nav a::after {
    content: "↗";
    margin-left: auto;
    color: rgba(16, 16, 16, .42);
    font-size: 12px;
    transform: translateX(0);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), color .3s ease;
  }

  .mobile-menu-panel nav a:hover::after,
  .mobile-menu-panel nav a:focus-visible::after {
    color: #101010;
    transform: translate(2px, -2px);
  }

  .mobile-menu-cta {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border: 1px solid #101010;
    border-radius: 999px;
    color: #fff;
    background: #101010;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .16),
      0 14px 34px rgba(0, 0, 0, .22);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }
}

/* Organic history network, brand-blue CTA and renewed footer. */
.history-constellation {
  top: 14px;
  right: max(0px, calc((100vw - var(--max)) / 2 - 28px));
  width: min(900px, 64vw);
  height: 344px;
  overflow: visible;
  opacity: 1;
  background: none;
  filter: drop-shadow(0 24px 52px rgba(29, 85, 255, .16));
}

.history-constellation::before,
.history-constellation::after {
  content: none;
}

.history-network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.history-flow {
  fill: none;
  stroke: url(#history-flow-gradient);
  stroke-width: 1.7;
  stroke-linecap: round;
  filter: url(#history-flow-glow);
  stroke-dasharray: 18 12 86 16;
  animation: history-flow-travel 11s linear infinite;
}

.history-flow-b {
  stroke-width: 1.2;
  opacity: .7;
  animation-duration: 14s;
  animation-direction: reverse;
}

.history-flow-c {
  opacity: .52;
  animation-duration: 17s;
}

.history-flow-d {
  stroke-width: 1;
  opacity: .44;
  animation-duration: 20s;
  animation-direction: reverse;
}

.history-signal {
  fill: #1d55ff;
  filter: url(#history-flow-glow);
  transform-box: fill-box;
  transform-origin: center;
  animation: history-signal-breathe 3.6s ease-in-out infinite;
}

.signal-b { animation-delay: .7s; }
.signal-c { animation-delay: 1.4s; }

.history-constellation .node-a { top: 82px; left: 112px; }
.history-constellation .node-b { top: 146px; left: 294px; }
.history-constellation .node-c { top: 88px; right: 116px; }
.history-constellation .node-d { right: 32px; bottom: 54px; }
.history-constellation .pill-a { top: 48px; left: 162px; }
.history-constellation .pill-b { top: 132px; right: 92px; }
.history-constellation .pill-c { right: 8px; bottom: 34px; }

@keyframes history-flow-travel {
  to { stroke-dashoffset: -264; }
}

@keyframes history-signal-breathe {
  0%, 100% { opacity: .45; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.45); }
}

.cta {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(112, 160, 255, .65), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(0, 29, 121, .48), transparent 34%),
    #1d55ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 30px 80px rgba(29, 85, 255, .22);
}

.cta .section-kicker {
  color: rgba(255, 255, 255, .7);
}

.cta .pill-button.dark {
  border: 1px solid rgba(255, 255, 255, .82);
  color: #123fb8;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 20, 82, .24);
}

.cta .pill-button.dark:hover {
  color: #fff;
  background: transparent;
}

.footer.section-shell {
  position: relative;
  grid-template-columns: minmax(320px, 1.35fr) minmax(150px, .55fr) minmax(280px, .9fr);
  align-items: start;
  column-gap: clamp(36px, 6vw, 92px);
  row-gap: 52px;
  margin-top: 50px;
  padding: 96px max(72px, calc((100% - var(--max)) / 2)) 34px;
  overflow: hidden;
  border-top: 1px solid rgba(72, 126, 255, .72);
  color: rgba(255, 255, 255, .64);
  background:
    radial-gradient(circle at 92% 10%, rgba(29, 85, 255, .28), transparent 30%),
    radial-gradient(circle at 12% 110%, rgba(29, 85, 255, .16), transparent 34%),
    #050608;
}

.footer.section-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1d55ff, transparent);
  box-shadow: 0 0 32px rgba(29, 85, 255, .85);
}

.footer-brand {
  max-width: 560px;
}

.footer-logo {
  width: min(390px, 100%);
}

.footer-brand p {
  max-width: 500px;
  color: rgba(255, 255, 255, .64);
  font-size: 17px;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0;
}

.footer-nav > span,
.footer-contact > span {
  margin-bottom: 18px;
  color: #6e96ff;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #70a0ff;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .history-constellation {
    top: 20px;
    right: -18px;
    width: min(700px, 78vw);
    height: 304px;
  }

  .footer.section-shell {
    grid-template-columns: 1.1fr .7fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .cta {
    background:
      radial-gradient(circle at 80% 12%, rgba(112, 160, 255, .62), transparent 30%),
      #1d55ff;
  }

  .footer.section-shell {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 10px;
    padding: 66px 20px 26px;
  }

  .footer-logo {
    width: min(300px, 88vw);
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 8px;
  }

  .bottom-blur {
    display: block !important;
    height: 118px;
    opacity: 1;
    background: linear-gradient(to bottom, transparent 0%, rgba(247, 246, 241, .05) 100%);
  }

  .bottom-blur .blur-6 {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .bottom-blur .blur-7 {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .bottom-blur .blur-8 {
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }
}

/* Responsive desktop geometry: stable under OS scaling and browser zoom. */
main,
main > *,
section,
.section-shell,
.hero-grid > *,
.split-section > *,
.section-heading > * {
  min-width: 0;
}

h1,
h2,
h3,
p,
blockquote,
summary {
  overflow-wrap: break-word;
}

@media (min-width: 981px) {
  .hero {
    aspect-ratio: auto;
    min-height: clamp(720px, 100svh, 980px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    justify-content: initial;
    gap: clamp(12px, 2vh, 24px);
    padding: clamp(132px, 16vh, 172px) 0 clamp(28px, 5vh, 52px);
  }

  .hero .eyebrow {
    align-self: end;
    margin-top: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) clamp(290px, 24vw, 360px);
    align-items: center;
    gap: clamp(22px, 3vw, 42px);
    transform: none;
  }

  .hero-grid h1 {
    max-width: min(980px, 100%);
    font-size: clamp(64px, min(7.2vw, 10.8vh), 127px);
    transform: none;
  }

  .hero-card {
    width: 100%;
    min-height: 0;
    height: clamp(320px, 48vh, 430px);
    padding: clamp(16px, 2.4vh, 24px);
  }

  .hero-card .revenue-chart {
    height: clamp(150px, 23vh, 220px);
  }

  .hero-card p {
    font-size: clamp(15px, 2.2vh, 20px);
  }

  .hero > .hero-service-strip {
    position: relative;
    inset: auto;
    width: min(calc(100% - 32px), var(--max));
    margin-inline: auto;
  }

  .hero-service-chip {
    min-height: 0;
    height: clamp(74px, 10.5vh, 92px);
    padding: clamp(9px, 1.4vh, 12px) 14px;
  }

  .hero-service-chip strong {
    font-size: clamp(14px, 1.8vh, 17px);
  }

  .hero-service-chip small {
    font-size: clamp(9px, 1.25vh, 11px);
  }

  .hero-grid > *,
  .intro-strip > *,
  .split-section > *,
  .section-heading > *,
  .why-comparison > *,
  .tech-content > * {
    min-width: 0;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  .site-header:not(.is-scrolled) {
    width: calc(100% - 48px);
    grid-template-columns: minmax(190px, 1fr) auto minmax(225px, 1fr);
    gap: 14px;
  }

  .site-header:not(.is-scrolled) .brand-logo-hero {
    width: clamp(205px, 21vw, 250px);
  }

  .site-header:not(.is-scrolled) .nav-links {
    gap: 14px;
    font-size: 10px;
  }

  .site-header:not(.is-scrolled) .header-actions {
    gap: 8px;
  }

  .site-header:not(.is-scrolled) .header-cta {
    min-height: 38px;
    padding-inline: 15px;
    font-size: 10px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) clamp(280px, 29vw, 330px);
  }
}

/* Full HD notebooks at 125% scaling usually land in this height range. */
@media (min-width: 981px) and (max-height: 820px) {
  .site-header:not(.is-scrolled) {
    top: 14px;
    width: min(calc(100% - 72px), var(--max));
    grid-template-columns: minmax(210px, 1fr) auto minmax(250px, 1fr);
    gap: 16px;
  }

  .site-header:not(.is-scrolled) .brand-logo-hero {
    width: clamp(218px, 18vw, 270px);
  }

  .site-header:not(.is-scrolled) .nav-links {
    gap: 18px;
    font-size: 11px;
  }

  .site-header:not(.is-scrolled) .header-cta {
    min-height: 39px;
    padding-inline: 17px;
    font-size: 11px;
  }

  .hero {
    min-height: max(680px, 100svh);
    gap: 10px;
    padding-top: 116px;
    padding-bottom: 24px;
  }

  .hero-grid h1 {
    font-size: clamp(60px, min(6.84vw, 10.56vh), 92px);
  }

  .hero-card {
    height: clamp(300px, 46vh, 350px);
  }

  .hero-card .revenue-chart {
    height: clamp(136px, 21vh, 172px);
    gap: 6px;
  }

  .hero-card .revenue-chart svg {
    height: 88px;
  }

  .hero-card .revenue-bars {
    height: 34px;
  }

  .hero-service-chip {
    height: 72px;
  }
}

/* Tablet and narrow-window layout remains in normal document flow. */
@media (min-width: 431px) and (max-width: 980px) {
  .hero {
    aspect-ratio: auto;
    min-height: auto;
    display: flex;
    gap: 18px;
    padding: 122px 16px 28px;
    justify-content: flex-start;
  }

  .hero > .eyebrow,
  .hero > .hero-grid,
  .hero > .hero-service-strip {
    width: 100%;
  }

  .hero .eyebrow {
    margin-top: 0;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-grid h1 {
    max-width: 760px;
    font-size: clamp(54px, 10.8vw, 86px);
    transform: none;
  }

  .hero-card {
    width: 100%;
    min-height: 310px;
    height: auto;
  }

  .hero-service-strip,
  .hero > .hero-service-strip {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }
}

/* Mobile lead modal: compact enough to remain fully visible on an iPhone X. */
@media (max-width: 430px) {
  .lead-modal {
    padding:
      max(8px, env(safe-area-inset-top))
      8px
      max(8px, env(safe-area-inset-bottom));
    overflow: hidden;
  }

  .lead-dialog {
    width: min(100%, 359px);
    min-height: 0;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    overflow: visible;
  }

  .lead-close {
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    font-size: 17px;
  }

  .lead-dialog-copy {
    min-height: 0;
    justify-content: flex-start;
    gap: 8px;
    padding-right: 34px;
  }

  .lead-dialog-copy span {
    padding: 6px 9px;
    font-size: 9px;
  }

  .lead-dialog-copy h2 {
    margin: 0;
    max-width: 290px;
    font-size: clamp(32px, 9.2vw, 36px);
    line-height: .92;
    letter-spacing: -0.04em;
  }

  .lead-dialog-copy p {
    max-width: 310px;
    font-size: 11.5px;
    line-height: 1.28;
  }

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
    row-gap: 8px;
  }

  .lead-form label,
  .lead-service-select {
    gap: 4px;
    font-size: 9px;
  }

  .lead-form label:nth-of-type(3),
  .lead-service-select,
  .lead-full,
  .lead-submit {
    grid-column: 1 / -1;
  }

  .lead-service-select > span {
    font-size: 9px;
  }

  .lead-form input,
  .lead-form textarea,
  .lead-service-trigger {
    min-height: 40px;
    border-radius: 12px;
    padding: 0 11px;
    font-size: 16px;
  }

  .lead-form input::placeholder,
  .lead-form textarea::placeholder {
    font-size: 12px;
  }

  .lead-service-trigger strong {
    font-size: 12px;
  }

  .lead-form textarea {
    min-height: 62px;
    height: 62px;
    padding-top: 10px;
    resize: none;
  }

  .lead-service-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    z-index: 20;
    gap: 4px;
    max-height: 166px;
    margin-top: 0;
    padding: 6px;
    border-radius: 14px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .lead-service-menu button {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  .lead-submit {
    min-height: 42px;
    font-size: 11px;
    box-shadow: 0 12px 30px rgba(26, 186, 20, .28);
  }
}

/* Mobile typography and section transitions tuned for 375-430px screens. */
@media (max-width: 430px) {
  .why-valoritec .why-heading > .why-lead {
    font-size: 12px;
    line-height: 1.42;
  }

  .compare-card h3,
  .compare-muted h3,
  .compare-strong h3 {
    font-size: clamp(26px, 8.8vw, 42px);
    line-height: .94;
  }

  .compare-card p,
  .compare-muted p,
  .compare-strong p {
    font-size: 14.4px;
    line-height: 1.4;
  }

  .tech-copy h3 {
    font-size: clamp(32px, 10.4vw, 45px);
    line-height: .94;
  }

  .tech-copy p {
    font-size: 16.2px;
    line-height: 1.43;
  }

  .tech-proof p {
    font-size: 14.4px;
    line-height: 1.42;
  }

  .tech-section::after {
    display: none;
  }

  .tech-section,
  .tech-showcase,
  .story-brands-gradient,
  .industry-section {
    margin-bottom: 0;
  }

  .story-brands-gradient,
  .industry-section {
    margin-top: 0;
  }

  .industry-section {
    border-top: 0;
  }

  .industry-section::after {
    display: none;
  }

  .industry-inner h2,
  #industry-title {
    font-size: clamp(22px, 6.3vw, 27px);
    line-height: 1.06;
  }

  .industry-metric strong {
    font-size: clamp(40px, 12.6vw, 55px);
  }

  .brands-copy h2,
  .brands h2 {
    font-size: clamp(32px, 10.4vw, 46px);
    line-height: .94;
  }

  .brands-copy .section-kicker {
    font-size: 11px;
  }

  .brands-copy::after {
    font-size: 14.4px;
  }

  .testimonial-stack p {
    font-size: clamp(19px, 5.75vw, 24px);
    line-height: 1.1;
  }

  .cta h2,
  #cta-title {
    font-size: clamp(38px, 12vw, 54px);
    line-height: .94;
  }

  .seo-faq h2,
  #faq-title {
    font-size: clamp(32px, 10.4vw, 46px);
    line-height: .94;
  }

  .blog h2,
  #blog-title {
    font-size: clamp(36px, 11.7vw, 52px);
    line-height: .94;
  }
}

@media (min-width: 431px) {
  .mobile-services-carousel,
  .service-carousel-row,
  .services .service-carousel-track {
    display: contents !important;
  }

  .service-carousel-track > [aria-hidden="true"] {
    display: none !important;
  }
}

@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  .services .service-grid.service-carousel-track {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    width: max-content;
    height: auto;
    gap: 12px;
  }

  .services .service-carousel-track .service-card,
  .services .service-carousel-track .service-card:nth-child(n) {
    position: relative;
    inset: auto;
    width: min(74vw, 278px);
    min-height: 204px;
    height: 204px;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
