:root {
  --bg: #070608;
  --bg-soft: #0e0b12;
  --panel: #151019;
  --panel-strong: #1d141f;
  --surface: rgba(18, 13, 21, 0.72);
  --text: #fffaf2;
  --muted: #b9ad9f;
  --line: rgba(255, 177, 61, 0.18);
  --line-cold: rgba(80, 232, 212, 0.18);
  --gold: #ffab2e;
  --orange: #ff6a00;
  --amber: #ffd36f;
  --violet: #8f4cff;
  --cyan: #42e7d7;
  --danger: #ff5f57;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.11), transparent 34rem),
    linear-gradient(135deg, rgba(143, 76, 255, 0.07), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(7, 6, 8, 0.84);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.scroll-stepper {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 18;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transform: translateY(-50%);
}

.scroll-stepper a {
  --step-progress: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 42px;
  height: 12px;
  border-radius: 999px;
  outline-offset: 6px;
}

.scroll-stepper a::before {
  content: "";
  position: absolute;
  right: 0;
  width: 26px;
  height: 3px;
  border-radius: inherit;
  background: rgba(255, 250, 242, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.scroll-stepper a span {
  position: absolute;
  right: 0;
  width: calc(26px * var(--step-progress));
  min-width: 0;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  box-shadow: 0 0 14px rgba(255, 171, 46, 0.18);
  transition: width 120ms linear, box-shadow 180ms ease;
}

.scroll-stepper a.is-complete span,
.scroll-stepper a.is-active span {
  box-shadow: 0 0 18px rgba(255, 171, 46, 0.38);
}

.scroll-stepper a.is-active::before,
.scroll-stepper a:hover::before,
.scroll-stepper a:focus-visible::before {
  width: 34px;
  background: rgba(255, 250, 242, 0.48);
}

.scroll-stepper a.is-active span,
.scroll-stepper a:hover span,
.scroll-stepper a:focus-visible span {
  width: calc(34px * var(--step-progress));
}

.scroll-stepper a::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  right: 46px;
  min-width: max-content;
  padding: 5px 8px;
  border: 1px solid rgba(255, 211, 111, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.84);
  background: rgba(12, 9, 14, 0.84);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(8px, -50%, 0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.scroll-stepper a:hover::after,
.scroll-stepper a:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.nav-shell,
.section-grid {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(255, 106, 0, 0.3));
}

.brand span {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.94rem;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta):focus-visible {
  color: var(--amber);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
}

.nav-cta {
  padding: 0 16px;
  color: #180b00;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.nav-toggle path,
.card-icon path,
.floating-whatsapp path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-band {
  position: relative;
  padding: 96px 0;
}

.section-band.contrast {
  background: linear-gradient(180deg, rgba(255, 171, 46, 0.04), rgba(255, 255, 255, 0.015));
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.hero {
  min-height: 100vh;
}

.hero-layout,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.7fr);
  gap: 56px;
  align-items: center;
}

.cinematic-hero {
  --hero-zoom: 1;
  --hero-shift: 0px;
  --hero-content-opacity: 1;
  --hero-content-shift: 0px;
  --hero-title-reveal: 1;
  --hero-text-reveal: 1;
  --hero-actions-reveal: 1;
  --hero-signals-reveal: 1;
  --hero-data-reveal: 1;
  position: relative;
  isolation: isolate;
  min-height: 168vh;
  padding: 0;
}

.hero-sticky {
  position: sticky;
  top: 0;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 112px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 64% center;
  transform: translate3d(0, var(--hero-shift), 0) scale(var(--hero-zoom));
  transform-origin: 72% 54%;
  filter: saturate(0.98) contrast(1.02);
  transition: transform 80ms linear;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 6, 8, 0.96) 0%, rgba(7, 6, 8, 0.82) 34%, rgba(7, 6, 8, 0.28) 66%, rgba(7, 6, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 6, 8, 0.72) 0%, rgba(7, 6, 8, 0.08) 42%, rgba(7, 6, 8, 0.88) 100%);
}

.hero-data {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--hero-data-reveal);
  transition: opacity 120ms linear;
}

.hero-data::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 21%;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  border: 1px solid rgba(255, 211, 111, 0.22);
  border-radius: 50%;
  opacity: 0.7;
  transform: translate3d(calc(var(--hero-shift) * -0.18), calc(var(--hero-shift) * 0.12), 0);
}

.data-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 211, 111, 0.28);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.84);
  background: rgba(7, 6, 8, 0.34);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 900;
  animation: floatNode 7s ease-in-out infinite;
  pointer-events: none;
}

.node-a {
  right: 34%;
  top: 25%;
}

.node-b {
  right: 12%;
  top: 36%;
  animation-delay: -2s;
}

.node-c {
  right: 26%;
  bottom: 27%;
  animation-delay: -4s;
}

.node-d {
  right: 45%;
  bottom: 42%;
  animation-delay: -1s;
}

.cinematic-copy {
  max-width: 660px;
}

.hero-layout {
  opacity: var(--hero-content-opacity);
  transform: translate3d(0, var(--hero-content-shift), 0);
  transition: opacity 120ms linear, transform 120ms linear;
}

.cinematic-copy h1,
.hero-text,
.hero-actions,
.signal-row {
  will-change: opacity, transform;
}

.cinematic-copy h1 {
  opacity: var(--hero-title-reveal);
  transform: translate3d(0, calc((1 - var(--hero-title-reveal)) * 28px), 0);
}

.dia-text-reveal {
  position: relative;
  display: block;
  transform: translateY(-2px);
  color: transparent;
  background: linear-gradient(90deg, var(--text), var(--text));
  background-size: 100% 100%;
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cinematic-hero.is-motion-ready {
  --hero-text-reveal: 0;
  --hero-actions-reveal: 0;
  --hero-signals-reveal: 0;
  --hero-data-reveal: 0;
}

.hero-text {
  opacity: var(--hero-text-reveal);
  transform: translate3d(0, calc((1 - var(--hero-text-reveal)) * 28px), 0);
}

.hero-actions {
  opacity: var(--hero-actions-reveal);
  transform: translate3d(0, calc((1 - var(--hero-actions-reveal)) * 28px), 0);
}

.signal-row {
  opacity: var(--hero-signals-reveal);
  transform: translate3d(0, calc((1 - var(--hero-signals-reveal)) * 28px), 0);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: 3.25rem;
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
}

.text-reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 520ms ease,
    filter 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--text-reveal-delay, 0ms);
}

.text-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

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

.button {
  min-width: 190px;
  padding: 0 20px;
  border: 1px solid transparent;
}

