:root {
  --bg: #050607;
  --bg-soft: #0a0d10;
  --surface: rgba(12, 16, 20, 0.82);
  --surface-solid: #0e1317;
  --surface-light: #151b20;
  --text: #f5f7fb;
  --muted: #aab5bf;
  --muted-strong: #d9e1e8;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --cyan: #18c8ff;
  --cyan-soft: rgba(24, 200, 255, 0.14);
  --blue: #0a84ff;
  --mint: #37f0bf;
  --gold: #f2c76e;
  --gold-soft: rgba(242, 199, 110, 0.14);
  --ember: #ff6b4a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, #050607 0%, #0a0d10 44%, #050607 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

main > section > * {
  position: relative;
  z-index: 3;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
}

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

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  width: min(calc(100% - 2rem), 1240px);
  min-height: 72px;
  margin: 0.75rem auto 0;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.74);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--text);
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  line-height: 1;
}

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

.site-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header-trust {
  display: inline-flex;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
}

.header-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.58rem;
  border: 1px solid rgba(55, 240, 191, 0.28);
  border-radius: 6px;
  color: var(--muted-strong);
  background: rgba(55, 240, 191, 0.08);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  min-width: 0;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.header-cta {
  color: #041014;
  background: var(--cyan);
  box-shadow: 0 12px 38px rgba(24, 200, 255, 0.26);
}

.whatsapp-icon {
  display: block;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.header-cta:hover,
.btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.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.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 88svh;
  padding: 8rem 0 3.2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../img/hero-suite.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  transform: scale(1.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.82) 38%, rgba(5, 6, 7, 0.5) 68%, rgba(5, 6, 7, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.86) 0%, rgba(5, 6, 7, 0.14) 44%, rgba(5, 6, 7, 0.96) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 7, 0.92) 100%);
}

#signal-canvas.site-particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  opacity: 0.38;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-inner,
.section,
.contact-inner,
.site-footer,
.impact-grid {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.72fr);
  gap: 2rem;
  align-items: end;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 0.7rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 750;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0.85rem;
  font-size: 6.8rem;
  line-height: 0.92;
  font-weight: 900;
}

.hero-brand-gradient {
  background:
    linear-gradient(100deg, #0fb4ff 0%, #17e690 28%, #f2c76e 52%, #18c8ff 76%, #17e690 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(24, 200, 255, 0.22));
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
  line-height: 1.04;
  font-weight: 850;
}

h3 {
  margin-bottom: 0.72rem;
  font-size: 1.35rem;
  line-height: 1.18;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 0.95rem;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.36;
  font-weight: 650;
}

.hero-copy,
.section-head p,
.service-copy p,
.panel-copy p,
.impact-copy p,
.contact-inner p,
.step-item p {
  color: var(--muted);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 1.45rem;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.btn-primary {
  color: #041014;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--mint) 100%);
  box-shadow: 0 20px 50px rgba(24, 200, 255, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.btn-secondary:hover {
  border-color: rgba(24, 200, 255, 0.54);
  background: rgba(24, 200, 255, 0.12);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  max-width: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.52);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  min-width: 0;
  padding: 0.9rem 1rem;
  border-right: 1px solid var(--line);
}

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

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

.hero-proof strong {
  color: var(--text);
  font-size: 0.98rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-showcase {
  position: relative;
  min-height: 440px;
}

.showcase-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07090b;
  box-shadow: var(--shadow);
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-frame.is-main {
  right: 0;
  bottom: 0;
  width: 88%;
  aspect-ratio: 4 / 3;
}

.showcase-frame.is-floating {
  left: 0;
  top: 2rem;
  width: 58%;
  aspect-ratio: 16 / 10;
}

.showcase-signal {
  position: absolute;
  right: 8%;
  top: 0;
  display: grid;
  gap: 0.7rem;
}

.showcase-signal span {
  display: block;
  width: 86px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  box-shadow: 0 0 24px rgba(24, 200, 255, 0.72);
}

.motion-band {
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #07090b;
}

.motion-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-left: 1rem;
}

.motion-frame {
  flex: 0 0 auto;
  width: 380px;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0f12;
}

.motion-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 6rem 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 2.2rem;
}

.section-head p {
  max-width: 710px;
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 520px));
  justify-content: center;
  align-items: stretch;
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.025) 100%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

.service-visual {
  position: relative;
  min-height: 236px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(24, 200, 255, 0.15) 0%, rgba(242, 199, 110, 0.08) 44%, rgba(255, 107, 74, 0.1) 100%),
    #0b0f12;
}

.service-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-carousel {
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 24%, rgba(24, 200, 255, 0.24), transparent 34%),
    radial-gradient(circle at 10% 86%, rgba(55, 240, 191, 0.18), transparent 36%),
    #080b0f;
}

