:root {
  color-scheme: dark;
  --bg: #02050a;
  --panel: rgba(12, 19, 30, 0.7);
  --panel-strong: rgba(17, 25, 39, 0.88);
  --line: rgba(137, 168, 212, 0.18);
  --text: #f3f7ff;
  --muted: #9eabbf;
  --soft: #c8d3e6;
  --blue: #2d8cff;
  --blue-soft: #6ab4ff;
  --green: #42df9a;
  --radius: 22px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 16%, rgba(25, 118, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 50% 48%, rgba(25, 118, 255, 0.11), transparent 28rem),
    linear-gradient(180deg, #02050a 0%, #050912 48%, #02050a 100%);
  background-attachment: fixed;
  background-position: 50% 0, 50% 0, 50% 0;
  background-size: 130% 130%, 120% 120%, 100% 100%;
  color: var(--text);
  overflow-x: hidden;
  animation: backgroundDrift 28s ease-in-out infinite alternate;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(90, 124, 170, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 124, 170, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 80%, transparent);
  animation: gridDrift 36s linear infinite;
}

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

svg,
canvas,
video {
  max-width: 100%;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px);
  transition:
    opacity 780ms ease,
    filter 780ms ease,
    transform 780ms cubic-bezier(0.2, 0.85, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.54;
  pointer-events: none;
  animation: ambientFloat 24s ease-in-out infinite alternate;
}

.ambient-one {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 110px;
  background: rgba(20, 112, 255, 0.18);
}

.ambient-two {
  width: 360px;
  height: 240px;
  left: 48%;
  top: 470px;
  background: rgba(36, 128, 255, 0.16);
  animation-delay: -8s;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 22px 6vw 0;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 180ms ease;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(134, 170, 230, 0.14);
  background: rgba(5, 10, 18, 0.68);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.brand,
.mini {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand {
  font-size: 22px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 24px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  filter: drop-shadow(0 0 12px rgba(45, 140, 255, 0.65));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  font-size: 14px;
  font-weight: 500;
  color: #e7edf8;
  min-width: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 0;
  color: rgba(239, 245, 255, 0.82);
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: -14px;
  z-index: 20;
  display: none;
  min-width: 176px;
  border: 1px solid rgba(137, 168, 212, 0.18);
  border-radius: 16px;
  background: rgba(5, 10, 18, 0.96);
  box-shadow: var(--shadow);
  padding: 8px;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  display: grid;
}

.nav-submenu a {
  border-radius: 10px;
  padding: 10px 12px;
  white-space: nowrap;
}

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

.nav-links a.is-active::after {
  position: absolute;
  right: 50%;
  bottom: -2px;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 16px var(--blue);
  transform: translateX(50%);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  min-width: 128px;
  padding: 0 22px;
  border: 1px solid rgba(127, 160, 213, 0.34);
  background: rgba(8, 14, 24, 0.52);
}

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

.header-cta:hover,
.button-secondary:hover {
  border-color: rgba(45, 140, 255, 0.64);
  background: rgba(18, 38, 66, 0.62);
  box-shadow: 0 18px 48px rgba(45, 140, 255, 0.18);
}

.button-primary:hover {
  background-position: 150% 0, 0 0;
  box-shadow: 0 18px 58px rgba(45, 140, 255, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  filter: saturate(1.08);
}

.header-cta:active,
.button:active,
.whatsapp-float:active {
  transform: translateY(0) scale(0.98);
}

.menu-toggle {
  display: none;
}

.section {
  width: min(1320px, calc(100% - 9vw));
  margin: 0 auto;
  scroll-margin-top: 110px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 74px;
  align-items: center;
  min-height: 760px;
  padding-top: 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid rgba(45, 140, 255, 0.58);
  border-radius: 999px;
  background: rgba(45, 140, 255, 0.07);
}

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

h1 {
  max-width: 710px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 610px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.button {
  padding: 0 28px;
  border: 1px solid rgba(127, 160, 213, 0.26);
  font-size: 15px;
}

.button-primary {
  min-width: 182px;
  border-color: rgba(87, 162, 255, 0.8);
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 18%, transparent 34%) -190px 0 / 190px 100% no-repeat,
    linear-gradient(135deg, #1874ff, #37a1ff);
  box-shadow: 0 16px 44px rgba(45, 140, 255, 0.34);
}

.button-secondary {
  min-width: 190px;
  background: rgba(9, 15, 25, 0.52);
}

.trust-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(139, 170, 212, 0.12);
}

.trust-row span,
.pill-row span {
  position: relative;
  padding-left: 24px;
  color: #eef4ff;
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease, transform 180ms ease;
}

.trust-row span::before,
.pill-row span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  content: "";
  border: 1px solid var(--blue);
  border-radius: 4px;
  box-shadow: inset 0 0 8px rgba(45, 140, 255, 0.48), 0 0 12px rgba(45, 140, 255, 0.24);
  transform: translateY(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.trust-row span:hover,
.pill-row span:hover {
  color: #fff;
  transform: translateY(-2px);
}

.trust-row span:hover::before,
.pill-row span:hover::before {
  background: rgba(45, 140, 255, 0.34);
  box-shadow: inset 0 0 10px rgba(45, 140, 255, 0.7), 0 0 20px rgba(45, 140, 255, 0.42);
  transform: translateY(-50%) scale(1.12);
}

.trust-row span[data-icon]::before,
.pill-row span[data-icon]::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
}

.dashboard-wrap {
  position: relative;
  min-width: 0;
  perspective: 1400px;
}

.dashboard-wrap::after {
  position: absolute;
  right: 4%;
  bottom: -24px;
  left: 8%;
  height: 72px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(25, 115, 255, 0.42), transparent 66%);
  filter: blur(8px);
}

.dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(133, 169, 224, 0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(17, 27, 42, 0.94), rgba(5, 10, 18, 0.94));
  box-shadow: var(--shadow), 0 0 0 1px rgba(45, 140, 255, 0.08), 0 28px 80px rgba(45, 140, 255, 0.2);
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform 500ms ease, box-shadow 500ms ease;
}

.dashboard:hover {
  box-shadow: var(--shadow), 0 0 0 1px rgba(45, 140, 255, 0.14), 0 34px 96px rgba(45, 140, 255, 0.26);
  transform: rotateY(-5deg) rotateX(2deg) translateY(-4px);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(139, 170, 212, 0.12);
}

.mini {
  font-size: 14px;
}

.mini .brand-mark {
  width: 23px;
  height: 18px;
}

.dash-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dash-icons span {
  display: block;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(210, 226, 255, 0.8);
  border-radius: 999px;
}

.dash-icons span:last-child {
  width: 28px;
  height: 28px;
  border-color: rgba(45, 140, 255, 0.55);
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.7), rgba(45, 140, 255, 0.28) 32%, rgba(16, 33, 55, 0.9));
}