.button-primary {
  color: #180b00;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 42px rgba(255, 106, 0, 0.25);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button,
.nav-cta,
.nav-links a {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 590px;
  margin: 0;
  border-block: 1px solid var(--line);
  background: rgba(7, 6, 8, 0.18);
  backdrop-filter: blur(16px);
}

.signal-row div {
  min-height: 78px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.signal-row div:last-child {
  border-right: 0;
}

.signal-row dt {
  margin-bottom: 4px;
  color: var(--amber);
  font-size: 1.18rem;
  font-weight: 900;
}

.signal-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-intel {
  width: min(100%, 420px);
  justify-self: end;
  align-self: end;
  margin-bottom: 10px;
  padding: 0;
}

.intel-map {
  position: relative;
  min-height: 380px;
  overflow: visible;
}

.intel-map::before,
.intel-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 211, 111, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.intel-map::after {
  width: 190px;
  height: 190px;
  border-color: rgba(66, 231, 215, 0.16);
}

.intel-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 211, 111, 0.18);
  border-radius: 50%;
  background: rgba(7, 6, 8, 0.34);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px rgba(255, 106, 0, 0.18);
  transform: translate(-50%, -50%);
}

.intel-core img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(255, 106, 0, 0.38));
}

.intel-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 6, 8, 0.38);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  animation: floatNode 6s ease-in-out infinite;
  pointer-events: none;
}

.chip-ads {
  left: 20px;
  top: 72px;
}

.chip-copy {
  right: 14px;
  top: 110px;
  animation-delay: -1.5s;
}

.chip-ai {
  left: 48px;
  bottom: 88px;
  animation-delay: -3s;
}

.chip-scale {
  right: 54px;
  bottom: 54px;
  animation-delay: -4.5s;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber);
  animation: scrollCue 1.7s ease-in-out infinite;
}

@keyframes floatNode {
  0%, 100% {
    transform: translate3d(var(--evade-x, 0px), var(--evade-y, 0px), 0);
  }

  50% {
    transform: translate3d(var(--evade-x, 0px), calc(var(--evade-y, 0px) - 9px), 0);
  }
}

@keyframes networkDrift {
  0%, 100% {
    transform: translate3d(-8px, 0, 0) scale(1.01);
  }

  50% {
    transform: translate3d(8px, -10px, 0) scale(1.015);
  }
}

@keyframes networkGlow {
  0%, 100% {
    opacity: 0.78;
    transform: translate3d(-1%, 1%, 0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate3d(1%, -1%, 0) scale(1.04);
  }
}

@keyframes networkLinePulse {
  0%, 100% {
    opacity: 0.28;
  }

  50% {
    opacity: 0.44;
  }
}

@keyframes networkDotPulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }

  40%, 70% {
    opacity: 1;
  }

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--amber);
  background: rgba(255, 171, 46, 0.12);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.infra-item strong {
  display: block;
  margin-bottom: 6px;
}

.info-card p,
.service-card p,
.infra-item p,
.timeline p,
.method-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.card-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.problem-section {
  --flow-progress: 0;
  position: relative;
  isolation: isolate;
  min-height: 155vh;
  padding: 0;
  background: linear-gradient(180deg, rgba(7, 6, 8, 0.98), rgba(14, 10, 17, 0.94));
}

.problem-network {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
  transform: translateX(-50%);
}

.problem-network::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 171, 46, 0.18), transparent 24%),
    radial-gradient(circle at 74% 56%, rgba(66, 231, 215, 0.12), transparent 28%);
  filter: blur(34px);
  animation: networkGlow 16s ease-in-out infinite;
}

.problem-network svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  animation: networkDrift 22s ease-in-out infinite;
  will-change: transform;
}

.problem-network path {
  fill: none;
  stroke: url(#problemNetworkStroke);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.34;
  animation: networkLinePulse 11s ease-in-out infinite;
}

.problem-network path:nth-of-type(2n) {
  animation-delay: -3.8s;
}

.problem-network path:nth-of-type(3n) {
  animation-delay: -6.2s;
}

.problem-network circle {
  fill: rgba(66, 231, 215, 0.29);
  filter: drop-shadow(0 0 10px rgba(66, 231, 215, 0.17));
  transform-box: fill-box;
  transform-origin: center;
  animation: networkDotPulse 7s ease-in-out infinite;
}

.problem-network circle:nth-of-type(3n) {
  animation-delay: -1.8s;
}

.problem-network circle:nth-of-type(4n) {
  animation-delay: -3.6s;
}

.problem-section > .section-grid {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 112px 0 88px;
}

.problem-section .section-heading,
.problem-flow {
  position: relative;
  z-index: 1;
}

.problem-flow {
  gap: 28px;
  padding-top: 12px;
}

.problem-flow::before,
.problem-flow::after {
  content: "";
  position: absolute;
  left: calc(16.666% + 21px);
  right: calc(16.666% + 21px);
  top: 55px;
  height: 2px;
  pointer-events: none;
  z-index: 0;
}

.problem-flow::before {
  display: none;
}

.problem-flow::after {
  right: auto;
  width: calc((100% - (33.333% + 42px)) * var(--flow-progress));
  background: linear-gradient(90deg, var(--orange), var(--amber), rgba(66, 231, 215, 0.8));
  box-shadow: 0 0 28px rgba(255, 171, 46, 0.28);
}

.problem-card {
  position: relative;
  z-index: 1;
  transition:
    filter 320ms ease,
    transform 320ms ease,
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.is-motion-ready .problem-card {
  visibility: hidden;
  filter: saturate(0.62);
  transform: translate3d(0, 26px, 0);
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 171, 46, 0.12), transparent 45%);
}

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

.problem-card.is-lit {
  visibility: visible;
  filter: saturate(1);
  transform: translate3d(0, 0, 0);
  border-color: rgba(255, 211, 111, 0.36);
  background: #120d15;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), 0 0 34px rgba(255, 106, 0, 0.1);
}

.problem-card.is-lit .card-icon {
  color: #180b00;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 0 26px rgba(255, 106, 0, 0.28);
}

.info-card,
.service-card,
.infra-panel,
.timeline li,
.method-step,
.cta-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.16);
}

.info-card,
.service-card {
  min-height: 218px;
  padding: 24px;
}

.info-card .card-icon {
  margin-bottom: 22px;
}

.service-grid {
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 111, 0.62), rgba(66, 231, 215, 0.28), transparent);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 211, 111, 0.12);
  border-left: 0;
  border-right: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: none;
}

.service-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 211, 111, 0.42);
  border-radius: 50%;
  color: #180b00;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.solution-section {
  --solution-1: 1;
  --solution-2: 1;
  --solution-3: 1;
  --solution-4: 1;
  --solution-complete: 1;
  --solution-highlight: 1;
  position: relative;
  isolation: isolate;
  min-height: 300vh;
  padding: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 106, 0, 0.12), transparent 32%),
    radial-gradient(circle at 72% 48%, rgba(66, 231, 215, 0.07), transparent 26%),
    radial-gradient(circle at 28% 58%, rgba(255, 211, 111, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(14, 10, 17, 0.98), rgba(7, 6, 8, 0.99));
}

