:root {
  --bg: #08090d;
  --bg-soft: #0e1116;
  --panel: rgba(18, 23, 29, 0.82);
  --panel-solid: #12171d;
  --text: #eefcf7;
  --muted: #98a9a3;
  --quiet: #60716b;
  --line: rgba(173, 228, 213, 0.16);
  --green: #57d5b1;
  --cyan: #69c8ff;
  --amber: #ffc95a;
  --coral: #ff7a66;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 76% 8%, rgba(87, 213, 177, 0.16), transparent 34%),
    radial-gradient(circle at 12% 34%, rgba(255, 201, 90, 0.11), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 50%, transparent 50%);
  background-size: 100% 4px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
  z-index: 5;
}

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

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

h1,
h2,
h3,
p,
pre {
  margin: 0;
}

.site-shell {
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 13, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.brand::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(87, 213, 177, 0.24);
  filter: blur(18px);
  transform: translateY(-50%);
  z-index: -1;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(87, 213, 177, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-links a:hover {
  color: var(--text);
}

.nav-action {
  border: 1px solid rgba(87, 213, 177, 0.42);
  border-radius: 8px;
  padding: 10px 15px;
  color: var(--text);
  background: rgba(87, 213, 177, 0.08);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 500px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(46px, 6vw, 76px) clamp(18px, 4vw, 42px) 64px;
  max-width: 1320px;
  margin: 0 auto;
}

.neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  filter: saturate(1.1);
}

.hero-copy,
.hero-console {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-lead {
  max-width: 660px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #06100d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 14px 44px rgba(87, 213, 177, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(105, 200, 255, 0.55);
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.signal-strip span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(8, 9, 13, 0.62);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-console {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(18, 23, 29, 0.88), rgba(8, 9, 13, 0.72));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.console-top,
.pipeline-node,
.metric-card,
.build-panel,
.product-spotlight,
.contact-layout,
.footer {
  border: 1px solid var(--line);
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.console-top strong {
  display: block;
  margin-top: 4px;
  font-size: 19px;
}

.console-kicker,
.metric-card small,
.metric-card span,
.pipeline-node small,
.build-panel span,
.contact-link span,
.footer p {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-pill {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(87, 213, 177, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.brand-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 238px;
  margin: 18px 0 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 201, 90, 0.17), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(87, 213, 177, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.026);
}

.brand-orbit::before,
.brand-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(105, 200, 255, 0.32);
  animation: orbitSpin 18s linear infinite;
}

.brand-orbit::after {
  inset: 48px;
  border-color: rgba(255, 201, 90, 0.34);
  animation-duration: 13s;
  animation-direction: reverse;
}

.brand-orbit img {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 8px rgba(8, 9, 13, 0.74),
    0 0 56px rgba(105, 200, 255, 0.25),
    0 0 86px rgba(255, 201, 90, 0.12);
}

.orbit-rings,
.orbit-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-rings {
  width: 210px;
  height: 210px;
  margin: auto;
  border: 1px solid rgba(87, 213, 177, 0.22);
  animation: orbitPulse 4s ease-in-out infinite;
}

.orbit-rings span:nth-child(1) {
  inset: 22px;
  border: 1px solid rgba(105, 200, 255, 0.22);
}

.orbit-rings span:nth-child(2) {
  inset: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.orbit-rings span:nth-child(3) {
  inset: -26px;
  border: 1px solid rgba(255, 201, 90, 0.18);
}

.orbit-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 30px;
  border: 1px solid rgba(87, 213, 177, 0.4);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(8, 9, 13, 0.82);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0;
  box-shadow: 0 0 28px rgba(87, 213, 177, 0.14);
}

.node-ai {
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.node-api {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.node-data {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.node-auto {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.pipeline {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.pipeline-node {
  position: relative;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.026);
}

.pipeline-node::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 4px;
  background: var(--quiet);
}

.pipeline-node.active::before {
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.pipeline-node span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.pipeline-node strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.pipeline-node small {
  display: block;
  margin-top: 6px;
  text-transform: none;
  line-height: 1.4;
}

.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.metric-card {
  border-radius: 8px;
  padding: 15px;
  background: rgba(8, 9, 13, 0.58);
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--cyan);
  font-size: 38px;
  line-height: 1;
}

.metric-card.wide {
  grid-column: 1 / -1;
}

.health-bar {
  position: relative;
  height: 10px;
  margin: 13px 0 10px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.health-bar i {
  position: absolute;
  inset: 0 16% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--coral));
  animation: pulseWidth 3.5s ease-in-out infinite;
}

.section {
  padding: 92px clamp(18px, 4vw, 42px);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 42px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2,
.product-spotlight h2,
.contact-layout h2 {
  margin-top: 14px;
  max-width: 800px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.product-spotlight p:not(.eyebrow),
.contact-layout p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.026);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(87, 213, 177, 0.55);
  background: rgba(87, 213, 177, 0.07);
}

.service-number {
  color: var(--amber);
  font-weight: 900;
  font-size: 13px;
}

.service-card h3 {
  margin-top: 46px;
  font-size: 23px;
  line-height: 1.12;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.build-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 22px;
  align-items: stretch;
  max-width: var(--max);
  margin: 18px auto 0;
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
}

.build-panel h3 {
  margin-top: 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.build-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.build-panel pre {
  overflow: auto;
  border-radius: 8px;
  padding: 20px;
  background: #06080a;
  color: #b8ffe8;
  line-height: 1.6;
  font-size: 14px;
}

.method {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.method-track article {
  min-height: 260px;
  padding: 24px;
  background: rgba(8, 9, 13, 0.42);
  border-right: 1px solid var(--line);
}

.method-track article:last-child {
  border-right: 0;
}

.method-track span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.method-track h3 {
  margin-top: 66px;
  font-size: 24px;
  line-height: 1.12;
}

.method-track p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.product-spotlight,
.contact-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 8px;
  padding: clamp(24px, 5vw, 54px);
  background: linear-gradient(135deg, rgba(87, 213, 177, 0.08), rgba(255, 255, 255, 0.026));
}

.product-media {
  display: grid;
  place-items: center;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #f7fffc;
  box-shadow: 0 24px 80px rgba(87, 213, 177, 0.14);
}

.product-media img {
  width: 136px;
  height: 136px;
}

.product-spotlight-alt {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(105, 200, 255, 0.075), rgba(255, 201, 90, 0.045));
}

.product-media-comerciogest {
  background:
    radial-gradient(circle at 50% 40%, rgba(91, 192, 68, 0.22), transparent 45%),
    #ffffff;
}

.product-media-comerciogest img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.product-spotlight .button {
  margin-top: 26px;
}

.contact {
  padding-top: 42px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 380px;
  background: rgba(18, 23, 29, 0.72);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.026);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateX(4px);
  border-color: rgba(105, 200, 255, 0.55);
}

.contact-whatsapp {
  border-color: rgba(87, 213, 177, 0.42);
  background: rgba(87, 213, 177, 0.08);
}

.phone-card {
  display: block;
}

.phone-lines {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.phone-lines a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  background: rgba(8, 9, 13, 0.38);
}

.phone-lines small {
  display: block;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-lines strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.phone-lines i {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 20px;
  border-radius: 999px;
  background: rgba(87, 213, 177, 0.16);
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.contact-link strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #06100d;
  box-shadow: 0 18px 46px rgba(87, 213, 177, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  background: #8af0d0;
}

.whatsapp-float span {
  font-size: 13px;
  font-weight: 900;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto 32px;
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(8, 9, 13, 0.6);
}

.footer-brand img {
  width: 170px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

@keyframes pulseWidth {
  0%,
  100% {
    transform: translateX(-3%);
  }
  50% {
    transform: translateX(13%);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero,
  .build-panel,
  .product-spotlight,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-console {
    max-width: 640px;
  }

  .brand-orbit {
    min-height: 220px;
  }

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

  .method-track article:nth-child(2) {
    border-right: 0;
  }

  .method-track article {
    border-bottom: 1px solid var(--line);
  }

  .method-track article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .product-media {
    width: 180px;
  }

  .footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a:not(.nav-action) {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

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

  .service-grid,
  .method-track,
  .console-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .method-track article {
    min-height: auto;
  }

  .service-card h3,
  .method-track h3 {
    margin-top: 34px;
  }

  .method-track article,
  .method-track article:nth-child(2),
  .method-track article:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-track article:last-child {
    border-bottom: 0;
  }

  .metric-card.wide {
    grid-column: auto;
  }

  .build-panel pre {
    font-size: 12px;
  }

  .contact-layout,
  .product-spotlight {
    padding: 22px;
  }

  .contact-link strong {
    overflow-wrap: anywhere;
  }

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

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