.dashboard-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 500px;
}

.dash-sidebar {
  padding: 28px 14px;
  border-right: 1px solid rgba(139, 170, 212, 0.1);
  background: rgba(2, 7, 15, 0.34);
}

.dash-sidebar span {
  display: block;
  margin-bottom: 8px;
  padding: 11px 13px;
  border-radius: 10px;
  color: #aeb9ca;
  font-size: 12px;
}

.dash-sidebar .active {
  color: #dfeaff;
  background: rgba(45, 140, 255, 0.24);
}

.dash-main {
  padding: 30px 28px 36px;
}

.dash-main h2,
.dash-main h3 {
  font-size: 17px;
}

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

.metric-grid article,
.activity-panel,
.resource-panel,
.glass-card,
.philosophy,
.solution-form,
.tech-grid div,
.final-cta {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 28, 43, 0.74), rgba(6, 11, 19, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(24px);
}

.metric-grid article {
  min-height: 108px;
  padding: 18px;
  border-radius: 13px;
}

.metric-grid p {
  margin-bottom: 10px;
  color: #dfe8f8;
  font-size: 12px;
}

.metric-grid strong {
  display: block;
  font-size: 30px;
}

.metric-line {
  display: block;
  width: 100%;
  height: 32px;
  margin-top: 8px;
  clip-path: polygon(0 72%, 14% 58%, 28% 68%, 42% 45%, 56% 54%, 70% 22%, 84% 36%, 100% 5%, 100% 100%, 0 100%);
}

.metric-line.blue {
  background: linear-gradient(180deg, rgba(45, 140, 255, 0.75), rgba(45, 140, 255, 0.04));
}