.section-band.contrast.solution-section {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 106, 0, 0.12), transparent 32%),
    radial-gradient(circle at 72% 48%, rgba(66, 231, 215, 0.07), transparent 26%),
    radial-gradient(circle at 28% 58%, rgba(255, 211, 111, 0.06), transparent 30%),
    linear-gradient(180deg, #0e0a11, #070608);
}

.is-motion-ready .solution-section {
  --solution-1: 0;
  --solution-2: 0;
  --solution-3: 0;
  --solution-4: 0;
  --solution-complete: 0;
  --solution-highlight: 0;
}

.solution-stage {
  position: sticky;
  top: -224px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 104px 0 78px;
}

.solution-architecture {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-architecture::before,
.solution-architecture::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.solution-architecture::before {
  width: min(54vw, 660px);
  height: min(32vw, 390px);
  border: 1px solid rgba(255, 211, 111, 0.12);
  box-shadow:
    inset 0 0 46px rgba(255, 171, 46, 0.035),
    0 0 56px rgba(255, 106, 0, 0.055);
}

.solution-architecture::after {
  width: min(41vw, 500px);
  height: min(24vw, 290px);
  border: 1px solid rgba(66, 231, 215, 0.1);
  transform: translate(-50%, -50%) rotate(16deg);
  box-shadow:
    inset 0 0 34px rgba(66, 231, 215, 0.028),
    0 0 42px rgba(66, 231, 215, 0.04);
}

.solution-bg-badges {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
}

.solution-bg-badges::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  border: 1px solid rgba(255, 211, 111, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.solution-bg-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 211, 111, 0.22);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.72);
  background: rgba(7, 6, 8, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  animation: floatNode 7s ease-in-out infinite;
  pointer-events: none;
}

.solution-bg-seo {
  left: 42%;
  top: 4%;
}

.solution-bg-ia {
  right: 11%;
  top: 34%;
  animation-delay: -2.2s;
}

.solution-bg-crm {
  left: 47%;
  bottom: 8%;
  animation-delay: -4.2s;
}

.solution-bg-ads {
  left: 5%;
  bottom: 42%;
  animation-delay: -1.4s;
}

.solution-bg-acquisition {
  left: 30%;
  top: 27%;
  animation-delay: -3.4s;
}

.solution-bg-conversion {
  right: 29%;
  top: 31%;
  animation-delay: -0.8s;
}

.solution-bg-automation {
  left: 28%;
  bottom: 29%;
  animation-delay: -5.2s;
}

.solution-bg-scale {
  right: 24%;
  bottom: 14%;
  animation-delay: -2.8s;
}

.solution-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 210px;
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 211, 111, 0.24);
  border-radius: 8px;
  background: #080609;
  box-shadow:
    0 0 calc(44px + (var(--solution-complete) * 22px)) rgba(255, 106, 0, calc(0.1 + (var(--solution-complete) * 0.12))),
    inset 0 0 28px rgba(255, 171, 46, calc(0.04 + (var(--solution-complete) * 0.06)));
  transform: translate(-50%, -50%);
}

.solution-core img {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(255, 106, 0, 0.38));
}

.solution-core strong,
.solution-core span {
  position: relative;
  z-index: 1;
  display: block;
}

.solution-core strong {
  margin-top: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.15;
}

.solution-core span {
  color: var(--muted);
  font-size: 0.78rem;
}

.solution-graphics {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.solution-graphics svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.solution-conn-line {
  fill: none;
  stroke: rgba(255, 171, 46, 0.85);
  stroke-width: 3px;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.solution-conn-line.line-1 {
  stroke-dasharray: 209;
  stroke-dashoffset: calc(209 - (209 * var(--solution-1)));
}
.solution-conn-line.line-2 {
  stroke-dasharray: 331;
  stroke-dashoffset: calc(331 - (331 * var(--solution-2)));
}
.solution-conn-line.line-3 {
  stroke-dasharray: 444;
  stroke-dashoffset: calc(444 - (444 * var(--solution-3)));
}
.solution-conn-line.line-4 {
  stroke-dasharray: 216;
  stroke-dashoffset: calc(216 - (216 * var(--solution-4)));
}

.pyr-outline {
  fill: rgba(255, 171, 46, 0.04);
  stroke: rgba(255, 171, 46, 0.8);
  stroke-width: 3px;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
}

.pyr-level {
  fill: none;
  stroke: rgba(255, 171, 46, 0.6);
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
  transition: filter 0.3s ease, stroke-width 0.3s ease, stroke 0.3s ease;
}

/* Light up the pyramid levels when the corresponding line connects (i.e. var reaches 1) */
.solution-section[style*="--solution-1: 1"] .pyr-level-1 { stroke-width: 4px; stroke: rgba(255, 171, 46, 1); filter: drop-shadow(0 0 12px rgba(255, 171, 46, 0.85)); }
.solution-section[style*="--solution-2: 1"] .pyr-level-2 { stroke-width: 4px; stroke: rgba(255, 171, 46, 1); filter: drop-shadow(0 0 12px rgba(255, 171, 46, 0.85)); }
.solution-section[style*="--solution-3: 1"] .pyr-level-3 { stroke-width: 4px; stroke: rgba(255, 171, 46, 1); filter: drop-shadow(0 0 12px rgba(255, 171, 46, 0.85)); }
.solution-section[style*="--solution-4: 1"] .pyr-level-4 { stroke-width: 4px; stroke: rgba(255, 171, 46, 1); filter: drop-shadow(0 0 12px rgba(255, 171, 46, 0.85)); }

.solution-modules-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.solution-module {
  position: absolute;
  pointer-events: auto;
  z-index: 2;
  width: 29%;
  height: 130px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 211, 111, 0.16);
  border-radius: 8px;
  background: #120d15;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
  transition:
    visibility 0ms linear 260ms,
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
  
  /* Flex layout to split number and content horizontally */
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.is-motion-ready .solution-module {
  visibility: hidden;
  transform: translate3d(0, 24px, 0);
}

.solution-module.is-lit {
  visibility: visible;
  transform: translate3d(0, 0, 0);
  border-color: rgba(255, 211, 111, 0.38);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3), 0 0 34px rgba(255, 106, 0, 0.12);
  transition-delay: 0ms;
}

.solution-module > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #180b00;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
  font-size: 0.85rem;
}

.module-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.module-body h3 {
  margin: 0 0 2px 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.module-result {
  display: block;
  margin: 0 0 6px 0;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.solution-module p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.solution-signature {
  position: absolute;
  left: 84.5%;
  top: 90.5%;
  z-index: 4;
  margin: 0;
  min-width: 260px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  color: var(--amber);
  font-weight: 900;
  transform: translate3d(-50%, calc((1 - var(--solution-complete)) * 18px), 0);
  opacity: var(--solution-complete);
  text-align: center;
}

.solution-highlight {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.solution-highlight::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -7px;
  z-index: -1;
  height: 13px;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg width='260' height='26' viewBox='0 0 260 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 15.5C41.8 8.8 84.9 8.2 124.5 11.2C170.7 14.7 211.1 12.9 254 7.8' stroke='%23FFD36F' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 19.8C53.3 14.1 91.6 16.6 132.2 18.4C174.2 20.3 212.6 17.2 249 13.3' stroke='%23FF6A00' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' opacity='0.58'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.24));
  opacity: calc(0.18 + (var(--solution-highlight) * 0.82));
  transform: scaleX(var(--solution-highlight)) rotate(-0.8deg);
  transform-origin: left center;
}

