@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap");

/* ===== Intro splash ===== */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  /* sólido = tono exacto del fondo del video (#FDFDFD) */
  background: #FDFDFD;
  transition: opacity .55s ease, visibility .55s ease;
  overflow: hidden;
}

.site-intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-intro-frame {
  width: min(92vw, 960px);
  max-height: 92vh;
  overflow: hidden;
  line-height: 0;
  background: #FDFDFD;
}

.site-intro-video {
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: cover;
  /* recorta el borde/marco del render del video (línea negra del export) */
  transform: scale(1.035);
  transform-origin: center center;
  background: #FDFDFD;
  border: 0;
  outline: none;
  box-shadow: none;
  display: block;
}

.site-intro-video:focus {
  outline: none;
}

.site-intro-skip {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  font-family: var(--mono, "IBM Plex Mono", ui-monospace, monospace);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, .18);
  background: rgba(255, 255, 255, .85);
  color: #333;
  border-radius: 999px;
  padding: .45rem .9rem;
  cursor: pointer;
}

.site-intro-skip:hover {
  background: rgba(255, 255, 255, .7);
}

body.intro-pending {
  overflow: hidden;
  background: #FDFDFD;
}

body.intro-pending > header,
body.intro-pending > main,
body.intro-pending > footer,
body.intro-pending > .lead-widget {
  visibility: hidden;
}

:root {
  --black: #000000;
  --white: #FFFFFF;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --blue-primary: #1545B1;
  --blue-secondary: #0B7EBD;
  --dark-blue: #02264C;
  --cyan: #24c8ff;
  --gradient-text: linear-gradient(120deg, #063f8f 0%, #0b7ebd 48%, #24c8ff 100%);
  --dark-gray: #4C4C4C;
  --dark: #070b14;
  --border: rgba(36, 200, 255, .16);
  --text: #0e1726;
  --muted: #5b6b7c;
  --blue: #0d6efd;
  --bg: #edf3fb;
  --surface: rgba(255, 255, 255, .78);
  --tech-line: rgba(36, 200, 255, .35);
}

html {
  font-size: 14px;
  font-family: var(--font);
  background: #e8eef8;
}

@media (min-width: 768px) {
  html { font-size: 16px; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(36, 200, 255, .08), transparent 60%),
    radial-gradient(700px 360px at 0% 20%, rgba(21, 69, 177, .07), transparent 55%),
    #f4f7fc;
}

a { text-decoration: none; color: inherit; }

.mono { font-family: var(--mono); }

/* ===== NAV (cristal / glass) ===== */
.navbar {
  padding-inline: 3rem;
  padding-block: .35rem;
  background: rgba(248, 251, 255, .78) !important;
  backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .75) inset,
    0 10px 36px rgba(2, 38, 76, .12);
  transition:
    background .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    backdrop-filter .3s ease,
    padding .3s ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, .88) !important;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom-color: rgba(11, 126, 189, .16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 14px 40px rgba(2, 38, 76, .14);
}

.navbar .nav-link {
  color: #02264C !important;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
}
.navbar .nav-link:hover {
  color: #0B7EBD !important;
}
.navbar .nav-link.btn-navbar {
  text-shadow: none;
  color: #fff !important;
}
.img-logo-navbar {
  width: 150px;
  object-fit: contain;
  filter: none;
}
.navbar-nav { align-items: center; gap: 1.75rem; }
.navbar-toggler {
  border: 1.5px solid rgba(2, 38, 76, .35);
  border-radius: 10px;
  padding: .45rem .6rem;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(10px);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(11, 126, 189, .2);
}
.navbar-toggler-icon {
  filter: none;
  width: 1.35rem;
  height: 1.35rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2302264C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link.btn-navbar {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 10px 23px !important;
  border-radius: 12px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-link.btn-navbar:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
  color: #fff !important;
}

.lang-switch { display: flex; align-items: center; gap: .35rem; font-family: var(--mono); font-size: .8rem; font-weight: 700; }
.lang-switch a { opacity: .55; color: #02264C; }
.lang-switch a.active { opacity: 1; color: #1545B1; }
.lang-switch span { opacity: .35; color: #02264C; }

/* ===== HERO TECH ===== */
.ds-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8.5rem 0 4.75rem;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(36, 200, 255, .22), transparent 20rem),
    radial-gradient(circle at 82% 8%, rgba(11, 126, 189, .35), transparent 24rem),
    linear-gradient(145deg, #050914 0%, #02264C 38%, #0a3f86 72%, #0B7EBD 100%);
}

.ds-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(36, 200, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 200, 255, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 40% 40%, #000 20%, transparent 75%);
  animation: gridDrift 22s linear infinite;
}

.ds-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 9, 20, .35) 100%);
  pointer-events: none;
}

