:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-strong: #eef4f8;
  --ink: #16212b;
  --muted: #5f6f7f;
  --line: #dce5ec;
  --line-strong: #c6d4de;
  --blue: #1979ad;
  --blue-dark: #0e567d;
  --deep: #102331;
  --deep-2: #0b1824;
  --teal: #128577;
  --teal-soft: #e2f5f1;
  --cold: #54c7e8;
  --cold-soft: #e6f8fd;
  --amber: #c77716;
  --radius: 8px;
  --shadow: 0 12px 36px rgba(16, 38, 55, 0.10);
  --shadow-soft: 0 8px 22px rgba(16, 38, 55, 0.08);
  --max: 1180px;
}

body[data-theme="dark"] {
  --bg: #0f1c27;
  --surface: #142737;
  --surface-strong: #1b3447;
  --ink: #ecf6fb;
  --muted: #aac0cd;
  --line: #29475b;
  --line-strong: #3c5c70;
  --blue: #5bb8e6;
  --blue-dark: #9bd9f3;
  --teal: #55d2c2;
  --teal-soft: #173f3d;
  --shadow: 0 16px 40px rgba(0, 0, 0, .24);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, .18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
}

body[data-theme="dark"] .site-header {
  background: rgba(15, 28, 39, .95);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  border-radius: 7px;
}

.brand-logo--wordmark {
  width: 182px;
  height: auto;
  max-height: 46px;
  border-radius: 0;
}

.brand-logo--dark {
  display: none;
}

body[data-theme="dark"] .brand-logo--light {
  display: none;
}

body[data-theme="dark"] .brand-logo--dark {
  display: block;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--surface-strong);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 22px;
}

.hero {
  color: #edf8fc;
  background:
    radial-gradient(circle at 84% 16%, rgba(84, 199, 232, .22), transparent 34%),
    linear-gradient(135deg, var(--deep-2) 0%, var(--deep) 55%, #123a4d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.hero .eyebrow {
  color: var(--cold);
}

.hero .lead {
  color: #bad0dc;
}

.hero .button--ghost {
  color: #eaf8fd;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
}

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

.hero__inner,
.section__inner,
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: 52px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

.signal-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 10px;
  max-width: 560px;
}

.signal-strip span {
  min-height: 86px;
  padding: 12px 10px;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  color: #d7e8ef;
  background: rgba(255, 255, 255, .08);
  text-align: center;
}