.product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
}

.product-slide:first-child {
  opacity: 1;
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-ribbon,
.dinovyx-pulse-label,
.web-badge,
.software-chip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--text);
  background: rgba(5, 8, 12, 0.66);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.software-showcase {
  display: block;
  background:
    radial-gradient(circle at 50% 40%, rgba(24, 200, 255, 0.24), transparent 40%),
    linear-gradient(135deg, rgba(24, 200, 255, 0.16), rgba(242, 199, 110, 0.08)),
    #080b10;
}

.software-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 10, 14, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.software-panel-main {
  left: 10%;
  top: 15%;
  width: 62%;
  height: 58%;
  padding: 1rem;
}

.software-panel-main .panel-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.25rem;
  border-radius: 50%;
  background: var(--cyan);
}

.software-panel-main .panel-dot:nth-child(2) {
  background: var(--gold);
}

.software-panel-main .panel-dot:nth-child(3) {
  background: var(--mint);
}

.software-panel-main strong,
.software-panel-side strong {
  display: block;
  margin-top: 0.95rem;
  color: var(--text);
  font-size: 0.92rem;
}

.software-panel-main i {
  display: block;
  height: 9px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.08));
}

.software-panel-main i:nth-of-type(2) {
  width: 72%;
  background: linear-gradient(90deg, var(--mint), rgba(255, 255, 255, 0.08));
}

.software-panel-main i:nth-of-type(3) {
  width: 48%;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.08));
}

.software-panel-side {
  right: 8%;
  top: 29%;
  width: 36%;
  height: 44%;
  padding: 0.9rem;
  transform: translateY(0);
}

.software-panel-side strong {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.software-panel-side span {
  display: block;
  height: 24px;
  margin-top: 0.55rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
}

.software-orbit {
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(24, 200, 255, 0.28);
  border-radius: 50%;
}

.software-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(55, 240, 191, 0.28);
  border-radius: 50%;
  color: var(--muted-strong);
  background: rgba(5, 8, 12, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
}

.software-orbit span:nth-child(1) {
  left: 2%;
  top: 12%;
}

.software-orbit span:nth-child(2) {
  right: 0;
  top: 2%;
}

.software-orbit span:nth-child(3) {
  right: 9%;
  bottom: 0;
}

.web-lab {
  background:
    radial-gradient(circle at 78% 18%, rgba(55, 240, 191, 0.22), transparent 30%),
    radial-gradient(circle at 15% 82%, rgba(242, 199, 110, 0.12), transparent 34%),
    #080b10;
}

.web-browser {
  position: absolute;
  left: 9%;
  top: 15%;
  width: 68%;
  height: 58%;
  padding: 2.25rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.web-browser > span {
  position: absolute;
  top: 0.78rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
}

.web-browser > span:nth-child(1) {
  left: 1rem;
}

.web-browser > span:nth-child(2) {
  left: 2rem;
  background: var(--gold);
}

.web-browser > span:nth-child(3) {
  left: 3rem;
  background: var(--mint);
}

.web-hero-line,
.web-copy-line,
.web-cta-line {
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.web-hero-line {
  width: 72%;
  height: 20px;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
}

.web-copy-line {
  width: 90%;
  margin-top: 0.8rem;
}

.web-copy-line.short {
  width: 62%;
}

.web-cta-line {
  width: 34%;
  height: 24px;
  margin-top: 1rem;
  background: var(--gold);
}

.web-phone {
  position: absolute;
  right: 10%;
  top: 25%;
  width: 26%;
  height: 60%;
  padding: 1rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #050607;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.web-phone i,
.web-phone b {
  display: block;
  border-radius: 999px;
}

.web-phone i {
  width: 42%;
  height: 6px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.28);
}

.web-phone b {
  height: 16px;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.08));
}

.web-phone b:last-child {
  width: 64%;
  background: linear-gradient(90deg, var(--mint), rgba(255, 255, 255, 0.08));
}

.dinovyx-card-carousel {
  background: #080a0c;
}

.dinovyx-card-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.dinovyx-card-carousel img:first-child {
  opacity: 1;
}

.service-copy {
  padding: 1.25rem;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 780;
  text-transform: uppercase;
}

.service-kicker-gold {
  color: var(--gold);
}

.check-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid var(--mint);
  border-radius: 2px;
  transform: rotate(45deg);
}

.device-lab,
.software-lab {
  display: grid;
  place-items: center;
}

.device-screen {
  position: absolute;
  top: 18%;
  left: 17%;
  width: 62%;
  height: 45%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(24, 200, 255, 0.2), transparent 45%),
    #111820;
  box-shadow: inset 0 0 24px rgba(24, 200, 255, 0.28), 0 18px 40px rgba(0, 0, 0, 0.32);
}