.module-acquisition {
  left: 33%;
  top: 3%;
}

.module-conversion {
  left: 17%;
  top: 27%;
}

.module-automation {
  left: 2%;
  top: 51%;
}

.module-scale {
  left: 21%;
  top: 75%;
}

.infra-section {
  --infra-progress: 0;
  --infra-glow: 0;
  --infra-head-reveal: 1;
  --infra-core-reveal: 1;
  min-height: 215vh;
  padding: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 171, 46, 0.08), transparent 27%),
    radial-gradient(circle at 82% 42%, rgba(66, 231, 215, 0.075), transparent 28%),
    linear-gradient(180deg, #070608, #100b13 48%, #070608);
}

.infra-section::before {
  content: "";
  position: absolute;
  inset: 13% -10% auto;
  height: 420px;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 12%, rgba(255, 211, 111, 0.11), transparent 44%),
    linear-gradient(65deg, transparent 28%, rgba(66, 231, 215, 0.1), transparent 68%);
  filter: blur(46px);
  opacity: calc(0.22 + (var(--infra-glow) * 0.28));
}

.is-motion-ready .infra-section {
  --infra-head-reveal: 0;
  --infra-core-reveal: 0;
}

.infra-stage {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 96px 0 72px;
}

.infra-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(540px, 0.94fr);
  gap: clamp(48px, 5.6vw, 76px);
  align-items: center;
}

.infra-copy {
  max-width: 520px;
}

.infra-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.infra-kpis > span {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 211, 111, 0.12);
  border-radius: 8px;
  background: rgba(18, 13, 21, 0.58);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  opacity: calc(0.22 + (var(--infra-glow) * 0.78));
  transform: translate3d(0, calc((1 - var(--infra-glow)) * 14px), 0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.infra-kpis strong,
.infra-kpis small {
  display: block;
}

.infra-kpis strong {
  color: var(--amber);
  font-size: 0.98rem;
}

.infra-kpis small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.infra-console {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 650px);
  min-height: 548px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.infra-console::before {
  content: none;
  position: absolute;
  inset: 74px 8% 34px;
  z-index: 0;
  border: 1px solid rgba(66, 231, 215, 0.08);
  border-radius: 50%;
  transform: rotate(-10deg) scaleX(1.14);
  box-shadow: inset 0 0 48px rgba(66, 231, 215, 0.035);
  pointer-events: none;
}

.infra-console::after {
  content: none;
  position: absolute;
  left: 54px;
  top: 184px;
  bottom: 58px;
  z-index: 0;
  width: 2px;
  border-radius: 999px;
  background: rgba(255, 211, 111, 0.08);
  box-shadow: 0 0 22px rgba(255, 171, 46, 0.08);
}

.infra-core-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 320px);
  min-height: 86px;
  margin: 0 auto 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 211, 111, 0.2);
  border-radius: 8px;
  background: #080609;
  box-shadow:
    0 0 calc(28px + (var(--infra-glow) * 24px)) rgba(255, 106, 0, calc(0.08 + (var(--infra-glow) * 0.1))),
    inset 0 0 24px rgba(255, 171, 46, 0.04);
  opacity: var(--infra-core-reveal);
  transform: translate3d(0, calc((1 - var(--infra-core-reveal)) * 18px), 0);
}

.infra-core-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(255, 106, 0, 0.34));
}

.infra-core-card span,
.infra-core-card strong {
  display: block;
}

.infra-core-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.infra-core-card strong {
  color: var(--text);
  font-size: 1rem;
}

.infra-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.infra-stack::before,
.infra-stack::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 22px;
  bottom: 22px;
  z-index: 0;
  width: 2px;
  border-radius: 999px;
}

.infra-stack::before {
  background: rgba(255, 211, 111, 0.08);
}

.infra-stack::after {
  background: linear-gradient(180deg, var(--amber), rgba(66, 231, 215, 0.78));
  box-shadow: 0 0 24px rgba(66, 231, 215, 0.18);
  transform: scaleY(var(--infra-progress));
  transform-origin: top center;
}

.infra-layer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 94px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 211, 111, 0.1);
  border-radius: 8px;
  background: rgba(18, 13, 21, 0.74);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.14);
  opacity: 1;
  filter: saturate(0.84);
  transform: translate3d(18px, 0, 0);
  transition:
    visibility 0ms linear 260ms,
    opacity 300ms ease,
    filter 300ms ease,
    transform 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.is-motion-ready .infra-layer {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(22px, 18px, 0);
}

.infra-layer > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 211, 111, 0.18);
  border-radius: 50%;
  color: rgba(255, 250, 242, 0.68);
  background: #0b080d;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 0 0 6px #0b080d;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.infra-layer strong,
.infra-layer p,
.infra-layer small {
  display: block;
}

.infra-layer strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.98rem;
}

.infra-layer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.infra-layer small {
  justify-self: end;
  min-width: 112px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 211, 111, 0.22);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(255, 171, 46, 0.06);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.infra-layer.is-live {
  visibility: visible;
  opacity: 1;
  filter: saturate(1);
  transform: translate3d(0, 0, 0);
  border-color: rgba(66, 231, 215, 0.26);
  background: rgba(18, 13, 21, 0.96);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22), 0 0 22px rgba(66, 231, 215, 0.07);
  transition-delay: 0ms;
}

.infra-layer.is-live > span {
  color: #180b00;
  border-color: transparent;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 0 0 6px #0b080d, 0 0 24px rgba(255, 106, 0, 0.28);
}

.performance-section {
  --performance-progress: 0;
  --performance-glow: 0;
  position: relative;
  min-height: 245vh;
  padding: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(66, 231, 215, 0.08), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 106, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #070608, #0c090f 52%, #070608);
}

.particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: calc(0.1 + (var(--performance-glow) * 0.22));
  mix-blend-mode: screen;
  mask-image:
    radial-gradient(circle at 34% 48%, #000 0 34%, transparent 68%),
    radial-gradient(circle at 78% 42%, #000 0 30%, transparent 66%);
}

.performance-section::before {
  content: "";
  position: absolute;
  inset: 12% 0 auto;
  height: 360px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(66, 231, 215, 0.08), rgba(255, 211, 111, 0.08), transparent);
  filter: blur(42px);
  opacity: 0.46;
}

.performance-stage {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 96px 0 70px;
}

.performance-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 18px;
}

.performance-copy {
  align-self: center;
  max-width: 620px;
}