@keyframes gridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(48px, 24px, 0); }
}

.sys-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(36, 200, 255, .28);
  background: rgba(0, 0, 0, .25);
  border-radius: 999px;
  padding: .35rem .75rem;
  margin-bottom: 1.15rem;
}

.sys-status .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dff9a;
  box-shadow: 0 0 0 0 rgba(61, 255, 154, .55);
  animation: pulseLive 1.8s infinite;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(61, 255, 154, .55); }
  70% { box-shadow: 0 0 0 10px rgba(61, 255, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 154, 0); }
}

.ds-brand {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .92;
  margin: 0 0 .85rem;
  text-transform: uppercase;
  background: linear-gradient(120deg, #fff 10%, #9adfff 55%, #24c8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(36, 200, 255, .18);
}

.ds-hero h1 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400;
  max-width: 34ch;
  margin: 0 0 1rem;
  opacity: .95;
}

.ds-hero .lede {
  max-width: 48ch;
  font-size: 1.05rem;
  opacity: .8;
  margin-bottom: 1.75rem;
}

.ds-hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; }

.ds-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }

.ds-chip {
  font-family: var(--mono);
  border: 1px solid rgba(36, 200, 255, .3);
  border-radius: 8px;
  padding: .35rem .7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  background: rgba(36, 200, 255, .08);
}

/* HUD console */
.hud {
  position: relative;
  background: linear-gradient(160deg, rgba(7, 14, 28, .85), rgba(2, 38, 76, .72));
  border: 1px solid rgba(36, 200, 255, .28);
  border-radius: 18px;
  padding: 1.2rem 1.25rem 1.3rem;
  box-shadow:
    0 0 0 1px rgba(36, 200, 255, .08) inset,
    0 24px 60px rgba(0, 0, 0, .35),
    0 0 40px rgba(36, 200, 255, .08);
  overflow: hidden;
}

.hud::before,
.hud::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--cyan);
  opacity: .85;
}

.hud::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.hud::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.hud-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(36, 200, 255, .08), transparent);
  background-size: 100% 220%;
  animation: scan 4.5s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  from { background-position: 0 -40%; }
  to { background-position: 0 140%; }
}

.hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.hud h3 {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1rem;
}

.ds-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  position: relative;
  z-index: 1;
}

.ds-stat {
  background: rgba(0, 0, 0, .28);
  border-radius: 12px;
  padding: .85rem .9rem;
  border: 1px solid rgba(36, 200, 255, .16);
}

.ds-stat strong {
  display: block;
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.ds-stat span {
  font-size: .78rem;
  opacity: .72;
}

.node-map {
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(36, 200, 255, .15);
  padding-top: .9rem;
}

.node-map svg { width: 100%; height: 78px; display: block; }
.node-map label {
  display: block;
  margin-top: .45rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
}

/* buttons */
.btn.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--blue-primary);
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(21, 69, 177, .28);
}
.btn.btn-primary:hover { background: var(--dark-blue); }