.metric-line.green {
  background: linear-gradient(180deg, rgba(66, 223, 154, 0.7), rgba(66, 223, 154, 0.04));
}

.dash-lower {
  display: grid;
  grid-template-columns: 1.6fr 0.85fr;
  gap: 18px;
  margin-top: 18px;
}

.activity-panel,
.resource-panel {
  min-height: 250px;
  padding: 22px;
  border-radius: 14px;
}

.activity-panel ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.activity-panel li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(139, 170, 212, 0.1);
}

.activity-panel li span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--blue);
  border-radius: 999px;
}

.activity-panel p,
.activity-panel small {
  margin: 0;
  font-size: 12px;
}

.activity-panel small,
.resource-panel small {
  color: var(--muted);
}

.ring {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  margin: 20px auto;
  border-radius: 999px;
  background: conic-gradient(var(--blue) 0 62%, rgba(92, 122, 168, 0.2) 62% 100%);
}

.ring::before {
  position: absolute;
  width: 78px;
  height: 78px;
  content: "";
  background: #101927;
  border-radius: inherit;
}

.ring span,
.ring small {
  position: relative;
}

.ring span {
  align-self: end;
  font-size: 25px;
  font-weight: 800;
}

.ring small {
  align-self: start;
  margin-top: -2px;
}

.mini-chart {
  height: 48px;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(45, 140, 255, 0.4), rgba(45, 140, 255, 0.04));
  clip-path: polygon(0 78%, 16% 66%, 32% 80%, 48% 58%, 64% 70%, 80% 38%, 100% 56%, 100% 100%, 0 100%);
}

.services,
.tech,
.solution-lab {
  padding: 68px 0 0;
}

.section-head h2,
.philosophy h2,
.solution-lab h2,
.final-cta h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.13;
  letter-spacing: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.services-products-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 22px;
  border: 1px solid rgba(45, 140, 255, 0.34);
  border-radius: 999px;
  color: #79a9ff;
  font-size: 14px;
  font-weight: 800;
  padding: 0 18px;
  text-decoration: none;
  white-space: nowrap;
}

.service-grid + .services-products-link {
  margin-left: 0;
}

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

.glass-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  min-height: 292px;
  padding: 30px 24px;
  border-radius: 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.glass-card[hidden] {
  display: none;
}

.glass-card:hover {
  border-color: rgba(45, 140, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 80px rgba(45, 140, 255, 0.13);
  transform: translateY(-4px);
}

.glass-card::after,
.tech-grid div::after,
.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(79, 159, 255, 0.1), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-35%);
  transition: opacity 220ms ease, transform 700ms ease;
}

.glass-card:hover::after,
.tech-grid div:hover::after,
.final-cta:hover::before {
  opacity: 1;
  transform: translateX(35%);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border: 1px solid rgba(45, 140, 255, 0.18);
  border-radius: 14px;
  background-color: rgba(45, 140, 255, 0.13);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 34px;
  box-shadow: 0 18px 42px rgba(45, 140, 255, 0.12);
}

.code-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m16 10-8 10 8 10M24 10l8 10-8 10' stroke='%232d8cff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.node-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='8' r='4' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Ccircle cx='10' cy='28' r='4' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Ccircle cx='30' cy='28' r='4' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Cpath d='M18 11 12 24M22 11l6 13M14 28h12' stroke='%232d8cff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.cloud-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 29h15a6 6 0 0 0 .5-12 10 10 0 0 0-19-3A7 7 0 0 0 14 29Z' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m19 22 3 3 6-7' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.enterprise-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 33V9h10v24M22 33V15h10v18M5 33h30M12 15h2M12 21h2M12 27h2M26 21h2M26 27h2' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.bolt-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 4 9 23h10l-2 13 14-19H21l2-13Z' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.target-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='13' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Ccircle cx='20' cy='20' r='5' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Cpath d='M20 7V3M20 37v-4M7 20H3M37 20h-4' stroke='%232d8cff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.server-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='8' width='24' height='9' rx='3' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Crect x='8' y='23' width='24' height='9' rx='3' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Cpath d='M14 12.5h.1M14 27.5h.1M20 12.5h8M20 27.5h8' stroke='%232d8cff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.database-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='20' cy='10' rx='11' ry='5' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Cpath d='M9 10v20c0 2.8 4.9 5 11 5s11-2.2 11-5V10M9 20c0 2.8 4.9 5 11 5s11-2.2 11-5' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.shield-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4 32 9v9c0 8-5 14-12 18C13 32 8 26 8 18V9l12-5Z' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linejoin='round'/%3E%3Cpath d='m15 20 4 4 7-8' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.glass-card h3 {
  margin-bottom: 16px;
  font-size: 21px;
}