.hyper-text {
  display: inline;
  color: inherit;
  font: inherit;
  font-style: inherit;
  white-space: nowrap;
  transition: color 160ms ease, text-shadow 160ms ease, filter 160ms ease;
}

.hyper-text.is-scrambling {
  color: var(--amber);
  filter: saturate(1.12);
  text-shadow:
    0 0 18px rgba(255, 106, 0, 0.32),
    0 0 26px rgba(66, 231, 215, 0.12);
}

.hyper-text.has-scrambled {
  color: var(--amber);
}

.performance-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.performance-dashboard {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 211, 111, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    #0b080d;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26), 0 0 54px rgba(66, 231, 215, 0.04);
}

.performance-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 211, 111, 0.08), transparent 22%, transparent 78%, rgba(66, 231, 215, 0.07)),
    radial-gradient(circle at 48% 38%, rgba(66, 231, 215, 0.11), transparent 22%);
}

.metric-strip,
.funnel-track {
  position: relative;
  z-index: 1;
}

.metric-strip div > span,
.funnel-step > span {
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.metric-strip div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-strip strong {
  display: block;
  margin: 4px 0 10px;
  color: var(--amber);
  font-size: 1rem;
}

.metric-strip i {
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-strip i::after {
  content: "";
  display: block;
  width: var(--metric-size);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  box-shadow: 0 0 18px rgba(66, 231, 215, 0.18);
  transform: scaleX(var(--performance-glow));
  transform-origin: left center;
}

.funnel-track {
  --funnel-dot-x: 21px;
  --funnel-line-width: calc(80% + 6.4px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.funnel-track::before,
.funnel-track::after {
  content: "";
  position: absolute;
  left: var(--funnel-dot-x);
  top: 24px;
  height: 2px;
  pointer-events: none;
}

.funnel-track::before {
  right: auto;
  width: var(--funnel-line-width);
  background: rgba(255, 255, 255, 0.07);
}

.funnel-track::after {
  right: auto;
  width: var(--funnel-line-width);
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  box-shadow: 0 0 24px rgba(66, 231, 215, 0.24);
  transform: scaleX(var(--performance-progress));
  transform-origin: left center;
}

.funnel-step {
  position: relative;
  padding: 52px 12px 14px;
  border: 1px solid rgba(255, 211, 111, 0.1);
  border-radius: 8px;
  background: rgba(18, 13, 21, 0.78);
  transform: translate3d(0, 12px, 0);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.funnel-step::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 14px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 211, 111, 0.18);
  border-radius: 50%;
  background: #0b080d;
  box-shadow: 0 0 0 6px #0b080d;
}

.funnel-step.is-live {
  border-color: rgba(66, 231, 215, 0.28);
  background: rgba(18, 13, 21, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24), 0 0 24px rgba(66, 231, 215, 0.08);
  transform: translate3d(0, 0, 0);
}

.funnel-step.is-live::before {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 0 6px #0b080d, 0 0 22px rgba(66, 231, 215, 0.34);
}

.funnel-step strong {
  display: block;
  margin: 4px 0 6px;
  color: var(--text);
  font-size: 0.96rem;
}

.funnel-step span,
.funnel-step strong,
.funnel-step p {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.funnel-step strong {
  transition-delay: 70ms;
}

.funnel-step p {
  transition-delay: 130ms;
}

.funnel-step.is-live span,
.funnel-step.is-live strong,
.funnel-step.is-live p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.funnel-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.performance-channel-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 16px;
  opacity: var(--performance-glow);
  transform: translate3d(0, 0, 0);
}

.performance-channel-strip > span {
  display: grid;
  gap: 2px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(255, 211, 111, 0.12);
  border-radius: 8px;
  background: rgba(18, 13, 21, 0.56);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.performance-channel-strip strong {
  color: var(--amber);
  font-size: 0.86rem;
}

.performance-channel-strip small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.infra-item {
  padding: 20px;
  border-radius: 8px;
}

.infra-item + .infra-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.infra-item strong {
  color: var(--amber);
}







.method-section {
  --method-route: 0;
  --method-1: 0;
  --method-2: 0;
  --method-3: 0;
  --method-4: 0;
  min-height: 380vh;
  padding: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 171, 46, 0.1), transparent 28%),
    radial-gradient(circle at 80% 74%, rgba(66, 231, 215, 0.08), transparent 30%),
    linear-gradient(180deg, #070608, #100a12 46%, #070608);
}

.method-section::before {
  inset: 4% -10% auto;
  height: 520px;
  background:
    linear-gradient(112deg, transparent 14%, rgba(255, 211, 111, 0.13), transparent 46%),
    linear-gradient(64deg, transparent 34%, rgba(66, 231, 215, 0.12), transparent 72%);
  opacity: calc(0.12 + (var(--method-glow) * 0.34));
}

.method-stage {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  height: 100vh;
  width: min(1560px, calc(100% - 48px));
  padding: 0;
  margin: 0 auto;
}

.method-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: visible;
}

.method-copy {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 35px auto 0;
  text-align: center;
}

.method-copy h2 {
  max-width: 820px;
  margin-inline: auto;
}

.method-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
}

/* ── Timeline board ── */

.method-board {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: visible;
}

.method-board .text-reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

/* ── Serpentine SVG ── */

.method-route {
  position: absolute;
  left: 24px;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 1;
  overflow: visible;
  opacity: var(--method-route);
}

.method-route path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.method-route-base {
  stroke: rgba(255, 250, 242, 0.18);
  stroke-width: 3.2;
}

.method-route-active {
  stroke: url(#methodRouteGradient);
  stroke-width: 5.2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(255, 211, 111, 0.28)) drop-shadow(0 0 18px rgba(66, 231, 215, 0.16));
}

/* ── Nodes on the serpentine ── */

.method-board .method-node {
  position: absolute;
  z-index: 3;
  width: clamp(18px, 2.1vw, 30px);
  height: clamp(18px, 2.1vw, 30px);
  border-radius: 50%;
  background: #fffaf2;
  box-shadow:
    0 0 0 7px #0b080d,
    0 0 24px rgba(255, 211, 111, 0.34),
    0 0 38px rgba(66, 231, 215, 0.12);
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    opacity 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease,
    background-color 300ms ease;
}

/* Hover dourado interativo nas bolinhas */
.method-board .method-node:hover {
  background: var(--amber);
  box-shadow:
    0 0 0 7px #0b080d,
    0 0 32px var(--amber),
    0 0 46px rgba(255, 171, 46, 0.45);
  transform: translate(-50%, -50%) scale(1.22) !important;
}

/* Hover nos cards ativa o brilho dourado nas bolinhas correspondentes */
.method-board:has(.method-step-map:hover) .node-map {
  background: var(--amber);
  box-shadow:
    0 0 0 7px #0b080d,
    0 0 32px var(--amber),
    0 0 46px rgba(255, 171, 46, 0.45);
  transform: translate(-50%, -50%) scale(1.22) !important;
}

.method-board:has(.method-step-design:hover) .node-design {
  background: var(--amber);
  box-shadow:
    0 0 0 7px #0b080d,
    0 0 32px var(--amber),
    0 0 46px rgba(255, 171, 46, 0.45);
  transform: translate(-50%, -50%) scale(1.22) !important;
}

.method-board:has(.method-step-execute:hover) .node-execute {
  background: var(--amber);
  box-shadow:
    0 0 0 7px #0b080d,
    0 0 32px var(--amber),
    0 0 46px rgba(255, 171, 46, 0.45);
  transform: translate(-50%, -50%) scale(1.22) !important;
}

.method-board:has(.method-step-optimize:hover) .node-optimize {
  background: var(--amber);
  box-shadow:
    0 0 0 7px #0b080d,
    0 0 32px var(--amber),
    0 0 46px rgba(255, 171, 46, 0.45);
  transform: translate(-50%, -50%) scale(1.22) !important;
}

.method-board .node-map {
  top: 40%;
  left: 33px;
  opacity: var(--method-1, 0);
  transform: translate(-50%, -50%) scale(calc(0.72 + (var(--method-1, 0) * 0.28)));
}

.method-board .node-design {
  top: 52%;
  left: 75px;
  opacity: var(--method-2, 0);
  transform: translate(-50%, -50%) scale(calc(0.72 + (var(--method-2, 0) * 0.28)));
}

.method-board .node-execute {
  top: 64%;
  left: 33px;
  opacity: var(--method-3, 0);
  transform: translate(-50%, -50%) scale(calc(0.72 + (var(--method-3, 0) * 0.28)));
}

.method-board .node-optimize {
  top: 76%;
  left: 75px;
  opacity: var(--method-4, 0);
  transform: translate(-50%, -50%) scale(calc(0.72 + (var(--method-4, 0) * 0.28)));
}

/* ── Horizontal rails ── */

.method-rails {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.method-rail {
  position: absolute;
  height: 2.5px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0);
  overflow: hidden;
}

.method-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #fffaf2, var(--amber), var(--cyan));
  box-shadow: 0 0 18px rgba(66, 231, 215, 0.18);
  transform: scaleX(0);
  transform-origin: left center;
}