.btn.btn-light-hero {
  background: var(--cyan);
  color: #02264C;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(36, 200, 255, .25);
}
.btn.btn-light-hero:hover { background: #fff; color: #02264C; }

.btn.btn-ghost-hero {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(36, 200, 255, .45);
  border-radius: 10px;
  padding: 10px 28px;
  font-weight: 700;
  font-family: var(--mono);
  font-size: .92rem;
}
.btn.btn-ghost-hero:hover {
  background: rgba(36, 200, 255, .1);
  border-color: var(--cyan);
  color: #fff;
}

.btn.btn-outline-primary {
  color: var(--blue-primary);
  border: 1.5px solid rgba(21, 69, 177, .55);
  border-radius: 10px;
  padding: 10px 28px;
  font-weight: 700;
  background: transparent;
}
.btn.btn-outline-primary:hover {
  background: var(--blue-primary);
  color: #fff;
  border-color: var(--blue-primary);
}

.btn.btn-primary,
.btn.btn-outline-primary,
.btn.btn-light-hero { position: relative; overflow: hidden; }

.btn.btn-primary::before,
.btn.btn-outline-primary::before,
.btn.btn-light-hero::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -35%;
  width: 70%;
  height: 220%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transition: transform .55s ease;
}

.btn.btn-primary:hover::before,
.btn.btn-outline-primary:hover::before,
.btn.btn-light-hero:hover::before {
  transform: translateX(220%) rotate(24deg);
}

/* sections */
.suite-section { padding: 88px 0; position: relative; }
.bg-light { background: linear-gradient(180deg, #e8eef8 0%, #f4f7fc 100%) !important; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-secondary);
  margin-bottom: .65rem;
}

.section-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(36, 200, 255, .6);
}

.section-title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--dark-blue);
}

.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-rail-item {
  display: block;
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, .95), rgba(237, 245, 255, .9));
  border: 1px solid rgba(11, 126, 189, .18);
  border-radius: 14px;
  padding: 1.25rem 1.1rem;
  box-shadow: 0 16px 36px rgba(2, 38, 76, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
  overflow: hidden;
}

.product-rail-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: .7;
}

.product-rail-item:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 200, 255, .5);
  box-shadow: 0 22px 48px rgba(2, 38, 76, .14), 0 0 28px rgba(36, 200, 255, .12);
}

.product-rail-item .code {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: lowercase;
  color: var(--blue-secondary);
  margin-bottom: .45rem;
}

.product-rail-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 .45rem;
}

.product-rail-item p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.product-rail-item .go {
  display: inline-block;
  margin-top: .85rem;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--blue-primary);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dash-frame {
  position: relative;
  background: #0a1222;
  color: #d7e6f7;
  border: 1px solid rgba(36, 200, 255, .22);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 28px 70px rgba(2, 38, 76, .28), inset 0 1px 0 rgba(255, 255, 255, .04);
  overflow: hidden;
}

.dash-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 200, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 200, 255, .04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.dash-frame > * { position: relative; z-index: 1; }

.dash-frame .section-title,
.dash-light .section-title { color: #fff; }

.kpi-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(36, 200, 255, .16);
  border-radius: 14px;
  padding: 16px 14px;
  height: 100%;
  transition: .25s ease;
  backdrop-filter: blur(8px);
}

.kpi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 200, 255, .4);
  box-shadow: 0 0 24px rgba(36, 200, 255, .1);
}

.kpi-card small {
  font-family: var(--mono);
  color: rgba(36, 200, 255, .8);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
}

.kpi-card strong {
  display: block;
  font-size: 18px;
  color: #fff;
  margin: 6px 0;
}

.kpi-card em {
  display: block;
  font-style: normal;
  color: rgba(215, 230, 247, .65);
  font-size: 12px;
  margin-top: 8px;
}

.kpi-line {
  height: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  overflow: hidden;
}

.kpi-line span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1545B1, #24c8ff);
  box-shadow: 0 0 12px rgba(36, 200, 255, .45);
}

.panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(36, 200, 255, .14);
  border-radius: 14px;
  padding: 1.15rem;
  height: 100%;
}

.panel-title {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--cyan);
}

.panel-subtitle { margin: 0; color: rgba(215, 230, 247, .65); font-size: 13px; }

.bar-chart {
  position: relative;
  height: 200px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  padding-bottom: 30px;
  margin-top: 1rem;
}