.device-screen span {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
}

.device-screen span:nth-child(1) {
  top: 28%;
  background: var(--cyan);
}

.device-screen span:nth-child(2) {
  top: 48%;
  right: 32%;
}

.device-screen span:nth-child(3) {
  top: 68%;
  right: 46%;
  background: var(--gold);
}

.device-tower {
  position: absolute;
  right: 18%;
  bottom: 18%;
  width: 20%;
  height: 58%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: linear-gradient(180deg, #171d23 0%, #090c0f 100%);
  box-shadow: 0 0 34px rgba(24, 200, 255, 0.16);
}

.device-base {
  position: absolute;
  left: 22%;
  bottom: 16%;
  width: 42%;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(24, 200, 255, 0.8) 50%, transparent 100%);
}

.software-lab {
  padding: 1.4rem;
}

.ui-topbar {
  position: absolute;
  top: 18%;
  left: 12%;
  right: 12%;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(24, 200, 255, 0.26), rgba(255, 255, 255, 0.04));
}

.ui-grid {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 38%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.ui-grid span {
  min-height: 45px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
}

.ui-grid span:nth-child(2) {
  background: rgba(55, 240, 191, 0.12);
}

.ui-grid span:nth-child(3) {
  background: rgba(242, 199, 110, 0.12);
}

.ui-flow {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 15%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ui-flow i {
  width: 20px;
  height: 20px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(24, 200, 255, 0.42);
}

.ui-flow::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transform: translateY(-50%);
}

.dinovyx-section {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(24, 200, 255, 0.05), transparent 34%),
    linear-gradient(135deg, #07090b 0%, #0d1014 55%, #07090b 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.segmented {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.25rem;
  margin-bottom: 1.4rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.segmented button {
  min-height: 42px;
  border: 0;
  border-radius: 5px;
  color: var(--muted-strong);
  background: transparent;
  cursor: pointer;
}

.segmented button.is-active {
  color: #041014;
  background: var(--cyan);
}

.dinovyx-panels {
  position: relative;
}

.dinovyx-panel {
  display: none;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.dinovyx-panel.is-active {
  display: grid;
}

.panel-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 2 / 3;
  max-height: 740px;
  background: #080a0c;
  box-shadow: var(--shadow);
}

.panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-copy {
  max-width: 650px;
}

.panel-copy h3 {
  font-size: 2rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.3rem 0 1.4rem;
}

.feature-list span {
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(24, 200, 255, 0.42);
  border-radius: 5px;
  color: var(--muted-strong);
  background: var(--cyan-soft);
}

.feature-list-gold span {
  border-color: rgba(242, 199, 110, 0.44);
  background: var(--gold-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.text-link-gold {
  color: var(--gold);
}

.build-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.build-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 200, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(242, 199, 110, 0.1) 100%),
    #090d10;
}

.code-window {
  width: min(86%, 440px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050607;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.window-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.8rem;
  border-bottom: 1px solid var(--line);
  background: #10151a;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-bar span:nth-child(1) {
  background: var(--ember);
}

.window-bar span:nth-child(2) {
  background: var(--gold);
}

.window-bar span:nth-child(3) {
  background: var(--mint);
}

pre {
  margin: 0;
  padding: 1.35rem;
  white-space: pre-wrap;
  color: #dfe9ef;
  font: 600 0.95rem/1.65 "Consolas", "Courier New", monospace;
}

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

.step-item {
  min-height: 184px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.step-item strong {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--cyan);
  font-size: 0.95rem;
}

.impact-section {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background:
    linear-gradient(90deg, rgba(24, 200, 255, 0.1) 0%, rgba(242, 199, 110, 0.07) 50%, rgba(55, 240, 191, 0.08) 100%),
    #080a0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 6, 7, 0.42);
}

.impact-metrics div {
  min-height: 150px;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.impact-metrics div:last-child {
  border-right: 0;
}

.impact-metrics strong {
  display: block;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.impact-metrics span {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
}

.contact-section {
  padding: 5rem 0;
  background: #050607;
}

.contact-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 200, 255, 0.14), rgba(255, 255, 255, 0.035) 55%, rgba(242, 199, 110, 0.12)),
    #090c0f;
  box-shadow: var(--shadow);
}

.contact-inner img {
  width: 84px;
  height: 84px;
}

.contact-inner h2 {
  margin-bottom: 0.55rem;
  font-size: 2rem;
}

.contact-inner p:last-child {
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: 0.7rem;
  min-width: 220px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer div {
  display: grid;
  justify-items: center;
  text-align: center;
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 48;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(37, 211, 102, 0.58);
  border-radius: 8px;
  color: #041014;
  background: rgba(5, 8, 12, 0.82);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.24);
  transition: transform 180ms ease;
  backdrop-filter: blur(12px);
}

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

.icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
}

.whatsapp-float .whatsapp-icon {
  width: 2.25rem;
  height: 2.25rem;
}

.icon-whatsapp {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-whatsapp::before {
  content: "";
  position: absolute;
  left: 0.12rem;
  bottom: -0.22rem;
  width: 0.38rem;
  height: 0.38rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-18deg);
}

.icon-whatsapp::after {
  content: "";
  position: absolute;
  left: 0.29rem;
  top: 0.24rem;
  width: 0.42rem;
  height: 0.22rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-42deg);
}