.rail-map {
  top: 40%;
  left: 33px;
  width: calc(20% - 33px);
  background: rgba(255, 250, 242, calc(0.14 * var(--method-1, 0)));
}
.rail-map::after {
  transform: scaleX(var(--method-1, 0));
}

.rail-design {
  top: 52%;
  left: 75px;
  width: calc(52% - 75px);
  background: rgba(255, 250, 242, calc(0.14 * var(--method-2, 0)));
}
.rail-design::after {
  transform: scaleX(var(--method-2, 0));
}

.rail-execute {
  top: 64%;
  left: 33px;
  width: calc(24% - 33px);
  background: rgba(255, 250, 242, calc(0.14 * var(--method-3, 0)));
}
.rail-execute::after {
  transform: scaleX(var(--method-3, 0));
}

.rail-optimize {
  top: 76%;
  left: 75px;
  width: calc(54% - 75px);
  background: rgba(255, 250, 242, calc(0.14 * var(--method-4, 0)));
}
.rail-optimize::after {
  transform: scaleX(var(--method-4, 0));
}

/* ── Cards grid (orbit) ── */

.method-orbit {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}

.method-orbit .method-step {
  --step-enter-x: 0px;
  --step-enter-y: 0px;
  position: absolute;
  width: clamp(280px, 32vw, 380px);
  min-height: 120px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 211, 111, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 171, 46, 0.1), rgba(66, 231, 215, 0.035)),
    rgba(15, 10, 17, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  visibility: hidden;
  opacity: 0;
  filter: blur(8px) saturate(0.76);
  transform: translate3d(var(--step-enter-x), -50%, 0) scale(0.96);
  transition:
    visibility 0ms linear 320ms,
    opacity 340ms ease,
    filter 340ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;

  /* Grid layout to align number on the left and content on the right */
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 8px;
  align-content: center;
  align-items: start;
}

.method-orbit .method-step.is-live {
  visibility: visible;
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translate3d(0, -50%, 0) scale(1);
  border-color: rgba(255, 211, 111, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32), 0 0 30px rgba(255, 106, 0, 0.1);
  transition-delay: 0ms;
}

@media (hover: hover) and (pointer: fine) {
  .method-orbit .method-step.is-live:hover {
    cursor: pointer;
    border-color: rgba(255, 211, 111, 0.62);
    background:
      linear-gradient(135deg, rgba(255, 171, 46, 0.16), rgba(66, 231, 215, 0.07)),
      rgba(22, 15, 26, 0.92);
    transform: translate3d(0, -50%, 0) scale(1.02);
    box-shadow: 
      0 28px 74px rgba(0, 0, 0, 0.42), 
      0 0 36px rgba(255, 171, 46, 0.22),
      0 0 24px rgba(66, 231, 215, 0.1);
  }

  .method-orbit .method-step.is-live:hover > span {
    border-color: rgba(255, 211, 111, 0.6);
    box-shadow: 0 0 0 7px #0b080d, 0 0 28px var(--amber);
  }
}

/* Zigzag positioning: odd=center-left, even=right */
.method-step-map {
  --step-enter-x: -60px;
  left: 20%;
  top: 40%;
}

.method-step-design {
  --step-enter-x: 60px;
  left: 52%;
  top: 52%;
}

.method-step-execute {
  --step-enter-x: -60px;
  left: 24%;
  top: 64%;
}

.method-step-optimize {
  --step-enter-x: 60px;
  left: 54%;
  top: 76%;
}

.method-orbit .method-step > span {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(255, 211, 111, 0.18);
  border-radius: 50%;
  color: #180b00;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 0 7px #0b080d, 0 0 24px rgba(255, 106, 0, 0.2);
}

.method-orbit .method-step small {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 211, 111, 0.22);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(255, 171, 46, 0.06);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-orbit .method-step strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  margin: 0;
  padding-right: 76px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.25;
}

.method-orbit .method-step p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

/* ── Signature at the bottom of the serpentine ── */

.method-board .method-signature {
  position: absolute;
  left: 20%;
  top: 81%;
  bottom: auto;
  z-index: 5;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 211, 111, 0.24);
  border-radius: 8px;
  color: var(--amber);
  background: rgba(8, 6, 10, 0.88);
  box-shadow: 0 0 calc(26px + (var(--method-complete) * 26px)) rgba(255, 106, 0, calc(0.05 + (var(--method-complete) * 0.12)));
  font-weight: 900;
  opacity: var(--method-complete);
  transform: translate3d(0, calc((1 - var(--method-complete)) * 16px), 0);
  transition: opacity 300ms ease, transform 300ms ease;
}

.final-cta {
  padding: 112px 0 104px;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 106, 0, 0.13), transparent 30%),
    radial-gradient(circle at 82% 45%, rgba(66, 231, 215, 0.07), transparent 28%),
    linear-gradient(180deg, #070608, #0d090f 58%, #050405);
}