.bar {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #24c8ff, #1545B1 55%, #0a1a33);
  position: relative;
  min-width: 0;
  box-shadow: 0 0 18px rgba(36, 200, 255, .18);
  transition: .25s ease;
}

.bar:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(36, 200, 255, .35);
}

.bar span {
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(215, 230, 247, .55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.gridlines {
  position: absolute;
  inset: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.gridlines i {
  height: 1px;
  background: rgba(36, 200, 255, .1);
  display: block;
}

.module-band {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, .95), rgba(240, 247, 255, .9));
  border: 1px solid rgba(11, 126, 189, .16);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
  transition: .25s ease;
  position: relative;
}

.module-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue-primary));
}

.module-band:hover {
  border-color: rgba(36, 200, 255, .45);
  box-shadow: 0 16px 36px rgba(13, 110, 253, .1), 0 0 24px rgba(36, 200, 255, .08);
}

.module-band .meta .code {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--blue-secondary);
}

.module-band h3 {
  margin: .2rem 0 .15rem;
  font-size: 1.15rem;
  color: var(--dark-blue);
  font-weight: 700;
}

.module-band .tagline { margin: 0; color: var(--muted); font-size: .88rem; }
.module-band .body { color: var(--muted); font-size: .95rem; margin: 0; }
.module-band .actions { display: flex; flex-direction: column; gap: .5rem; min-width: 140px; }

.donut {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--c) calc(var(--p) * 1%), rgba(11, 126, 189, .12) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 0 auto .5rem;
  box-shadow: 0 0 0 1px rgba(36, 200, 255, .2), 0 0 18px rgba(36, 200, 255, .12);
}

.donut::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
}

.donut span,
.donut small { position: relative; z-index: 1; font-family: var(--mono); }
.donut span { font-weight: 700; font-size: .85rem; color: var(--text); }
.donut small { font-size: 10px; color: var(--muted); text-transform: uppercase; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar {
  border: 1px solid rgba(11, 126, 189, .14);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, .7);
  position: relative;
}

.pillar::before {
  content: attr(data-idx);
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--cyan);
  display: block;
  margin-bottom: .5rem;
  letter-spacing: .08em;
}

.pillar strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark-blue);
  margin-bottom: .4rem;
}

.pillar span { color: var(--muted); font-size: .92rem; }

.table-wrap {
  background: #fff;
  border: 1px solid rgba(11, 126, 189, .16);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(2, 38, 76, .06);
}

.suite-table { width: 100%; border-collapse: collapse; }
.suite-table th {
  background: #0a1222;
  text-align: left;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(36, 200, 255, .85);
  border-bottom: 1px solid rgba(36, 200, 255, .18);
}
.suite-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(11, 126, 189, .1);
  color: var(--text);
  font-size: .95rem;
}
.suite-table tr:hover td { background: rgba(36, 200, 255, .05); }
.suite-table a {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--blue-primary);
  font-weight: 600;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .55rem;
  align-items: center;
}

.flow-steps .step {
  background: rgba(36, 200, 255, .1);
  border: 1px solid rgba(36, 200, 255, .28);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
}

.flow-steps .sep { color: rgba(36, 200, 255, .55); font-weight: 700; }