.glass-card p,
.philosophy p,
.final-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
}

.philosophy {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
  margin-top: 42px;
  padding: 48px 16px 48px 48px;
  border-radius: var(--radius);
}

.philosophy-copy p {
  max-width: 620px;
}

.workspace-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(139, 170, 212, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(45, 140, 255, 0.24), transparent 22rem),
    linear-gradient(145deg, #0f1c2c, #03070d 72%);
  background-position: center;
  background-size: cover;
}

.workspace-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.04));
}

.workspace-visual.has-custom-image > * {
  opacity: 0;
}

.monitor {
  position: absolute;
  left: 16%;
  top: 52px;
  width: 62%;
  height: 178px;
  border: 8px solid #111b28;
  border-radius: 12px;
  background: linear-gradient(135deg, #07101b, #13233a);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.46), 0 0 48px rgba(45, 140, 255, 0.18);
}

.screen-bar {
  height: 20px;
  border-bottom: 1px solid rgba(139, 170, 212, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.code-lines {
  position: absolute;
  left: 28px;
  top: 46px;
  display: grid;
  width: 48%;
  gap: 12px;
}

.code-lines span {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(106, 180, 255, 0.18));
}

.code-lines span:nth-child(2n) {
  width: 76%;
  background: linear-gradient(90deg, rgba(66, 223, 154, 0.65), rgba(66, 223, 154, 0.12));
}

.code-lines span:nth-child(3n) {
  width: 88%;
}

.schema-lines {
  position: absolute;
  right: 32px;
  top: 54px;
  width: 130px;
  height: 90px;
  border: 1px solid rgba(139, 170, 212, 0.2);
  border-radius: 10px;
}

.schema-lines i {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(45, 140, 255, 0.65);
  border-radius: 7px;
}

.schema-lines i:nth-child(1) {
  left: 18px;
  top: 18px;
}

.schema-lines i:nth-child(2) {
  right: 18px;
  top: 18px;
}

.schema-lines i:nth-child(3) {
  left: 52px;
  bottom: 14px;
}

.desk {
  position: absolute;
  right: 5%;
  bottom: 44px;
  left: 7%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32, 59, 92, 0.2), rgba(73, 113, 162, 0.4), rgba(18, 31, 48, 0.26));
}

.keyboard {
  position: absolute;
  left: 32%;
  bottom: 66px;
  width: 190px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1a2737, #07101a);
  transform: skewX(-16deg);
}