.cta-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 132px 1fr minmax(240px, auto);
  gap: 30px;
  align-items: center;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 171, 46, 0.12), rgba(66, 231, 215, 0.045)),
    linear-gradient(180deg, rgba(18, 13, 21, 0.96), rgba(8, 6, 10, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 0 36px rgba(255, 171, 46, 0.035);
}

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

.cta-shell::before {
  inset: -40% auto auto -12%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 211, 111, 0.1);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 106, 0, 0.08), 0 0 70px rgba(255, 106, 0, 0.06);
}

.cta-shell::after {
  inset: auto -10% -62% auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(66, 231, 215, 0.08);
  border-radius: 50%;
}

.cta-mark,
.cta-content,
.cta-action {
  position: relative;
  z-index: 1;
}

.cta-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 211, 111, 0.18);
  border-radius: 8px;
  background: #080609;
  box-shadow: 0 0 44px rgba(255, 106, 0, 0.14), inset 0 0 24px rgba(255, 171, 46, 0.04);
}

.cta-mark img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(255, 106, 0, 0.38));
}

.cta-shell h2 {
  margin-bottom: 12px;
  font-size: 2.25rem;
  max-width: 720px;
}

.cta-shell p {
  margin-bottom: 0;
  max-width: 680px;
}

.cta-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
  margin-top: 22px;
}

.cta-path span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 211, 111, 0.13);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(8, 6, 10, 0.52);
  font-size: 0.86rem;
  font-weight: 800;
}

.cta-path strong {
  color: var(--amber);
  font-size: 0.82rem;
}

.cta-action {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.cta-action span {
  justify-self: start;
  padding: 8px 11px;
  border: 1px solid rgba(255, 211, 111, 0.22);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(255, 171, 46, 0.06);
  font-size: 0.76rem;
  font-weight: 900;
}

.cta-action .button {
  min-height: 54px;
  padding-inline: 22px;
  white-space: nowrap;
  box-shadow: 0 16px 42px rgba(255, 106, 0, 0.28);
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050405;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  max-width: 560px;
  margin: 0;
  font-size: 0.95rem;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #0b080d;
  background: var(--amber);
  box-shadow: 0 14px 38px rgba(255, 171, 46, 0.35);
  transition:
    background-color 250ms ease,
    color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.floating-whatsapp:hover {
  color: white;
  background-color: #25d366;
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.45);
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
}

.floating-whatsapp path:last-child {
  fill: currentColor;
  stroke: none;
}

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  [role="button"],
  input,
  textarea,
  select,
  .button,
  .floating-whatsapp {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M6.3 4.9 25.8 14.7 17.4 17.5 14.6 26.1 6.3 4.9Z' fill='%23ffab2e' stroke='%23fffaf2' stroke-width='0.8' stroke-linejoin='round'/%3E%3Cpath d='M9.2 8.4 21.2 14.3 15.8 16.1 14.1 21.7 9.2 8.4Z' fill='%23ffd36f' fill-opacity='0.55'/%3E%3C/svg%3E") 6 5, auto;
  }
}