.signal-strip svg {
  width: 28px;
  height: 28px;
  stroke: var(--cold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.signal-strip strong {
  color: #e9f8fc;
  font-size: 13px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  background: var(--blue-dark);
}

.button--ghost {
  color: var(--blue-dark);
  background: var(--surface);
  border-color: var(--line);
}

.button--ghost:hover {
  background: var(--surface-strong);
}

.hero-panel {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.dashboard-placeholder {
  min-height: 380px;
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  background:
    linear-gradient(90deg, rgba(84, 199, 232, .12), transparent 52%),
    #f7fbfd;
}

.dash-top,
.dash-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.metric {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.metric--primary {
  border-color: rgba(84, 199, 232, .55);
  background: linear-gradient(180deg, #e8f9fd, #ffffff);
}

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

.metric--primary strong {
  color: #075473;
  font-size: 30px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.chart-lines {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(to top, transparent 24%, rgba(16, 38, 55, .07) 25%, transparent 26%),
    linear-gradient(135deg, transparent 45%, rgba(18, 133, 119, .36) 46%, transparent 48%),
    linear-gradient(25deg, transparent 56%, rgba(15, 93, 143, .34) 57%, transparent 59%),
    #fbfdfe;
  background-size: 100% 36px, 100% 100%, 100% 100%, auto;
}

.lilo-hero-diagram {
  min-height: 380px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  grid-template-rows: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 16%, rgba(84, 199, 232, .18), transparent 34%),
    linear-gradient(135deg, #f7fbfd, #edf6fa);
}

.lilo-node,
.lilo-cloud {
  min-height: 82px;
  padding: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: #fff;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(16, 38, 55, .08);
}

.lilo-node--sensor {
  grid-column: 1;
  grid-row: 1;
}

.lilo-node--module {
  grid-column: 1;
  grid-row: 3;
}

.lilo-node--gateway {
  grid-column: 3;
  grid-row: 2;
  min-height: 120px;
  color: #fff;
  background: var(--blue);
  border-color: rgba(15, 93, 143, .42);
}

.lilo-cloud {
  grid-column: 3;
  grid-row: 1;
  color: #0c5d53;
  background: var(--teal-soft);
}

.lilo-bus {
  grid-column: 2;
  grid-row: 1 / 4;
  height: 100%;
  display: grid;
  align-content: center;
  gap: 10px;
  position: relative;
}

.lilo-bus::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  bottom: 14px;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cold), var(--blue));
}

.lilo-bus span {
  position: relative;
  z-index: 1;
  min-width: 52px;
  padding: 7px 8px;
  border-radius: 999px;
  color: #075473;
  background: var(--cold-soft);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

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

.lilo-flow-card {
  min-height: 230px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.lilo-flow-card span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.lilo-flow-card p {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 133, 119, .38);
  border-radius: 999px;
  background: #d3f1eb;
  color: #073f39;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(16, 38, 55, .10);
}

body[data-theme="dark"] .status-pill {
  border-color: rgba(84, 210, 194, .54);
  background: #255c57;
  color: #effffc;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}

.section {
  background: var(--bg);
  border-top: 1px solid var(--line-strong);
}

.section--white {
  background: linear-gradient(180deg, var(--surface) 0%, #fbfdfe 100%);
}

.section--blue {
  background: var(--surface-strong);
  border-block: 1px solid var(--line-strong);
}

.section--scenarios {
  background: linear-gradient(180deg, #eef8fb 0%, var(--surface) 100%);
}

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

.section-head p {
  max-width: 620px;
  color: var(--muted);
}

.section-head--compact {
  margin-top: 34px;
  margin-bottom: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.scenario-card {
  min-height: 280px;
  padding: 0 18px 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.scenario-card__media {
  min-height: 126px;
  margin: 0 -18px 4px;
  padding: 18px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  color: #527486;
  background:
    linear-gradient(135deg, rgba(84, 199, 232, .20), rgba(18, 133, 119, .08)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(16, 38, 55, .04) 12px, rgba(16, 38, 55, .04) 24px);
}

.scenario-card__media svg {
  width: 36px;
  height: 36px;
  stroke: #075473;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.scenario-card__media span {
  font-size: 12px;
  font-weight: 700;
}

.scenario-card strong {
  color: var(--blue-dark);
  line-height: 1.18;
}

.scenario-card p {
  color: var(--muted);
  font-size: 14px;
}

.scenario-card--featured {
  color: #eefaff;
  background:
    linear-gradient(135deg, rgba(84, 199, 232, .18), transparent 55%),
    var(--deep);
  border-color: rgba(84, 199, 232, .28);
}

.scenario-card--featured strong,
.scenario-card--featured p {
  color: #eefaff;
}

.scenario-card--featured .scenario-card__media {
  color: #dbf8ff;
  background:
    linear-gradient(135deg, rgba(84, 199, 232, .28), rgba(255, 255, 255, .05)),
    rgba(255, 255, 255, .06);
}

.scenario-card--featured .scenario-card__media svg {
  stroke: var(--cold);
}

.choice-card,
.info-card,
.step-card,
.support-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.choice-card__media,
.mini-media,
.map-placeholder {
  min-height: 118px;
  margin-bottom: 16px;
  padding: 16px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #527486;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(84, 199, 232, .18), rgba(18, 133, 119, .08)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(16, 38, 55, .045) 12px, rgba(16, 38, 55, .045) 24px);
}

.mini-media {
  min-height: 86px;
}

.button--disabled {
  opacity: .62;
  pointer-events: none;
}

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

.benefit-card {
  min-height: 210px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(84, 199, 232, .10), transparent 58%),
    var(--surface);
}

.benefit-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #075473;
  background: var(--cold-soft);
}

.benefit-card svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.benefit-card strong {
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1.14;
}

.benefit-card p {
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
}

.solution-card {
  min-height: 250px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.solution-card--primary {
  color: #eefaff;
  background:
    linear-gradient(135deg, rgba(84, 199, 232, .20), transparent 58%),
    var(--deep);
  border-color: rgba(84, 199, 232, .30);
}

.solution-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #075473;
  background: var(--cold-soft);
}

.solution-card svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.solution-card strong {
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1.12;
}

.solution-card p {
  color: var(--muted);
}

.solution-card--primary span {
  color: #082b3a;
  background: var(--cold);
}

.solution-card--primary strong,
.solution-card--primary p,
.solution-card--primary .text-link {
  color: #eefaff;
}

.choice-card strong,
.step-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.choice-card p,
.info-card p,
.step-card p,
.support-card p {
  color: var(--muted);
}

.support-search-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.support-search {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.support-search span {
  color: #d7e8ef;
  font-weight: 700;
}

.support-search input {
  border-color: rgba(255, 255, 255, .24);
  color: #eefaff;
  background: rgba(255, 255, 255, .10);
}

.support-search input::placeholder {
  color: #b7ccd7;
}

.support-quicklinks {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-quicklinks a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #e9f8fc;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.support-quicklinks a:hover {
  background: rgba(255, 255, 255, .12);
}

.support-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.support-sidebar {
  position: sticky;
  top: 96px;
  padding: 14px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.support-sidebar a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.support-sidebar a:hover {
  color: var(--blue-dark);
  background: var(--surface-strong);
}

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

.support-status {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

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

.support-article,
.knowledge-card,
.download-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.support-article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.support-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-article__meta span,
.support-article__products span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--surface-strong);
  font-size: 12px;
  font-weight: 700;
}

.support-article p,
.knowledge-card p,
.download-card p {
  color: var(--muted);
}

.support-article__products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.support-article__products span {
  color: #0c5d53;
  background: var(--teal-soft);
}

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

.knowledge-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.knowledge-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.download-card {
  min-height: 190px;
}

.download-card h3 {
  margin-bottom: 12px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 36px;
  align-items: start;
}

.article-body {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.article-body h2 {
  margin-top: 34px;
  font-size: 28px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 24px;
  font-size: 20px;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-top: 14px;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body li + li {
  margin-top: 8px;
}

.article-note {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(18, 133, 119, .24);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--teal-soft);
}

.article-note strong {
  display: block;
  margin-bottom: 6px;
}

.article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.article-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.article-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.article-box p,
.article-box li {
  color: var(--muted);
  font-size: 14px;
}

.article-box ul {
  margin: 0;
  padding-left: 18px;
}

.article-box li + li {
  margin-top: 8px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--surface-strong);
  font-size: 12px;
  font-weight: 700;
}

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

.product-section + .product-section {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

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

.product-grid--single .product-card {
  max-width: 780px;
}

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.product-card--transversal {
  border-color: rgba(18, 133, 119, .38);
  box-shadow: 0 10px 30px rgba(18, 133, 119, .10);
}

.image-placeholder {
  min-height: 190px;
  padding: 16px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  background:
    linear-gradient(135deg, rgba(15, 93, 143, .12), rgba(18, 133, 119, .12)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(16, 38, 55, .04) 12px, rgba(16, 38, 55, .04) 24px);
}

.product-card__body {
  padding: 20px;
}

.product-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.lifecycle-badge {
  max-width: 170px;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
}

.lifecycle-badge--activo {
  border-color: rgba(18, 133, 119, .26);
  color: #0c5d53;
  background: var(--teal-soft);
}

.lifecycle-badge--proximamente {
  border-color: rgba(199, 119, 22, .28);
  color: #8a4b08;
  background: #fff4df;
}

.lifecycle-badge--no-recomendado {
  border-color: #d8e2e9;
  color: #607281;
  background: #f3f6f8;
}

.lifecycle-badge--inactivo {
  border-color: #ead3d3;
  color: #944040;
  background: #fff1f1;
}

.product-card__body h3 {
  margin-top: 6px;
}

.product-card__body p {
  margin-top: 12px;
  color: var(--muted);
}

.meta-list {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.meta-list div {
  display: grid;
  gap: 2px;
}

.meta-list dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.meta-list dd {
  margin: 0;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.filter-panel {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.filter-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.filter-panel label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.filter-panel__footer {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.small-button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--blue-dark);
  font-weight: 700;
  cursor: pointer;
}

.advisor {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.advisor-copy {
  align-self: center;
}

.advisor-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.advisor-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
}

.advisor form {
  padding: 4px;
}

.field-grid {
  display: grid;
  gap: 10px;
}

.field {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-strong);
}

.field__step {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

select,
input,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.advisor-result {
  position: relative;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 9px;
  border: 1px solid rgba(18, 133, 119, .35);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--teal-soft) 0%, var(--surface) 100%);
  text-decoration: none;
}

.advisor-result::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--teal);
  font-size: 24px;
}

.advisor-result:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 28px rgba(18, 133, 119, .16);
}

.advisor-result__label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.advisor-result strong {
  padding-right: 24px;
  font-size: 28px;
  color: var(--blue-dark);
}

.advisor-result span {
  color: var(--muted);
}

.advisor-result em {
  margin-top: 8px;
  color: var(--teal);
  font-style: normal;
  font-weight: 700;
}

.timeline {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.plans {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.plan {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.plan strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.plan span {
  color: var(--blue);
  font-weight: 700;
}

.plan ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.annual-note {
  max-width: 720px;
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(15, 93, 143, .18);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: #e8f0ff;
  text-align: center;
  font-weight: 700;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.pricing-table th {
  color: var(--ink);
  background: var(--surface-strong);
  font-size: 16px;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table .feature {
  min-width: 160px;
  color: var(--ink);
  background: var(--surface-strong);
  text-align: left;
  font-weight: 700;
}

.pricing-table .is-highlighted {
  background: #f1f6ff;
}

.check-mark {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #0c5d53;
  background: var(--teal-soft);
  font-weight: 800;
  line-height: 1;
}

.plan-badge {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.plan-badge--muted {
  background: #7d8994;
}

.plan-badge--dark {
  background: #344451;
}

.scale-box {
  margin-top: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.scale-box h3 {
  margin-top: 8px;
}

.scale-box p {
  margin-top: 12px;
  color: var(--muted);
}

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

.scale-list span {
  min-height: 54px;
  padding: 12px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  color: var(--blue-dark);
  background: var(--surface-strong);
  font-size: 14px;
  font-weight: 700;
}

.scale-list svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.permission-matrix {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.permission-matrix__row {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) repeat(3, minmax(92px, .65fr));
  align-items: center;
  min-height: 46px;
  border-top: 1px solid var(--line);
}

.permission-matrix__row:first-child {
  border-top: 0;
}

.permission-matrix__row span,
.permission-matrix__row strong {
  padding: 12px;
}

.permission-matrix__row strong {
  color: var(--blue-dark);
  text-align: center;
}

.permission-matrix__row--head {
  color: var(--blue-dark);
  background: var(--surface-strong);
  font-weight: 700;
}

.ecosystem-diagram {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-diagram div {
  position: relative;
  min-height: 138px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.ecosystem-diagram div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-weight: 700;
  z-index: 2;
}

.ecosystem-diagram strong {
  color: var(--blue-dark);
}

.ecosystem-diagram span {
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
}

.contact-card,
.form-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-card form {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.form-card > p,
.contact-card p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-list a {
  padding: 13px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: inherit;
  background: var(--surface-strong);
  text-decoration: none;
}

.contact-list strong {
  color: var(--blue-dark);
}

.contact-list span {
  color: var(--muted);
  font-size: 14px;
}

.map-placeholder {
  margin-top: 16px;
}

.form-message {
  min-height: 22px;
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  background: #122331;
  color: #e8f0f4;
}

.footer__inner {
  padding-block: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer__inner p {
  color: #b8c7d0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #e8f0f4;
  text-decoration: none;
}

.theme-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 20px;
}

.theme-toggle:hover {
  color: var(--blue-dark);
  border-color: var(--blue);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 31;
  min-width: 46px;
  height: 46px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-float:hover {
  background: #1ebc59;
}

.whatsapp-float svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 980px) {
  h1 {
    font-size: 42px;
  }

  .hero__grid,
  .advisor,
  .scale-box,
  .support-layout,
  .article-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .ecosystem-diagram div:not(:last-child)::after {
    display: none;
  }

  .support-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-aside {
    position: static;
  }

  .advisor-flow {
    grid-template-columns: 1fr;
  }

  .grid--3,
  .product-grid,
  .support-article-grid,
  .knowledge-grid,
  .download-grid,
  .lilo-flow,
  .scenario-grid,
  .benefit-grid,
  .solution-grid,
  .filter-panel__grid,
  .plans,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 64px 16px auto 16px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero__inner,
  .section__inner,
  .footer__inner {
    padding: 48px 18px;
  }

  .section-head {
    display: grid;
  }

  .grid--3,
  .grid--2,
  .product-grid,
  .support-article-grid,
  .knowledge-grid,
  .download-grid,
  .lilo-flow,
  .scenario-grid,
  .benefit-grid,
  .solution-grid,
  .filter-panel__grid,
  .plans,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .lilo-hero-diagram {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .lilo-node--sensor,
  .lilo-node--module,
  .lilo-node--gateway,
  .lilo-cloud,
  .lilo-bus {
    grid-column: auto;
    grid-row: auto;
  }

  .lilo-bus {
    min-height: 78px;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
  }

  .lilo-bus::before {
    left: 14px;
    right: 14px;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 3px;
    transform: translateY(-50%);
  }

  .scale-list {
    grid-template-columns: 1fr;
  }

  .ecosystem-diagram {
    grid-template-columns: 1fr;
  }

  .permission-matrix {
    overflow-x: auto;
  }

  .permission-matrix__row {
    min-width: 620px;
  }

  .support-sidebar {
    grid-template-columns: 1fr;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 74px;
    width: 46px;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