.suite-cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(36, 200, 255, .18), transparent 18rem),
    linear-gradient(135deg, #050914 0%, #02264C 55%, #0b3c78 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.suite-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 200, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 200, 255, .05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}

.suite-cta p { color: rgba(255, 255, 255, .75); }
.suite-cta .section-title { color: #fff; position: relative; }

.page-pad { padding: 7.5rem 0 4rem; }

.form-shell {
  background: #fff;
  border: 1px solid rgba(11, 126, 189, .16);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(2, 38, 76, .08);
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid rgba(21, 69, 177, .22);
  padding: .75rem .9rem;
  font-family: var(--font);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 .2rem rgba(36, 200, 255, .2);
}

.alert-ok {
  background: rgba(11, 126, 189, .1);
  border: 1px solid rgba(11, 126, 189, .25);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: var(--dark-blue);
  font-family: var(--mono);
  font-size: .85rem;
}

.title-info {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.subtitle-home {
  font-family: var(--mono);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-secondary);
}

.info-home {
  font-size: 17px;
  color: var(--dark-gray);
  line-height: 1.55;
}

.detail-cover {
  padding: 7.5rem 0 3rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(36, 200, 255, .12), transparent 18rem),
    linear-gradient(180deg, #0a1222 0%, #edf3fb 55%, #f4f7fc 100%);
}

.detail-cover .title-info { color: #fff; -webkit-text-fill-color: unset; background: none; }
.detail-cover .info-home { color: rgba(255, 255, 255, .78); }
.detail-cover .code { color: var(--cyan) !important; }

.dash-frame.light {
  background: #fff;
  color: var(--text);
  border-color: rgba(11, 126, 189, .16);
}
.dash-frame.light .donut::after { background: #fff; }

.site-footer {
  background: linear-gradient(155deg, #06152d 0%, #082a52 48%, #0b3c78 100%);
  color: rgba(226, 236, 248, .88);
  padding: 3.25rem 0 1.6rem;
  border-top: 1px solid rgba(125, 211, 252, .18);
  position: relative;
  z-index: 2;
}

.site-footer p {
  max-width: 42ch;
  color: rgba(226, 236, 248, .78);
  line-height: 1.55;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  padding: .65rem .9rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}

.footer-logo {
  height: 42px;
  filter: none;
  display: block;
}

.site-footer h6 {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  margin-bottom: .9rem;
  color: #7dd3fc;
  font-weight: 700;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a {
  color: #fff;
  font-weight: 600;
}
.footer-links a:hover { color: #7dd3fc; }

.footer-apps { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-apps a {
  font-family: var(--mono);
  font-size: .72rem;
  border: 1px solid rgba(125, 211, 252, .35);
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: .35rem .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
}
.footer-apps a:hover {
  background: rgba(125, 211, 252, .14);
  border-color: rgba(125, 211, 252, .55);
  color: #7dd3fc;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .78rem;
  color: rgba(226, 236, 248, .65);
}

.footer-bottom a {
  color: #7dd3fc;
  font-weight: 600;
}
.footer-bottom a:hover { color: #fff; }

.lead-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 270px;
  background: #0a1222;
  color: #fff;
  border: 1px solid rgba(36, 200, 255, .28);
  border-radius: 14px;
  padding: 16px;
  z-index: 9999;
  display: none;
  box-shadow: 0 18px 40px rgba(2, 38, 76, .35), 0 0 28px rgba(36, 200, 255, .12);
}

.lead-widget h6 { font-family: var(--mono); font-size: .85rem; letter-spacing: .04em; }
.lead-widget .text-muted { color: rgba(255, 255, 255, .55) !important; }
.lead-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(255, 255, 255, .55);
}

@media (max-width: 991px) {
  .navbar { padding-inline: 1rem; }
  .img-logo-navbar { width: 128px; }
  .navbar-collapse {
    margin-top: .75rem;
    padding: .85rem 1rem 1rem;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 14px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, .6) inset,
      0 16px 36px rgba(2, 38, 76, .14);
  }
  .navbar-nav {
    align-items: stretch !important;
    gap: .35rem;
    width: 100%;
  }
  .navbar-nav .nav-link {
    padding: .7rem .4rem !important;
    border-bottom: 1px solid rgba(2, 38, 76, .08);
  }
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
  .nav-link.btn-navbar {
    text-align: center;
    margin-top: .35rem;
    display: block;
  }
  .lang-switch {
    padding: .55rem .4rem;
    justify-content: flex-start;
  }
  .product-rail { grid-template-columns: repeat(2, 1fr); }
  .module-band { grid-template-columns: 1fr; }
  .module-band .actions { flex-direction: row; min-width: 0; }
  .pillars { grid-template-columns: 1fr; }
  .ds-hero { padding-top: 7rem; }
  .detail-cover .title-info {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .detail-cover .info-home { color: var(--dark-gray); }
}

@media (max-width: 575px) {
  .product-rail { grid-template-columns: 1fr; }
  .ds-stat-row { grid-template-columns: 1fr; }
}