@media (max-width: 980px) {
  .scroll-stepper {
    display: none;
  }

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

  .cinematic-hero {
    min-height: 158vh;
    padding: 0;
  }

  .hero-sticky {
    padding: 120px 0 64px;
  }

  .hero-bg {
    transform-origin: 72% 46%;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.08rem;
  }

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

  .problem-section {
    min-height: 150vh;
  }

  .problem-network {
    opacity: 0.12;
  }

  .problem-section > .section-grid {
    padding: 104px 0 72px;
  }

  .problem-flow {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 20px;
  }

  .problem-flow::before,
  .problem-flow::after {
    left: 41px;
    right: auto;
    top: 34px;
    width: 2px;
    height: calc(100% - 68px);
  }

  .problem-flow::after {
    height: calc((100% - 68px) * var(--flow-progress));
  }

  .service-grid {
    gap: 16px;
  }

  .service-grid::before {
    display: none;
  }

  .service-card {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.16);
  }

  .performance-shell {
    grid-template-columns: 1fr;
  }

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

  .performance-channel-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .infra-section {
    min-height: 205vh;
  }

  .infra-stage {
    padding: 92px 0 70px;
  }

  .infra-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .infra-console {
    min-height: 520px;
  }

  .method-section {
    min-height: 340vh;
  }

  .method-stage {
    width: min(100% - 32px, 1120px);
    padding: 0;
  }

  .method-shell {
    gap: 28px;
    padding: 92px 0 70px;
  }

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

  .method-orbit .method-step {
    width: clamp(260px, 52%, 420px);
  }

  .method-step-map {
    margin-left: 16%;
  }

  .method-step-design {
    margin-left: 38%;
  }

  .method-step-execute {
    margin-left: 18%;
  }

  .method-step-optimize {
    margin-left: 36%;
  }

  .rail-map {
    width: calc(16% - 54px);
  }

  .rail-design {
    width: calc(38% - 54px);
  }

  .rail-execute {
    width: calc(18% - 54px);
  }

  .rail-optimize {
    width: calc(36% - 54px);
  }

  .funnel-track {
    grid-template-columns: repeat(5, minmax(126px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .solution-section {
    min-height: 280vh;
  }

  .solution-stage {
    top: -224px;
    padding: 100px 0 72px;
  }

  .solution-architecture {
    min-height: 640px;
  }



  .cta-shell {
    grid-template-columns: 96px 1fr;
  }

  .cta-action {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .cta-shell .button {
    width: max-content;
  }

  .hero-intel {
    justify-self: start;
    align-self: start;
    margin-bottom: 0;
  }
}

@media (max-width: 740px) {
  .nav-shell,
  .section-grid {
    width: min(100% - 28px, 1120px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 74px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(14, 11, 18, 0.97);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 14px;
    border-radius: 6px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .section-band {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

  .cinematic-hero {
    min-height: 150vh;
    padding: 0;
  }

  .hero-sticky {
    padding: 104px 0 56px;
  }

  .hero-bg {
    height: 100%;
    object-position: 69% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 6, 8, 0.94), rgba(7, 6, 8, 0.68)),
      linear-gradient(180deg, rgba(7, 6, 8, 0.58), rgba(7, 6, 8, 0.86));
  }

  .hero-data {
    display: none;
  }

  .hero-layout {
    gap: 26px;
  }

  .hero-intel {
    width: 100%;
    padding: 0;
  }

  .intel-map {
    min-height: 280px;
  }

  .intel-core {
    width: 88px;
    height: 88px;
  }

  .intel-core img {
    width: 68px;
    height: 68px;
  }

  .intel-chip {
    min-height: 30px;
    font-size: 0.76rem;
  }

  .chip-ads {
    left: 10px;
    top: 42px;
  }

  .chip-copy {
    right: 8px;
    top: 72px;
  }

  .chip-ai {
    left: 18px;
    bottom: 62px;
  }

  .chip-scale {
    right: 20px;
    bottom: 42px;
  }

  .scroll-cue {
    display: none;
  }

  .section-band {
    padding: 72px 0;
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-text,
  .section-heading p,
  .final-cta p,
  .site-footer p {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-row,
  .card-grid.three,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .problem-section {
    min-height: 150vh;
  }

  .problem-network {
    opacity: 0.08;
  }

  .problem-section > .section-grid {
    padding: 96px 0 64px;
  }

  .problem-flow {
    padding-left: 14px;
  }

  .problem-flow::before,
  .problem-flow::after {
    left: 35px;
  }

  .performance-section {
    min-height: auto;
    padding: 0;
  }

  .performance-stage {
    position: relative;
    min-height: auto;
    padding: 72px 0;
  }

  .performance-shell {
    gap: 18px;
  }

  .performance-dashboard {
    padding: 16px;
  }

  .metric-strip,
  .funnel-track {
    grid-template-columns: 1fr;
  }

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

  .funnel-track {
    overflow: visible;
    padding-bottom: 0;
  }

  .funnel-track::before,
  .funnel-track::after {
    left: 21px;
    right: auto;
    top: 22px;
    width: 2px;
    height: calc(100% - 44px);
  }

  .funnel-track::after {
    height: calc(100% - 44px);
    transform: scaleY(var(--performance-progress));
    transform-origin: top center;
  }

  .funnel-step {
    min-height: auto;
    padding: 18px 18px 18px 54px;
  }

  .funnel-step::before {
    top: 22px;
    left: 15px;
  }

  .performance-channel-strip > span {
    min-height: 60px;
  }

  .infra-section {
    min-height: auto;
    padding: 0;
  }

  .infra-stage {
    position: relative;
    min-height: auto;
    padding: 72px 0;
  }

  .infra-kpis {
    grid-template-columns: 1fr;
  }

  .infra-console {
    min-height: auto;
    padding: 14px;
  }

  .infra-console::before {
    inset: 86px -8% 40px;
  }

  .infra-console::after {
    left: 42px;
    top: 178px;
    bottom: 50px;
  }

  .infra-core-card {
    width: 100%;
  }

  .infra-stack::before,
  .infra-stack::after {
    left: 27px;
  }

  .infra-layer {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px;
    transform: translate3d(0, 14px, 0);
  }

  .infra-layer small {
    grid-column: 2;
    justify-self: start;
  }

  .method-section {
    min-height: auto;
    padding: 0;
  }

  .method-stage {
    position: relative;
    min-height: auto;
    padding: 72px 0;
  }

  .method-step {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    padding: 14px;
    transform: translate3d(0, 14px, 0);
  }

  .method-step small {
    position: static;
    display: inline-flex;
    width: max-content;
    margin-top: 12px;
  }

  .method-board {
    position: relative;
    margin-top: 48px;
    min-height: auto;
    padding: 0;
  }

  .method-route,
  .method-node,
  .method-rails {
    display: none;
  }

  .method-orbit {
    position: relative;
    display: grid;
    grid-template-rows: auto;
    gap: 12px;
    min-height: auto;
  }

  .method-orbit .method-step {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-left: 0;
    min-height: auto;
    visibility: visible;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .method-board .method-signature {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 14px;
    opacity: 1;
    transform: none;
  }

  .solution-section {
    min-height: 214vh;
  }

  .solution-stage {
    top: 0;
    padding: 88px 0 56px;
  }

  .solution-architecture {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }

  .solution-architecture::before,
  .solution-architecture::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 132px;
    z-index: 0;
    width: 2px;
    height: calc(100% - 158px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    pointer-events: none;
  }

  .solution-architecture::before {
    background: rgba(255, 211, 111, 0.08);
  }

  .solution-architecture::after {
    height: calc((100% - 158px) * var(--solution-4));
    background: linear-gradient(180deg, var(--amber), rgba(66, 231, 215, 0.72));
    box-shadow: 0 0 24px rgba(255, 171, 46, 0.24);
  }

  .solution-core {
    width: min(100%, 280px);
    min-height: 76px;
    margin: 0 auto 8px;
    padding: 12px 14px;
    transform: none;
  }

  .solution-core img {
    width: 52px;
    height: 52px;
  }

  .solution-line {
    display: none;
  }

  .solution-graphics {
    display: none;
  }

  .solution-bg-badges {
    display: none;
  }

  .solution-modules-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    pointer-events: auto;
  }

  .solution-module {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 16px;
    margin-left: 0 !important;
  }

  .solution-signature {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 8px;
    min-width: 0;
    width: 100%;
    transform: translate3d(0, calc((1 - var(--solution-complete)) * 18px), 0);
  }


  .signal-row {
    border: 1px solid var(--line);
  }

  .signal-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-row div:last-child {
    border-bottom: 0;
  }

  .info-card,
  .service-card,
  .timeline li {
    min-height: auto;
  }

  .cta-shell {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cta-mark {
    width: 92px;
    height: 92px;
  }

  .cta-mark img {
    width: 68px;
    height: 68px;
  }

  .cta-shell h2 {
    font-size: 1.65rem;
  }

  .cta-path {
    grid-template-columns: 1fr;
  }

  .cta-action,
  .cta-action .button {
    width: 100%;
  }

  .cta-action span {
    justify-self: start;
  }

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

  .footer-grid p {
    text-align: left;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-hero {
    --hero-title-reveal: 1 !important;
    --hero-text-reveal: 1 !important;
    --hero-actions-reveal: 1 !important;
    --hero-signals-reveal: 1 !important;
    --hero-data-reveal: 1 !important;
  }

  .dia-text-reveal {
    color: var(--text);
    background: none;
    -webkit-text-fill-color: var(--text);
    filter: none;
    animation: none;
  }

  .problem-section {
    --flow-progress: 1 !important;
  }

  .solution-section {
    --solution-1: 1 !important;
    --solution-2: 1 !important;
    --solution-3: 1 !important;
    --solution-4: 1 !important;
    --solution-complete: 1 !important;
    --solution-highlight: 1 !important;
  }

  .performance-section {
    --performance-progress: 1 !important;
    --performance-glow: 1 !important;
  }

  .infra-section {
    --infra-progress: 1 !important;
    --infra-glow: 1 !important;
    --infra-head-reveal: 1 !important;
    --infra-core-reveal: 1 !important;
  }

  .method-section {
    --method-glow: 1 !important;
    --method-complete: 1 !important;
    --method-route: 1 !important;
    --method-1: 1 !important;
    --method-2: 1 !important;
    --method-3: 1 !important;
    --method-4: 1 !important;
  }

  .problem-card,
  .solution-module,
  .funnel-step,
  .funnel-step span,
  .funnel-step strong,
  .funnel-step p,
  .infra-layer,
  .method-step,
  .text-reveal {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .problem-network::before,
  .problem-network svg,
  .problem-network path,
  .problem-network circle {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