.plant {
  position: absolute;
  right: 10%;
  bottom: 62px;
  width: 54px;
  height: 76px;
  border-bottom: 28px solid #0c141e;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.plant::before {
  position: absolute;
  left: -24px;
  top: -6px;
  width: 74px;
  height: 44px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(66, 223, 154, 0.34), transparent 68%);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.tech-grid div {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 86px;
  place-items: center;
  border-radius: 12px;
  color: #dfe8f8;
  font-size: 22px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tech-grid img {
  max-width: 72%;
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.tech-grid div:hover {
  border-color: rgba(45, 140, 255, 0.44);
  box-shadow: 0 20px 58px rgba(45, 140, 255, 0.14);
  transform: translateY(-3px);
}

.solution-lab {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(70px, 8vh, 104px) 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.solution-stage {
  position: relative;
  display: grid;
  grid-template-columns: clamp(92px, 8vw, 130px) minmax(300px, 0.78fr) minmax(340px, 0.82fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  width: 100%;
  min-height: min(680px, calc(100svh - 118px));
  padding: clamp(28px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(45, 140, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 13% 54%, rgba(23, 113, 255, 0.36), transparent 16rem),
    radial-gradient(circle at 52% 46%, rgba(51, 134, 255, 0.16), transparent 32rem),
    linear-gradient(145deg, rgba(2, 6, 13, 0.58), rgba(5, 10, 18, 0.84));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.solution-stage::before {
  position: absolute;
  inset: -20%;
  content: "";
  background:
    linear-gradient(120deg, transparent 26%, rgba(45, 140, 255, 0.08), transparent 48%),
    radial-gradient(circle at 30% 60%, rgba(45, 140, 255, 0.16), transparent 22rem);
  opacity: 0.72;
  pointer-events: none;
  animation: ambientFloat 26s ease-in-out infinite alternate;
}

.solution-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(92px, 9vw, 136px);
  height: clamp(92px, 9vw, 136px);
  margin-bottom: 0;
  place-items: center;
  justify-self: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #1388ff, #075ee6);
  box-shadow: 0 0 80px rgba(23, 120, 255, 0.46), 0 28px 80px rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 850;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.solution-stage:hover .solution-number {
  box-shadow: 0 0 105px rgba(23, 120, 255, 0.62), 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(-4px) scale(1.035);
}

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

.solution-copy {
  max-width: min(560px, 100%);
  min-width: 0;
}

.solution-copy .section-kicker {
  margin-bottom: 18px;
}

.solution-copy h2 {
  max-width: 100%;
  font-size: clamp(44px, 4.8vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.solution-copy h2 span {
  display: block;
  color: var(--text);
}

.solution-copy h2 {
  color: #79a9ff;
}

.solution-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.solution-points span {
  border: 1px solid rgba(45, 140, 255, 0.2);
  border-radius: 999px;
  background: rgba(45, 140, 255, 0.08);
  color: #dceaff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 13px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.solution-points span:hover {
  border-color: rgba(87, 162, 255, 0.62);
  background: rgba(45, 140, 255, 0.18);
  color: #fff;
  transform: translateY(-3px);
}

.solution-form {
  position: relative;
  overflow: hidden;
  grid-column: 3;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border-color: rgba(45, 140, 255, 0.38);
  border-radius: 20px;
}

.solution-form::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 76% 0%, rgba(45, 140, 255, 0.2), transparent 18rem),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0.86;
  pointer-events: none;
}

.solution-form > * {
  position: relative;
  z-index: 1;
}

.solution-form label {
  display: block;
  margin-bottom: 12px;
  color: #f2f6ff;
  font-size: 14px;
  font-weight: 750;
}

.solution-form textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  border: 1px solid rgba(137, 168, 212, 0.28);
  border-radius: 14px;
  background: rgba(6, 12, 22, 0.76);
  color: var(--text);
  font: inherit;
  line-height: 1.62;
  outline: none;
  padding: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.solution-form textarea:focus {
  border-color: rgba(45, 140, 255, 0.78);
  background: rgba(9, 18, 31, 0.88);
  box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.12);
  min-height: 168px;
}

.solution-form.is-chatting > label,
.solution-form.is-chatting > textarea,
.solution-form.is-chatting > .solution-submit {
  display: none;
}

.solution-submit {
  width: 100%;
  margin-top: 12px;
}

.solution-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.solution-status,
.solution-answer {
  margin-top: 18px;
  border-radius: 14px;
}

.solution-status {
  display: none;
  padding: 13px 15px;
  border: 1px solid rgba(137, 168, 212, 0.22);
  background: rgba(137, 168, 212, 0.08);
  color: #dce8f8;
  font-weight: 700;
  text-align: center;
}

.solution-status:not(:empty) {
  display: block;
}

.solution-status.is-error {
  border-color: rgba(255, 92, 92, 0.36);
  background: rgba(255, 92, 92, 0.12);
  color: #ffd1d1;
}

.solution-answer {
  display: grid;
  max-height: 390px;
  overflow-y: auto;
  gap: 12px;
  border: 1px solid rgba(66, 223, 154, 0.22);
  background: rgba(66, 223, 154, 0.08);
  color: #dffdec;
  line-height: 1.68;
  padding: 18px;
  scrollbar-color: rgba(45, 140, 255, 0.52) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.solution-answer[hidden] {
  display: none;
}

.solution-answer::-webkit-scrollbar {
  width: 8px;
}

.solution-answer::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.solution-answer::-webkit-scrollbar-thumb {
  background: rgba(45, 140, 255, 0.52);
  border-radius: 999px;
}

.solution-bubble {
  width: fit-content;
  max-width: min(100%, 680px);
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.58;
  white-space: pre-wrap;
}

.solution-bubble.is-bot {
  border: 1px solid rgba(137, 168, 212, 0.18);
  background: rgba(7, 14, 25, 0.68);
  color: #e7f0ff;
}

.solution-bubble.is-user {
  justify-self: end;
  background: linear-gradient(135deg, #1874ff, #37a1ff);
  color: #fff;
  font-weight: 700;
}

.solution-name-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.solution-name-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(137, 168, 212, 0.28);
  border-radius: 999px;
  background: rgba(6, 12, 22, 0.76);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 0 16px;
}

.solution-name-form input:focus {
  border-color: rgba(45, 140, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.12);
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.solution-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(210, 226, 255, 0.12);
}

.solution-actions .button,
.solution-quick-actions .button,
.solution-name-form .button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  margin-top: 36px;
  padding: 52px 84px;
  border-color: rgba(45, 140, 255, 0.58);
  border-radius: 20px;
}

.final-cta::after {
  position: absolute;
  right: -44px;
  bottom: -62px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(45, 140, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 0 80px rgba(45, 140, 255, 0.42);
}

.final-cta.has-custom-image {
  background-position: center;
  background-size: cover;
}

.final-cta.is-hidden {
  display: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta p {
  margin: 16px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 58px;
  width: min(1320px, calc(100% - 9vw));
  margin: 0 auto;
  padding: 72px 0 54px;
  color: var(--muted);
}

.site-footer .brand {
  margin-bottom: 44px;
  color: var(--text);
}

.site-footer h3 {
  color: #c9d4e5;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(66, 223, 154, 0.52);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.34), transparent 25%),
    linear-gradient(145deg, rgba(35, 204, 121, 0.96), rgba(13, 130, 77, 0.96));
  box-shadow: 0 18px 54px rgba(35, 204, 121, 0.26), 0 0 0 10px rgba(35, 204, 121, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float.is-hidden {
  display: none;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 70px rgba(35, 204, 121, 0.38), 0 0 0 14px rgba(35, 204, 121, 0.08);
  filter: saturate(1.06);
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.contact-page {
  min-height: 100vh;
  padding: 154px 0 80px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.contact-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 82px);
}

.contact-copy h1 span {
  color: var(--blue);
}

.contact-copy p:not(.section-kicker) {
  max-width: 520px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.75;
}

.contact-services {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-services span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-left: 60px;
  color: #eef4ff;
  font-weight: 650;
}

.contact-services span::before {
  position: absolute;
  left: 0;
  width: 42px;
  height: 42px;
  content: "";
  border: 1px solid rgba(45, 140, 255, 0.34);
  border-radius: 10px;
  background: rgba(45, 140, 255, 0.14);
  box-shadow: 0 16px 34px rgba(45, 140, 255, 0.12);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

.contact-services span[data-icon="code"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m16 10-8 10 8 10M24 10l8 10-8 10' stroke='%232d8cff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.contact-services span[data-icon="nodes"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='8' r='4' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Ccircle cx='10' cy='28' r='4' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Ccircle cx='30' cy='28' r='4' stroke='%232d8cff' stroke-width='3' fill='none'/%3E%3Cpath d='M18 11 12 24M22 11l6 13M14 28h12' stroke='%232d8cff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.contact-services span[data-icon="building"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 33V9h10v24M22 33V15h10v18M5 33h30M12 15h2M12 21h2M12 27h2M26 21h2M26 27h2' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-services span[data-icon="cloud"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 29h15a6 6 0 0 0 .5-12 10 10 0 0 0-19-3A7 7 0 0 0 14 29Z' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m19 22 3 3 6-7' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-services span[data-icon="shield"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4 32 9v9c0 8-5 14-12 18C13 32 8 26 8 18V9l12-5Z' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linejoin='round'/%3E%3Cpath d='m15 20 4 4 7-8' stroke='%232d8cff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-form {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(45, 140, 255, 0.66);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 140, 255, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(10, 18, 30, 0.86), rgba(3, 7, 14, 0.92));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 38px rgba(45, 140, 255, 0.24);
  backdrop-filter: blur(26px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contact-form:hover {
  border-color: rgba(82, 162, 255, 0.86);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.46), 0 0 52px rgba(45, 140, 255, 0.3);
  transform: translateY(-3px);
}

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

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

.contact-form label {
  display: grid;
  gap: 10px;
  color: #f2f6ff;
  font-size: 14px;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(137, 168, 212, 0.28);
  border-radius: 9px;
  background: rgba(11, 19, 30, 0.76);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  box-shadow: 0 0 0 1000px rgba(11, 19, 30, 0.94) inset;
  caret-color: var(--text);
}

.contact-form textarea {
  min-height: 96px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(45, 140, 255, 0.78);
  background: rgba(13, 24, 38, 0.86);
  box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.12);
}

.contact-submit {
  width: 100%;
  margin-top: 28px;
  border-radius: 8px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.products-page {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 64px;
  min-height: 100svh;
  padding-top: 150px;
}

.products-content {
  min-width: 0;
}

.products-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 14, 24, 0.74);
  box-shadow: var(--shadow);
  padding: 18px;
}

.products-sidebar a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  border-radius: 14px;
  color: var(--muted);
  padding: 0 12px;
  text-decoration: none;
}

.products-sidebar a.is-active {
  background: rgba(45, 140, 255, 0.12);
  color: var(--text);
}

.products-sidebar span,
.product-icon,
.product-modal-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 140, 255, 0.34);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(45, 140, 255, 0.28), rgba(45, 140, 255, 0.06));
  color: #57a2ff;
  font-weight: 900;
}

.products-help {
  margin-top: 18px;
  border: 1px solid rgba(137, 168, 212, 0.12);
  border-radius: 18px;
  padding: 18px;
}

.products-help h2 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.products-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  min-width: 0;
}

.products-head h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 1.05;
}

.products-head p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.products-empty {
  grid-column: 1 / -1;
  max-width: 520px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 13, 22, 0.68);
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  padding: 28px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7, 13, 22, 0.68);
  padding: 28px;
}

.product-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.product-title-row h2 {
  margin: 0;
  font-size: 24px;
}

.product-title-row span {
  border-radius: 999px;
  background: rgba(45, 140, 255, 0.12);
  color: #79a9ff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}

.product-card p {
  color: var(--muted);
  line-height: 1.58;
}

.product-details {
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  padding: 0;
}

.product-modal {
  width: min(680px, calc(100vw - 32px));
  border: 1px solid rgba(45, 140, 255, 0.28);
  border-radius: 22px;
  background: #07101d;
  color: var(--text);
  box-shadow: var(--shadow);
  padding: 34px;
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

.product-modal h2 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 5vw, 48px);
}

.product-modal-detail {
  margin: 20px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}

.form-status:not(:empty) {
  display: block;
  border: 1px solid rgba(137, 168, 212, 0.22);
  background: rgba(137, 168, 212, 0.08);
  color: #dce8f8;
}

.form-status.is-success {
  border-color: rgba(66, 223, 154, 0.34);
  background: rgba(66, 223, 154, 0.12);
  color: #b9f8d8;
}

.form-status.is-error {
  border-color: rgba(255, 92, 92, 0.36);
  background: rgba(255, 92, 92, 0.12);
  color: #ffd1d1;
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@keyframes backgroundDrift {
  0% {
    background-position: 48% 0, 52% 20%, 50% 0;
  }

  50% {
    background-position: 58% 6%, 44% 15%, 50% 0;
  }

  100% {
    background-position: 42% 12%, 56% 26%, 50% 0;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes ambientFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-42px, 36px, 0) scale(1.08);
  }
}

@media (max-width: 1180px) {
  .solution-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solution-number {
    width: 74px;
    height: 74px;
    justify-self: start;
    font-size: 28px;
  }

  .solution-copy h2 {
    max-width: 760px;
    font-size: clamp(48px, 8vw, 78px);
  }

  .solution-form {
    grid-column: auto;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 140px;
  }

  .dashboard {
    transform: none;
  }

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

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

  .philosophy {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .solution-lab {
    min-height: auto;
    padding: 78px 0;
  }

  .solution-number {
    justify-self: start;
  }

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

@media (max-width: 800px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    padding: 14px 4vw 0;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    border-color: rgba(134, 170, 230, 0.14);
    background: rgba(5, 10, 18, 0.74);
    backdrop-filter: blur(22px);
  }

  .brand {
    font-size: 18px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(127, 160, 213, 0.24);
    border-radius: 999px;
    background: rgba(8, 14, 24, 0.62);
    place-items: center;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    margin: -7px 0;
    background: #fff;
    border-radius: 99px;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(134, 170, 230, 0.16);
    border-radius: 20px;
    background: rgba(5, 10, 18, 0.94);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 13px;
    text-align: center;
  }

  .nav-links .nav-item {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .nav-submenu {
    display: none;
  }

  .nav-links a.is-active::after,
  .header-cta {
    display: none;
  }

  .section,
  .site-footer {
    width: min(calc(100% - 32px), 1320px);
    max-width: calc(100vw - 32px);
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .dashboard-wrap.hide-mobile {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 17px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-row span {
    min-width: 0;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.28;
  }

  .trust-row span::before {
    width: 10px;
    height: 10px;
    border-radius: 3px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  .dashboard-top {
    padding: 0 16px;
  }

  .dash-main {
    padding: 22px 16px 24px;
  }

  .metric-grid,
  .dash-lower,
  .service-grid,
  .products-grid,
  .tech-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .products-page {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    width: min(calc(100% - 20px), 1320px);
    padding-top: 128px;
  }

  .products-sidebar {
    position: fixed;
    top: 150px;
    left: 10px;
    z-index: 18;
    max-height: calc(100svh - 190px);
    overflow-y: auto;
    padding: 10px;
  }

  .products-content {
    grid-column: 2;
    max-width: 100%;
    overflow: hidden;
  }

  .products-sidebar a {
    justify-content: center;
    padding: 0;
  }

  .products-sidebar b,
  .products-help {
    display: none;
  }

  .products-head h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.04;
  }

  .products-head p:not(.section-kicker) {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .section-kicker {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.45;
  }

  .tech-grid {
    display: flex;
    width: calc(100vw - 16px);
    max-width: none;
    margin-right: -16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 14px 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tech-grid::-webkit-scrollbar {
    display: none;
  }

  .tech-grid div {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    min-width: min(78vw, 300px);
    min-height: 76px;
    padding: 0 18px;
    font-size: clamp(22px, 9vw, 34px);
    scroll-snap-align: start;
  }

  .philosophy {
    padding: 28px 18px 18px;
  }

  .workspace-visual {
    min-height: 250px;
  }

  .monitor {
    left: 8%;
    width: 78%;
  }

  .schema-lines {
    display: none;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 22px;
  }

  .solution-form {
    padding: 24px 18px;
  }

  .solution-stage {
    padding: 34px 22px;
    border-radius: 22px;
    gap: 22px;
  }

  .solution-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .solution-points span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 0;
    font-size: 12px;
    line-height: 1.24;
    text-align: center;
    padding: 8px 6px;
  }

  .solution-copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.04;
  }

  .solution-number {
    width: auto;
    height: auto;
    justify-self: start;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: var(--text);
    font-size: 22px;
  }

  .solution-form textarea {
    min-height: 190px;
  }

  .solution-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .solution-points span {
    width: auto;
  }

  .solution-submit {
    width: 100%;
  }

  .solution-actions {
    flex-direction: column;
  }

  .solution-quick-actions,
  .solution-name-form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .solution-actions .button,
  .solution-quick-actions .button,
  .solution-name-form .button {
    width: 100%;
  }

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

  .whatsapp-float.is-raised {
    bottom: 86px;
  }

  .contact-page {
    padding-top: 124px;
  }

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

@media (max-width: 460px) {
  h1 {
    font-size: 38px;
  }

  .solution-lab {
    padding: 52px 0;
  }

  .solution-stage {
    padding: 28px 18px;
  }

  .solution-copy p {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions .button,
  .final-cta .button,
  .solution-submit {
    width: 100%;
  }

  .dashboard {
    margin-right: -10px;
    margin-left: -10px;
  }

  .dash-icons span:not(:last-child) {
    display: none;
  }

  .tech-grid div {
    min-height: 72px;
  }
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