.icon-arrow::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 50%;
  width: 0.85rem;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.icon-arrow::after {
  content: "";
  position: absolute;
  right: 0.02rem;
  top: 50%;
  width: 0.46rem;
  height: 0.46rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: hero-drift 18s ease-in-out infinite alternate;
  }

  .showcase-frame.is-floating {
    animation: float-panel 5s ease-in-out infinite alternate;
  }

  .showcase-signal span {
    animation: scan-line 1.6s ease-in-out infinite;
  }

  .showcase-signal span:nth-child(2) {
    animation-delay: 180ms;
  }

  .showcase-signal span:nth-child(3) {
    animation-delay: 360ms;
  }

  .motion-track {
    animation: gallery-drift 42s linear infinite;
  }

  .hero-brand-gradient {
    animation: brand-shift 7s ease-in-out infinite alternate;
  }

  .product-slide {
    animation: product-swap 18s ease-in-out infinite;
  }

  .product-slide:nth-child(2) {
    animation-delay: 4.5s;
  }

  .product-slide:nth-child(3) {
    animation-delay: 9s;
  }

  .product-slide:nth-child(4) {
    animation-delay: 13.5s;
  }

  .software-panel-side,
  .web-phone {
    animation: float-panel 4.8s ease-in-out infinite alternate;
  }

  .software-orbit {
    animation: orbit-spin 18s linear infinite;
  }

  .software-orbit span {
    animation: orbit-counter 18s linear infinite;
  }

  .dinovyx-card-carousel img {
    animation: dinovyx-card-swap 8s ease-in-out infinite;
  }

  .dinovyx-card-carousel img:nth-child(2) {
    animation-delay: 4s;
  }
}

@keyframes brand-shift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes product-swap {
  0%,
  18% {
    opacity: 1;
    transform: scale(1);
  }
  24%,
  100% {
    opacity: 0;
    transform: scale(1.045);
  }
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-counter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes dinovyx-card-swap {
  0%,
  42% {
    opacity: 1;
    transform: scale(1);
  }
  50%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes float-panel {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes scan-line {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-8px);
  }
  50% {
    opacity: 1;
    transform: translateX(8px);
  }
}

@keyframes gallery-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-trust span:last-child {
    display: none;
  }
}

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

  .header-trust {
    display: none;
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-showcase {
    display: none;
  }

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

  .service-card {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .service-visual {
    height: 100%;
    min-height: 260px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .build-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand {
    order: 1;
  }

  .nav-toggle {
    order: 2;
    display: block;
    position: relative;
    z-index: 2;
  }

  .header-cta {
    order: 3;
    justify-self: end;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 6, 7, 0.95);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    padding: 0.8rem;
  }

  .hero {
    min-height: 86svh;
    padding-top: 7.2rem;
    padding-bottom: 2.4rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.68) 42%, rgba(5, 6, 7, 0.97) 100%),
      linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.58));
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.16rem;
  }

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

  .hero-proof div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:nth-child(2n) {
    border-right: 0;
  }

  .hero-proof div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .section {
    padding: 4.5rem 0;
  }

  .dinovyx-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .dinovyx-panel {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .panel-media {
    aspect-ratio: 16 / 12;
    max-height: none;
  }

  .panel-copy h3 {
    font-size: 1.6rem;
  }

  .build-steps,
  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-metrics div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-metrics div:last-child {
    border-bottom: 0;
  }

  .motion-frame {
    width: 300px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    left: 0.5rem;
    right: 0.5rem;
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    width: auto;
    min-height: 64px;
    margin: 0.5rem 0 0;
    gap: 0.45rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-trust {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: inline-flex;
    transform: translate(-50%, -50%);
  }

  .header-trust span {
    display: inline-flex !important;
    min-height: 30px;
    padding: 0.35rem 0.55rem;
    font-size: 0.68rem;
  }

  .header-trust span:last-child {
    display: none !important;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0.7rem;
    display: block !important;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-content .eyebrow,
  .hero-lead,
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof div {
    text-align: center;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

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

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

  .service-visual {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .segmented {
    width: 100%;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner img {
    width: 68px;
    height: 68px;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}

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

  #signal-canvas {
    display: none;
  }
}
