:root {
  --bg: #071018;
  --bg-deep: #03070b;
  --surface: #0d1922;
  --surface-2: #13232e;
  --ink: #f6fbff;
  --muted: #98a9b5;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #18d8ff;
  --blue: #1a8cff;
  --orange: #ff9e45;
  --green: #6be675;
  --violet: #9b82ff;
  --header-h: 84px;
  --shell: min(1200px, calc(100vw - 64px));
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--cyan);
  color: #021017;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.shell {
  margin-inline: auto;
  width: var(--shell);
}

.section {
  padding: 130px 0;
  position: relative;
}

.scroll-progress {
  background: rgba(255, 255, 255, 0.06);
  height: 2px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.scroll-progress span {
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  display: block;
  height: 100%;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 15, 0.52);
  border-bottom: 1px solid transparent;
  display: grid;
  gap: 34px;
  grid-template-columns: auto 1fr auto;
  height: var(--header-h);
  left: 0;
  padding: 0 max(32px, calc((100vw - 1200px) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: background .25s ease, border-color .25s ease, height .25s ease;
  z-index: 100;
}

.site-header.scrolled {
  background: rgba(4, 10, 15, 0.88);
  border-color: var(--line);
  height: 70px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  border-radius: 7px;
  height: 38px;
  width: 38px;
}

.brand .brand-logo {
  border-radius: 0;
  height: auto;
  width: 150px;
}

.brand > span {
  display: grid;
  line-height: .92;
}

.brand b {
  font-size: 18px;
  letter-spacing: -.04em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
  margin-top: 5px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
}

.site-nav a {
  color: #b6c3cb;
  font-size: 13px;
  font-weight: 650;
  position: relative;
  transition: color .2s ease;
}

.site-nav a::after {
  background: var(--cyan);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  align-items: center;
  border: 1px solid rgba(255, 158, 69, .48);
  border-radius: 999px;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 9px;
  padding: 11px 16px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-cta:hover {
  background: rgba(255, 158, 69, .1);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
}

.hero {
  align-items: flex-start;
  background:
    radial-gradient(circle at 52% 52%, rgba(17, 52, 69, .34), transparent 42%),
    linear-gradient(135deg, #07131c 0%, #050b10 55%, #0d1216 100%);
  display: flex;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
}

#hero-canvas,
.hero-grid,
.hero-glow {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

#hero-canvas {
  height: 100%;
  opacity: .68;
  width: 100%;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 35%, transparent 92%);
  transform: perspective(500px) rotateX(62deg) scale(1.5) translateY(28%);
  transform-origin: bottom;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(100px);
  height: 360px;
  opacity: .13;
  width: 360px;
}

.glow-a {
  background: var(--cyan);
  left: 62%;
  top: 20%;
}

.glow-b {
  background: var(--orange);
  left: 8%;
  top: 70%;
}

.hero-content {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  min-height: auto;
  padding-bottom: 70px;
  padding-top: calc(var(--header-h) + 50px);
  position: relative;
  top: auto;
  z-index: 2;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  opacity: calc(1 - var(--hero-progress, 0) * .34);
  transform: translate3d(0, calc(var(--hero-progress, 0) * -32px), 0);
  transition: opacity .08s linear;
}

.kicker,
.section-index {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(58px, 6vw, 92px);
  letter-spacing: -.065em;
  line-height: .9;
  margin: 0;
  max-width: 760px;
  width: 100%;
}

.hero h1 span {
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, var(--cyan) 0%, #75e6f8 38%, var(--orange) 76%, #ffd0a4 100%);
  background-clip: text;
  color: transparent;
  display: block;
  font-weight: 500;
}

.hero-lead {
  color: #b8c7d0;
  font-size: 18px;
  line-height: 1.65;
  margin: 32px 0 0;
  max-width: 610px;
}

.hero-actions,
.reports-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 16px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: box-shadow .25s ease, transform .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--cyan);
  box-shadow: 0 16px 40px rgba(24, 216, 255, .16);
  color: #021017;
}

.button-primary:hover {
  box-shadow: 0 18px 54px rgba(24, 216, 255, .28);
}

.button-ghost {
  border-color: var(--line);
  color: #d5e0e6;
}

.button-ghost:hover {
  background: rgba(255,255,255,.06);
}

.hero-proof {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-top: 42px;
}

.hero-proof strong {
  font-size: 22px;
  min-width: max-content;
}

.hero-proof span {
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  max-width: 220px;
  padding-left: 18px;
}

.hero-visual {
  aspect-ratio: 1;
  perspective: 1200px;
  position: relative;
  transform-style: preserve-3d;
}

.hero-scene {
  inset: 0;
  position: absolute;
  transform:
    translate3d(0, calc(var(--hero-progress, 0) * -34px), 0)
    rotateX(calc(var(--hero-progress, 0) * 7deg))
    rotateY(calc(var(--hero-progress, 0) * -13deg))
    scale(calc(1 + var(--hero-progress, 0) * .08));
  transform-style: preserve-3d;
  transition: opacity .65s var(--ease), transform .08s linear, visibility .65s;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero-slide:not(.is-active) * {
  animation-play-state: paused !important;
}

.hero-carousel-controls {
  align-items: center;
  bottom: 2%;
  display: flex;
  gap: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 12;
}

.carousel-arrow {
  align-items: center;
  background: rgba(7, 20, 28, .82);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #dce8ee;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  height: 34px;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  width: 34px;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: rgba(24,216,255,.12);
  border-color: rgba(24,216,255,.6);
  transform: translateY(-2px);
}

.carousel-dots {
  align-items: center;
  display: flex;
  gap: 7px;
}

.carousel-dots button {
  background: rgba(255,255,255,.28);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  height: 6px;
  padding: 0;
  transition: background .25s ease, width .25s var(--ease);
  width: 6px;
}

.carousel-dots button[aria-current="true"] {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(24,216,255,.5);
  width: 24px;
}

.hero-carousel-label {
  color: #93a7b3;
  font-size: 9px;
  letter-spacing: .12em;
  margin-left: 4px;
  min-width: 118px;
  text-transform: uppercase;
}

.automation-shell,
.insight-shell {
  inset: 3%;
  position: absolute;
  transform-style: preserve-3d;
}

.scene-heading {
  display: grid;
  gap: 6px;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 5%;
  transform: translateX(-50%);
  width: max-content;
  z-index: 8;
}

.scene-heading span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.scene-heading strong {
  color: #eef8fc;
  font-size: 18px;
  letter-spacing: -.025em;
}

.report-stack {
  height: 410px;
  left: 50%;
  perspective: 1000px;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  width: 330px;
}

.report-sheet {
  background: linear-gradient(145deg, rgba(23,43,54,.97), rgba(7,16,23,.98));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  box-shadow: 0 35px 70px rgba(0,0,0,.35);
  height: 330px;
  left: 45px;
  overflow: hidden;
  padding: 25px;
  position: absolute;
  top: 35px;
  width: 240px;
}

.report-sheet-back {
  opacity: .3;
  transform: rotateY(-13deg) translate3d(-88px, 18px, -100px);
}

.report-sheet-mid {
  opacity: .55;
  transform: rotateY(11deg) translate3d(80px, 7px, -55px);
}

.report-sheet-front {
  animation: report-float 5s ease-in-out infinite;
  border-color: rgba(24,216,255,.32);
  transform: translateZ(55px);
  z-index: 3;
}

.report-sheet-back i,
.report-sheet-mid i {
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  display: block;
  height: 7px;
  margin-bottom: 17px;
}

.report-sheet-back i:nth-child(2),
.report-sheet-mid i:nth-child(2) { width: 72%; }

.report-sheet-back i:nth-child(3),
.report-sheet-mid i:nth-child(3) { height: 130px; margin-top: 32px; width: 100%; }

.sheet-brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.sheet-brand b {
  align-items: center;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  border-radius: 8px;
  color: #061018;
  display: flex;
  font-size: 11px;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.sheet-brand span {
  color: #d7e5eb;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.sheet-chart {
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: 10px;
  height: 122px;
  margin-top: 27px;
  padding: 0 8px 10px;
}

.sheet-chart i {
  animation: chart-breathe 2.8s ease-in-out infinite alternate;
  background: linear-gradient(to top, rgba(24,216,255,.2), var(--cyan));
  border-radius: 4px 4px 0 0;
  display: block;
  height: 38%;
  width: 25px;
}

.sheet-chart i:nth-child(2) { animation-delay: -.5s; height: 64%; }
.sheet-chart i:nth-child(3) { animation-delay: -1s; background: linear-gradient(to top, rgba(255,158,69,.2), var(--orange)); height: 46%; }
.sheet-chart i:nth-child(4) { animation-delay: -1.5s; height: 85%; }
.sheet-chart i:nth-child(5) { animation-delay: -2s; height: 72%; }

.sheet-lines { margin-top: 22px; }

.sheet-lines i {
  background: rgba(255,255,255,.1);
  border-radius: 99px;
  display: block;
  height: 5px;
  margin-top: 10px;
}

.sheet-lines i:nth-child(2) { width: 82%; }
.sheet-lines i:nth-child(3) { width: 58%; }

.sheet-status {
  align-items: center;
  bottom: 20px;
  color: #9ed9c2;
  display: flex;
  font-size: 9px;
  gap: 7px;
  position: absolute;
}

.sheet-status span {
  animation: status-pulse 1.5s ease-in-out infinite;
  background: #6be675;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.automation-flow {
  height: 60%;
  left: 50%;
  position: absolute;
  top: 18%;
  transform: translateX(-50%);
  width: 88%;
  z-index: -1;
}

.automation-flow::before,
.automation-flow::after {
  border: 1px solid rgba(24,216,255,.14);
  border-radius: 50%;
  content: "";
  inset: 10% 0;
  position: absolute;
}

.automation-flow::after {
  border-color: rgba(255,158,69,.12);
  inset: 22% 8%;
  transform: rotate(24deg);
}

.automation-flow i {
  animation: flow-particle 4s linear infinite;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
  height: 7px;
  left: 3%;
  position: absolute;
  top: 50%;
  width: 7px;
}

.automation-flow i:nth-child(2) { animation-delay: -.8s; color: var(--orange); }
.automation-flow i:nth-child(3) { animation-delay: -1.6s; }
.automation-flow i:nth-child(4) { animation-delay: -2.4s; color: var(--orange); }
.automation-flow i:nth-child(5) { animation-delay: -3.2s; }

.automation-stages {
  bottom: 10%;
  display: flex;
  justify-content: space-between;
  left: 3%;
  position: absolute;
  right: 3%;
}

.automation-stages span {
  align-items: center;
  color: #91a5b0;
  display: flex;
  font-size: 9px;
  gap: 7px;
  text-transform: uppercase;
}

.automation-stages i {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(24,216,255,.55);
  height: 6px;
  width: 6px;
}

.insight-radar {
  border: 1px solid rgba(24,216,255,.16);
  border-radius: 50%;
  height: 380px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%);
  width: 380px;
}

.radar-ring {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { height: 110px; width: 110px; }
.ring-two { height: 220px; width: 220px; }
.ring-three { height: 330px; width: 330px; }

.insight-radar::before,
.insight-radar::after {
  background: rgba(255,255,255,.08);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.insight-radar::before { height: 1px; width: 100%; }
.insight-radar::after { height: 100%; width: 1px; }

.radar-sweep {
  animation: radar-spin 4.5s linear infinite;
  background: conic-gradient(from 0deg, transparent 0 72%, rgba(24,216,255,.22) 92%, rgba(24,216,255,.6));
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.insight-core {
  align-content: center;
  background: rgba(6,19,27,.94);
  border: 1px solid rgba(255,158,69,.45);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(255,158,69,.12);
  display: grid;
  height: 130px;
  justify-items: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  z-index: 4;
}

.insight-core small {
  color: #91a6b2;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.insight-core strong {
  color: var(--orange);
  font-size: 25px;
  letter-spacing: -.04em;
}

.radar-point {
  animation: radar-pulse 1.8s ease-in-out infinite;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cyan);
  height: 8px;
  position: absolute;
  width: 8px;
  z-index: 3;
}

.point-one { left: 23%; top: 32%; }
.point-two { animation-delay: -.6s; background: var(--orange); box-shadow: 0 0 18px var(--orange); right: 18%; top: 44%; }
.point-three { animation-delay: -1.2s; bottom: 19%; left: 42%; }

.insight-card {
  background: rgba(7,20,28,.88);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  display: grid;
  gap: 5px;
  min-width: 128px;
  padding: 14px 16px;
  position: absolute;
  z-index: 6;
}

.insight-card span {
  color: #8398a4;
  font-size: 9px;
  text-transform: uppercase;
}

.insight-card strong { color: #e5f1f6; font-size: 13px; }

.insight-card i {
  background: linear-gradient(90deg, var(--cyan), transparent);
  display: block;
  height: 2px;
  margin-top: 5px;
  width: 72%;
}

.insight-card-a { animation: card-float 4.7s ease-in-out infinite; left: 1%; top: 24%; }
.insight-card-b { animation: card-float 5.3s ease-in-out -1.7s infinite; right: 0; top: 40%; }
.insight-card-c { animation: card-float 5s ease-in-out -.8s infinite; bottom: 13%; left: 8%; }

@keyframes report-float {
  0%,100% { transform: translate3d(0, 0, 55px) rotateX(0); }
  50% { transform: translate3d(0, -10px, 72px) rotateX(2deg); }
}

@keyframes chart-breathe {
  from { filter: brightness(.8); transform: scaleY(.82); transform-origin: bottom; }
  to { filter: brightness(1.25); transform: scaleY(1.05); transform-origin: bottom; }
}

@keyframes status-pulse { 50% { box-shadow: 0 0 14px #6be675; opacity: .55; } }

@keyframes flow-particle {
  0% { opacity: 0; transform: translate(0, 85px) scale(.5); }
  15%,80% { opacity: 1; }
  100% { opacity: 0; transform: translate(510px, -85px) scale(1.2); }
}

@keyframes radar-spin { to { transform: rotate(360deg); } }
@keyframes radar-pulse { 50% { opacity: .42; transform: scale(1.8); } }
@keyframes card-float { 50% { transform: translateY(-10px); } }
}

.market-chart {
  bottom: 3%;
  height: 48%;
  left: 2%;
  opacity: calc(.26 + var(--hero-progress, 0) * .64);
  position: absolute;
  transform: rotateX(55deg) rotateZ(-8deg) translateZ(-35px);
  transform-origin: center bottom;
  width: 94%;
  z-index: 1;
}

.market-chart svg {
  height: 100%;
  overflow: visible;
  width: 100%;
}

.chart-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 3%;
  position: absolute;
  right: 3%;
  top: -26px;
}

.chart-meta span {
  color: #78909d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.chart-meta strong {
  color: var(--orange);
  font-size: 13px;
}

.chart-grid path {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 1;
}

.chart-area {
  fill: url("#chart-gradient");
  opacity: calc(.08 + var(--hero-progress, 0) * .24);
}

.chart-line {
  fill: none;
  filter: drop-shadow(0 0 8px rgba(24,216,255,.62));
  stroke: var(--cyan);
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--hero-progress, 0));
  stroke-linecap: round;
  stroke-width: 4;
}

.chart-points circle {
  fill: var(--orange);
  opacity: var(--hero-progress, 0);
  stroke: #071018;
  stroke-width: 3;
  transform: scale(var(--hero-progress, 0));
  transform-box: fill-box;
  transform-origin: center;
}

.data-core {
  align-content: center;
  background: linear-gradient(145deg, rgba(18, 45, 58, .94), rgba(5, 12, 18, .95));
  border: 1px solid rgba(24, 216, 255, .45);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(24,216,255,.1), 0 0 80px rgba(24,216,255,.12);
  display: grid;
  height: 250px;
  justify-items: center;
  left: 50%;
  position: absolute;
  top: 46%;
  transform: translate(-50%, -50%) translateZ(80px);
  width: 250px;
  z-index: 3;
}

.data-core::before,
.data-core::after {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  content: "";
  inset: 18px;
  position: absolute;
}

.data-core::after {
  border-color: transparent var(--orange) transparent var(--cyan);
  inset: -8px;
  animation: spin 12s linear infinite;
}

.core-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.data-core strong {
  font-size: 58px;
  letter-spacing: -.07em;
  line-height: .8;
}

.data-core small {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: .24em;
}

.data-orbit {
  border: 1px solid rgba(24,216,255,.22);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 46%;
  transform-style: preserve-3d;
}

.data-orbit::after {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan);
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  top: -4px;
  width: 8px;
}

.orbit-one {
  height: 430px;
  transform: translate(-50%, -50%) rotateX(67deg) rotateZ(calc(14deg + var(--page-progress, 0) * 130deg));
  width: 430px;
}

.orbit-two {
  border-color: rgba(255,158,69,.18);
  height: 540px;
  transform: translate(-50%, -50%) rotateY(67deg) rotateZ(calc(-22deg - var(--page-progress, 0) * 100deg));
  width: 540px;
}

.orbit-two::after {
  background: var(--orange);
  box-shadow: 0 0 20px var(--orange);
}

.floating-metric {
  backdrop-filter: blur(14px);
  background: rgba(8, 21, 29, .78);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 5px;
  min-width: 120px;
  padding: 14px 16px;
  position: absolute;
  transform-style: preserve-3d;
  z-index: 5;
}

.floating-metric span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.floating-metric strong {
  color: var(--cyan);
  font-size: 20px;
}

.metric-one { left: 3%; top: 24%; transform: rotateY(12deg) translateZ(50px); }
.metric-two { right: 1%; top: 35%; transform: rotateY(-16deg) translateZ(70px); }
.metric-three { bottom: 15%; right: 12%; transform: rotateY(-8deg) translateZ(40px); }

.hero-bars {
  align-items: end;
  bottom: 8%;
  display: flex;
  gap: 12px;
  height: 150px;
  left: 10%;
  perspective: 700px;
  position: absolute;
  transform: rotateX(58deg) rotateZ(-12deg);
  width: 260px;
}

.hero-bars i {
  background: linear-gradient(to top, #107b94, var(--cyan));
  box-shadow: 10px 12px 0 rgba(3, 38, 47, .82), 0 0 20px rgba(24,216,255,.18);
  display: block;
  height: var(--h);
  transform: translateZ(calc(var(--i) * 6px)) scaleY(clamp(.14, calc(var(--hero-progress, 0) * 2.1 - var(--i) * .13), 1));
  transform-origin: center bottom;
  transition: filter .2s ease, transform .08s linear;
  width: 28px;
}

.hero-bars i:nth-child(even) {
  background: linear-gradient(to top, #9a4e19, var(--orange));
  box-shadow: 10px 12px 0 rgba(68, 32, 10, .82), 0 0 24px rgba(255,158,69,.22);
}

.scroll-cue {
  align-items: center;
  bottom: 25px;
  color: var(--muted);
  display: flex;
  font-size: 10px;
  gap: 12px;
  left: 50%;
  letter-spacing: .12em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-cue i {
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 26px;
  position: relative;
  width: 16px;
}

.scroll-cue i::after {
  animation: scroll-dot 1.8s ease-in-out infinite;
  background: var(--cyan);
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 3px;
}

.manifesto {
  background: #f0f4f5;
  color: #09141b;
  min-height: 155vh;
  position: relative;
}

.manifesto-track {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  padding-bottom: 16vh;
  padding-top: 15vh;
}

.manifesto-sticky {
  align-self: start;
  position: sticky;
  top: 25vh;
}

.manifesto .section-index {
  color: #1288a2;
}

.manifesto h2,
.section-heading h2,
.reports-copy h2,
.contact-copy h2 {
  font-size: clamp(44px, 5vw, 74px);
  letter-spacing: -.06em;
  line-height: .98;
  margin: 0;
}

.manifesto h2 span {
  color: #7b8a92;
  font-weight: 430;
}

.story-progress {
  background: rgba(9, 20, 27, .11);
  height: 2px;
  margin-top: 50px;
  max-width: 360px;
}

.story-progress i {
  background: linear-gradient(90deg, #1288a2, var(--orange));
  display: block;
  height: 100%;
  transform: scaleX(var(--story-progress, .15));
  transform-origin: left;
  transition: transform .4s ease;
}

.story-steps {
  display: grid;
  gap: 9vh;
  padding-top: 8vh;
}

.story-step {
  border-top: 1px solid rgba(9,20,27,.18);
  min-height: 25vh;
  padding-top: 24px;
}

.story-step > span {
  color: #1288a2;
  font-size: 11px;
  font-weight: 850;
}

.story-step h3 {
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: -.05em;
  margin: 55px 0 18px;
}

.story-step p {
  color: #53636c;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 470px;
}

.solutions {
  background: #f0f4f5;
  color: #09141b;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr minmax(280px, .42fr);
  margin-bottom: 70px;
}

.section-heading .section-index {
  color: #1288a2;
}

.section-heading > p {
  color: #60717a;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

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

.solution-card {
  background: #fff;
  border: 1px solid rgba(9,20,27,.08);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: box-shadow .35s ease, transform .35s var(--ease);
}

.solution-card::after {
  background: var(--card-accent, var(--cyan));
  content: "";
  height: 3px;
  left: 26px;
  position: absolute;
  right: 26px;
  top: 0;
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .35s ease;
}

.solution-card:hover {
  box-shadow: 0 28px 70px rgba(25,45,55,.14);
  transform: translateY(-10px);
}

.solution-card:hover::after {
  transform: scaleX(1);
}

.solution-card[data-accent="orange"] { --card-accent: var(--orange); }
.solution-card[data-accent="blue"] { --card-accent: #168ab1; }
.solution-card[data-accent="violet"] { --card-accent: var(--violet); }
.solution-card[data-accent="green"] { --card-accent: var(--green); }

.solution-number {
  color: #9aabb3;
  font-size: 10px;
  font-weight: 800;
}

.solution-icon {
  height: 145px;
  margin: 40px 0 28px;
  position: relative;
}

.presentation-icon i {
  background: #ecf1f3;
  border: 1px solid #d4dfe4;
  border-radius: 6px;
  height: 92px;
  left: 22%;
  position: absolute;
  top: 14px;
  transform: rotate(calc((var(--n, 0) - 1) * 8deg)) translateX(calc((var(--n, 0) - 1) * 20px));
  width: 118px;
}

.presentation-icon i:nth-child(1) { --n: 0; }
.presentation-icon i:nth-child(2) { --n: 1; background: linear-gradient(145deg, #fff, #eef4f6); }
.presentation-icon i:nth-child(3) { --n: 2; }
.presentation-icon i:nth-child(2)::after {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 18px;
  position: absolute;
  top: 22px;
  width: 55px;
}

.infographic-icon {
  align-items: end;
  display: flex;
  gap: 10px;
  justify-content: center;
  transform: perspective(500px) rotateX(58deg) rotateZ(-8deg);
}

.infographic-icon i {
  background: linear-gradient(to top, #126c86, #22afd3);
  box-shadow: 8px 9px 0 #b7d1da;
  height: var(--v, 40%);
  width: 27px;
}

.infographic-icon i:nth-child(1) { --v: 35%; }
.infographic-icon i:nth-child(2) { --v: 70%; }
.infographic-icon i:nth-child(3) { --v: 54%; }
.infographic-icon i:nth-child(4) { --v: 92%; }

.tech-icon::before,
.tech-icon::after,
.tech-icon i {
  border: 1px solid #cbd8dd;
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tech-icon::before { height: 120px; width: 120px; }
.tech-icon::after { border-color: var(--violet) transparent; height: 86px; transform: translate(-50%, -50%) rotate(28deg); width: 86px; }
.tech-icon i:first-child { background: var(--violet); border: 0; box-shadow: 0 0 24px rgba(155,130,255,.45); height: 18px; width: 18px; }
.tech-icon i:last-child { background: #fff; height: 48px; width: 48px; }

.solution-card h3 {
  font-size: 26px;
  letter-spacing: -.04em;
  margin: 0 0 16px;
}

.solution-card p {
  color: #65747c;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.solution-card small {
  color: #9aabb3;
  font-size: 10px;
  line-height: 1.5;
  margin-top: auto;
  padding-top: 24px;
  text-transform: uppercase;
}

.solution-featured {
  background: #0c1820;
  color: #fff;
}

.solution-featured p {
  color: #aebdc5;
}

.solution-featured a {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  margin-top: auto;
}

.solution-tag {
  background: rgba(107,230,117,.12);
  border: 1px solid rgba(107,230,117,.35);
  border-radius: 999px;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  padding: 7px 10px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 18px;
}

.reports-mini-chart {
  align-items: end;
  display: flex;
  gap: 9px;
  height: 145px;
  justify-content: center;
  margin: 40px 0 28px;
  perspective: 600px;
  transform: rotateX(52deg) rotateZ(-10deg);
}

.reports-mini-chart i {
  background: linear-gradient(to top, #287c3c, var(--green));
  box-shadow: 7px 8px 0 #143f25;
  height: var(--v);
  width: 24px;
}

.reports-section {
  background: var(--bg-deep);
  min-height: 1150px;
  overflow: hidden;
}

.reports-copy .section-index {
  color: var(--orange);
}

.reports-backdrop {
  background:
    radial-gradient(circle at 76% 40%, rgba(24,216,255,.12), transparent 34%),
    linear-gradient(115deg, transparent 0 52%, rgba(255,255,255,.025) 52% 53%, transparent 53%);
  inset: 0;
  position: absolute;
}

.reports-layout {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(430px, .9fr) minmax(560px, 1.1fr);
  position: relative;
  z-index: 2;
}

.reports-copy h2 {
  max-width: 620px;
}

.reports-lead {
  color: #9fb0ba;
  font-size: 17px;
  line-height: 1.75;
  margin: 30px 0 42px;
  max-width: 600px;
}

.reports-features {
  border-top: 1px solid var(--line);
}

.reports-features article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 32px 1fr;
  padding: 18px 0;
}

.reports-features b {
  color: var(--cyan);
  font-size: 10px;
}

.reports-features article:nth-child(even) b {
  color: var(--orange);
}

.reports-features article div {
  display: grid;
  gap: 5px;
}

.reports-features strong {
  font-size: 14px;
}

.reports-features span {
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  color: #c4d1d8;
  font-size: 12px;
  font-weight: 800;
}

.product-scene {
  height: 760px;
  perspective: 1300px;
  position: relative;
  transform-style: preserve-3d;
}

.product-window {
  background: #dfe7eb;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 18px;
  box-shadow: 0 70px 100px rgba(0,0,0,.5), 0 0 80px rgba(24,216,255,.08);
  height: 500px;
  left: 2%;
  overflow: hidden;
  position: absolute;
  top: 11%;
  transform: rotateY(calc(-12deg + var(--reports-progress, 0) * 9deg)) rotateX(calc(7deg - var(--reports-progress, 0) * 5deg)) translateZ(0);
  transform-origin: center;
  transition: transform .08s linear;
  width: 96%;
}

.product-topbar {
  align-items: center;
  background: #edf3f5;
  color: #8b9ba4;
  display: flex;
  font-size: 8px;
  gap: 5px;
  height: 30px;
  padding: 0 12px;
}

.product-topbar i {
  background: #b9c7cd;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.product-topbar span {
  margin-left: 10px;
}

.product-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  height: calc(100% - 30px);
}

.product-body aside {
  background: linear-gradient(180deg, #292354, #111028);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 13px;
}

.product-brand {
  align-items: center;
  color: white;
  display: flex;
  font-size: 8px;
  gap: 7px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.product-brand img {
  height: 23px;
  width: 23px;
}

.product-body aside > i {
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  display: block;
  height: 16px;
  width: 72px;
}

.product-body aside > i.active {
  background: rgba(255,255,255,.22);
  box-shadow: inset 2px 0 var(--cyan);
}

.product-dashboard {
  background: #f4f7f8;
  color: #17252d;
  padding: 25px;
}

.dashboard-title {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.dashboard-title span {
  font-size: 20px;
  font-weight: 850;
}

.dashboard-title b {
  color: #6a7a83;
  font-size: 8px;
}

.dashboard-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
}

.dashboard-metrics i {
  background: #fff;
  border: 1px solid #dce5e8;
  border-radius: 7px;
  height: 62px;
  position: relative;
}

.dashboard-metrics i::before,
.dashboard-metrics i::after {
  background: #dce5e8;
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 12px;
  position: absolute;
  top: 15px;
  width: 42%;
}

.dashboard-metrics i::after {
  background: #1c3340;
  height: 10px;
  top: 32px;
  width: 30%;
}

.dashboard-chart {
  background: white;
  border: 1px solid #dce5e8;
  border-radius: 8px;
  height: 190px;
  overflow: hidden;
  padding: 18px;
}

.dashboard-chart svg {
  height: 100%;
  overflow: visible;
  width: 100%;
}

.chart-area { fill: url(#chart-fill); }
.chart-line { fill: none; stroke: #18b8d8; stroke-linecap: round; stroke-width: 4; }

.dashboard-table {
  background: white;
  border: 1px solid #dce5e8;
  border-radius: 7px;
  display: grid;
  gap: 9px;
  margin-top: 12px;
  padding: 12px;
}

.dashboard-table i {
  background: #e6edef;
  border-radius: 999px;
  height: 5px;
}

.scene-chart-3d {
  align-items: end;
  bottom: 1%;
  display: flex;
  gap: 22px;
  height: 290px;
  left: 8%;
  perspective: 900px;
  position: absolute;
  transform: rotateX(58deg) rotateZ(-12deg) translateZ(130px);
  transform-style: preserve-3d;
  width: 520px;
  z-index: 5;
}

.scene-floor {
  background: linear-gradient(90deg, rgba(255,158,69,.06), rgba(24,216,255,.18));
  border: 1px solid rgba(24,216,255,.22);
  bottom: -28px;
  height: 250px;
  left: -40px;
  position: absolute;
  transform: translateZ(-20px);
  width: 620px;
}

.scene-chart-3d > i {
  background: linear-gradient(90deg, #087a94, var(--cyan));
  box-shadow: 18px 20px 0 rgba(5,50,61,.78), 0 0 35px rgba(24,216,255,.18);
  display: block;
  height: var(--height);
  max-height: var(--height);
  min-height: 12px;
  transform: translateZ(calc(var(--delay) * 10px)) scaleY(var(--reports-progress, .1));
  transform-origin: center bottom;
  transition: transform .12s linear;
  width: 47px;
}

.scene-chart-3d > i:nth-of-type(even) {
  background: linear-gradient(90deg, #a14f17, var(--orange));
  box-shadow: 18px 20px 0 rgba(72,34,10,.78), 0 0 35px rgba(255,158,69,.2);
}

.numbers {
  background: #0b151d;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 65px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.numbers article {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-left: 36px;
}

.numbers article:first-child { padding-left: 0; }
.numbers article:last-child { border-right: 0; }

.numbers strong {
  font-size: 48px;
  letter-spacing: -.06em;
}

.numbers strong::after {
  color: var(--cyan);
  content: "+";
  font-size: .45em;
  margin-left: 3px;
}

.numbers article:nth-child(3) strong::after { content: "%"; }
.numbers article:nth-child(4) strong::after { content: "/7"; }

.numbers span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.clients {
  background: #eef3f4;
  color: #09141b;
  overflow: hidden;
}

.clients .section-heading .section-index,
.portfolio .section-heading .section-index {
  color: #1288a2;
}

.client-marquee {
  border-bottom: 1px solid rgba(9,20,27,.12);
  border-top: 1px solid rgba(9,20,27,.12);
  display: flex;
  margin-top: 60px;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  animation: marquee 46s linear infinite;
  display: flex;
  flex: 0 0 auto;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
}

.client-logo {
  align-items: center;
  border-right: 1px solid rgba(9,20,27,.12);
  display: flex;
  height: 126px;
  justify-content: center;
  padding: 24px 34px;
  width: 224px;
}

.client-logo img {
  display: block;
  height: 72px;
  max-width: 158px;
  object-fit: contain;
  width: 100%;
}

.portfolio {
  background: #eef3f4;
  color: #09141b;
  padding-top: 80px;
}

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

.portfolio-card {
  background: #fff;
  border: 1px solid rgba(9,20,27,.08);
  border-radius: 18px;
  overflow: hidden;
}

.portfolio-card > div:last-child {
  padding: 24px;
}

.portfolio-card span {
  color: #75858d;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-card h3 {
  font-size: 24px;
  letter-spacing: -.04em;
  margin: 8px 0 0;
}

.portfolio-visual {
  height: 330px;
  overflow: hidden;
  perspective: 800px;
  position: relative;
}

.visual-a { background: linear-gradient(145deg, #15183a, #2e2457); }
.deck-sheet {
  background: #f8fbfc;
  border-radius: 6px;
  box-shadow: 0 28px 60px rgba(0,0,0,.32);
  height: 190px;
  left: 25%;
  position: absolute;
  top: 20%;
  transform: rotateY(-18deg) rotateX(7deg) rotateZ(-6deg);
  width: 300px;
}

.sheet-b {
  background: #182238;
  left: 37%;
  top: 29%;
  transform: rotateY(-18deg) rotateX(7deg) rotateZ(5deg);
}

.deck-chart {
  background: linear-gradient(135deg, var(--orange), #ffd09b);
  border-radius: 999px;
  height: 10px;
  left: 32%;
  position: absolute;
  top: 35%;
  transform: rotateZ(-6deg);
  width: 120px;
}

.visual-b { background: radial-gradient(circle, #15384a, #07131c 70%); }
.radial-data {
  border: 28px solid var(--cyan);
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(24,216,255,.2));
  height: 180px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  width: 180px;
}

.radial-data.small {
  border-color: var(--orange) transparent var(--orange) var(--orange);
  border-width: 10px;
  height: 90px;
  width: 90px;
}

.visual-c {
  align-items: end;
  background: linear-gradient(145deg, #f2f5f6, #cedce1);
  display: flex;
  gap: 18px;
  justify-content: center;
  transform-style: preserve-3d;
}

.visual-c span {
  background: linear-gradient(to top, #117c96, #18c4ea);
  box-shadow: 18px 16px 0 #8fb2be;
  height: 34%;
  margin-bottom: 60px;
  transform: perspective(600px) rotateX(12deg) rotateY(-15deg);
  width: 50px;
}

.visual-c span:nth-child(2) { height: 54%; }
.visual-c span:nth-child(3) { height: 43%; }
.visual-c span:nth-child(4) { height: 69%; }

.visual-d { background: linear-gradient(135deg, #ff9e45, #b64b20); }
.report-cover {
  background: #111a22;
  box-shadow: 25px 30px 70px rgba(0,0,0,.35);
  color: #fff !important;
  font-size: 32px !important;
  height: 230px;
  left: 28%;
  padding: 55px 32px;
  position: absolute;
  top: 14%;
  transform: rotateY(-22deg) rotateX(6deg) rotateZ(-5deg);
  width: 180px;
}

.report-cover b { color: var(--cyan); }
.report-pages {
  background: repeating-linear-gradient(to bottom, #fff 0 3px, #dfe7ea 3px 5px);
  height: 190px;
  left: 48%;
  position: absolute;
  top: 24%;
  transform: rotateY(-22deg) rotateX(6deg) rotateZ(7deg);
  width: 170px;
}

.testimonials {
  background: #09131a;
}

.testimonial-stage {
  border-left: 2px solid var(--cyan);
  margin-left: 16%;
  max-width: 850px;
  padding: 20px 0 20px 70px;
}

.testimonial-stage blockquote {
  font-size: clamp(28px, 3.3vw, 46px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.24;
  margin: 0;
}

.testimonial-author {
  display: grid;
  gap: 4px;
  margin-top: 35px;
}

.testimonial-author span {
  font-size: 13px;
  font-weight: 800;
}

.testimonial-author small {
  color: var(--muted);
  font-size: 11px;
}

.contact {
  background: #f0f4f5;
  color: #09141b;
  overflow: hidden;
}

.contact-orbit {
  border: 1px solid rgba(18,136,162,.16);
  border-radius: 50%;
  height: 780px;
  left: -380px;
  position: absolute;
  top: 20px;
  width: 780px;
}

.contact-orbit::before,
.contact-orbit::after {
  border: inherit;
  border-radius: inherit;
  content: "";
  inset: 80px;
  position: absolute;
}

.contact-orbit::after { inset: 170px; }

.contact-layout {
  display: grid;
  gap: 90px;
  grid-template-columns: .8fr 1.2fr;
  position: relative;
}

.contact-copy .section-index {
  color: #1288a2;
}

.contact-copy > p:not(.section-index) {
  color: #60717a;
  font-size: 16px;
  line-height: 1.7;
  max-width: 450px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 45px;
}

.contact-details a {
  display: grid;
  gap: 4px;
}

.contact-details span {
  color: #829099;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 15px;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(9,20,27,.08);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(25,45,55,.09);
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
  padding: 38px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #687981;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cdd9dd;
  border-radius: 0;
  color: #09141b;
  min-height: 44px;
  outline: none;
  padding: 8px 0;
  resize: vertical;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1288a2;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.contact-form .button-primary {
  background: linear-gradient(90deg, var(--orange), #ffc077);
  box-shadow: 0 16px 40px rgba(255,158,69,.2);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

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

.form-status {
  color: #1288a2;
  font-size: 12px;
  margin: 0;
}

.form-status.success { color: #147a55; }
.form-status.error { color: #b43d2f; }

.site-footer {
  background: #03070b;
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.site-footer .brand .brand-logo {
  width: 165px;
}

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

.footer-grid > p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.footer-grid > div {
  display: flex;
  font-size: 12px;
  gap: 18px;
}

.footer-grid > small {
  color: #64747d;
  font-size: 9px;
  grid-column: 1 / -1;
  text-align: center;
}

.whatsapp {
  align-items: center;
  background: #25d366;
  border: 4px solid rgba(255,255,255,.12);
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 16px 38px rgba(0,0,0,.25);
  color: #04130a;
  display: flex;
  font-size: 22px;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: transform .2s ease;
  width: 54px;
  z-index: 50;
}

.whatsapp:hover {
  transform: scale(1.08) rotate(8deg);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

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

.solution-card.reveal:nth-child(2),
.reports-features .reveal:nth-child(2) { transition-delay: .08s; }
.solution-card.reveal:nth-child(3),
.reports-features .reveal:nth-child(3) { transition-delay: .16s; }
.solution-card.reveal:nth-child(4),
.reports-features .reveal:nth-child(4) { transition-delay: .24s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scroll-dot { 0%,100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(10px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes hero-bar-rise {
  from { opacity: 0; transform: translateZ(calc(var(--i) * 6px)) scaleY(0); }
  to { opacity: 1; transform: translateZ(calc(var(--i) * 6px)) scaleY(1); }
}
@keyframes hero-bar-pulse {
  from { filter: brightness(.86) saturate(.9); }
  to { filter: brightness(1.24) saturate(1.15); }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 48px, 960px); }
  .site-header { grid-template-columns: auto 1fr auto; padding-inline: 24px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 11px; }
  .hero-content { gap: 25px; grid-template-columns: 1fr 1fr; }
  .hero-visual { transform: scale(.88); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .reports-layout { grid-template-columns: 1fr; }
  .reports-section { min-height: auto; }
  .product-scene { height: 720px; margin-top: 20px; }
  .reports-copy { max-width: 720px; }
  .contact-layout { gap: 50px; }
}

@media (max-width: 780px) {
  :root { --header-h: 70px; --shell: calc(100% - 36px); }
  .section { padding: 88px 0; }
  .site-header { backdrop-filter: none; grid-template-columns: 1fr auto; }
  .brand .brand-logo { width: 142px; }
  .menu-open .site-header { background: #03070b; }
  .header-cta { display: none; }
  .menu-toggle {
    cursor: pointer;
    display: grid;
    gap: 6px;
    padding: 12px 0 12px 16px;
    width: 42px;
  }
  .menu-toggle span { background: white; display: block; height: 1px; transition: transform .2s ease; width: 25px; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    align-content: center;
    background: rgba(3,7,11,.98);
    display: grid;
    gap: 28px;
    height: calc(100dvh - 70px);
    inset: 70px 0 auto;
    justify-content: start;
    opacity: 0;
    padding: 60px 24px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-15px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-size: 28px; letter-spacing: -.04em; }
  .hero { min-height: auto; padding-bottom: 110px; padding-top: 130px; }
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding: 0; position: relative; top: auto; }
  .hero-copy { opacity: 1; transform: none; }
  .hero-scene { transform: none; }
  .market-chart { opacity: .72; }
  .chart-line { stroke-dashoffset: 0; }
  .chart-points circle { opacity: 1; transform: scale(1); }
  .hero-bars i { transform: translateZ(calc(var(--i) * 6px)) scaleY(1); }
  .hero h1 { font-size: clamp(48px, 13.5vw, 68px); overflow-wrap: anywhere; }
  .hero-lead { font-size: 16px; }
  .hero-visual { height: 510px; margin: 20px 0 -20px; transform: scale(.86); }
  .data-core { height: 210px; width: 210px; }
  .orbit-one { height: 360px; width: 360px; }
  .orbit-two { height: 450px; width: 450px; }
  .floating-metric { min-width: 105px; padding: 11px 13px; }
  .scroll-cue { display: none; }
  .manifesto { min-height: auto; }
  .manifesto-track { display: block; padding-bottom: 100px; padding-top: 100px; }
  .manifesto-sticky { position: static; }
  .story-steps { gap: 90px; padding-top: 90px; }
  .story-step { min-height: auto; }
  .story-step h3 { margin-top: 32px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 25px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 420px; }
  .reports-layout { display: block; }
  .product-scene { height: 570px; margin-left: -10%; width: 120%; }
  .product-window { height: 390px; }
  .scene-chart-3d { bottom: 3%; left: 2%; transform: rotateX(58deg) rotateZ(-12deg) scale(.75) translateZ(130px); transform-origin: left bottom; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); row-gap: 35px; }
  .numbers article:nth-child(2) { border-right: 0; }
  .numbers article:nth-child(3) { padding-left: 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonial-stage { margin-left: 0; padding-left: 28px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 25px; }
  .contact-form label { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-grid > p { order: 2; }
}

@media (max-width: 460px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { margin-left: -18%; width: 136%; }
  .metric-one { left: 7%; }
  .metric-two { right: 6%; }
  .metric-three { right: 14%; }
  .numbers strong { font-size: 40px; }
  .numbers article { padding-left: 18px; }
  .portfolio-visual { height: 280px; }
  .whatsapp { bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero { min-height: 100svh; }
  .hero-content { min-height: 100svh; position: relative; }
  .hero-copy, .hero-scene { opacity: 1; transform: none; }
  .chart-line { stroke-dashoffset: 0; }
  .chart-points circle { opacity: 1; transform: scale(1); }
  .hero-bars i { transform: translateZ(calc(var(--i) * 6px)) scaleY(1); }
}
