:root {
  --ink: #172033;
  --muted: #627186;
  --line: #dce5ee;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --blue: #246bfe;
  --green: #13856f;
  --amber: #bb7a16;
  --coral: #c7544c;
  --teal: #078c9b;
  --slate: #4d5d75;
  --shadow: 0 20px 48px rgba(23, 32, 51, .12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7fafc;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
  isolation: isolate;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 30;
  padding: .55rem .8rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 14px clamp(1rem, 3vw, 2.5rem) auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: .9rem;
  min-height: 62px;
  padding: .56rem .65rem;
  border-bottom: 1px solid rgba(220, 229, 238, .75);
  border: 1px solid rgba(220, 229, 238, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(23, 32, 51, .08);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 42px rgba(23, 32, 51, .13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: max-content;
  padding-right: .4rem;
  font-weight: 850;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #172033;
  color: #fff;
  font-size: .92rem;
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: .25rem;
  min-width: 0;
  padding: .22rem;
  border: 1px solid rgba(220, 229, 238, .72);
  border-radius: 8px;
  background: #f5f8fb;
}

.site-nav a {
  padding: .45rem .7rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 780;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(23, 32, 51, .08);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .72rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-action {
  border-color: #c8d7e6;
  background: #fff;
  color: var(--ink);
}

.header-action:hover,
.button-secondary:hover {
  border-color: #9db3c9;
  background: #f8fbff;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 22px rgba(29, 111, 214, .22);
}

.button-secondary {
  border-color: #c8d7e6;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
}

.button-whatsapp {
  background: #14926f;
  color: #fff;
  box-shadow: 0 12px 22px rgba(20, 146, 111, .2);
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  display: grid;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 126px clamp(1rem, 4vw, 4rem) 36px;
  overflow: hidden;
  background: #f7fafc;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0) 58%, rgba(247, 250, 252, .5) 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  padding-bottom: 2.2rem;
}

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.differentials-section h2,
.cta-section h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 880;
  line-height: 1.04;
}

.hero h1 {
  font-size: 4.9rem;
}

.slogan {
  margin: .45rem 0 0;
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 820;
}

.hero-lead {
  width: min(640px, 100%);
  margin: 1rem 0 0;
  color: #39485d;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.55rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  width: min(620px, 100%);
  margin: 1.5rem 0 0;
}

.hero-metrics div {
  min-width: 0;
  padding: .8rem;
  border: 1px solid rgba(220, 229, 238, .86);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.hero-metrics dt {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: .1rem 0 0;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 650;
}

.hero-scene {
  position: absolute;
  inset: 82px 0 86px auto;
  width: min(58vw, 840px);
  pointer-events: none;
}

.hero-screen {
  position: absolute;
  border: 1px solid rgba(203, 216, 229, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.monitor-screen {
  right: 7%;
  top: 6%;
  width: min(620px, 78%);
  min-height: 360px;
  padding: 1rem;
}

.window-bar {
  display: flex;
  gap: .35rem;
  padding-bottom: 1rem;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c8d7e6;
}

.screen-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
}

.score-ring {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 16px solid #dbeafe;
  border-top-color: var(--blue);
  border-right-color: var(--green);
  border-radius: 999px;
  text-align: center;
}

.score-ring strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}

.score-ring small {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
}

.screen-lines {
  display: grid;
  align-content: center;
  gap: .7rem;
}

.screen-lines i,
.analytics-table i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #dbe7f2;
}

.screen-lines i:nth-child(1),
.analytics-table i:nth-child(1) {
  background: var(--blue);
}

.screen-lines i:nth-child(2),
.analytics-table i:nth-child(2) {
  background: var(--green);
}

.screen-lines i:nth-child(3),
.analytics-table i:nth-child(3) {
  background: var(--amber);
}

.screen-lines i:nth-child(4),
.analytics-table i:nth-child(4) {
  background: var(--coral);
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: .55rem;
  height: 110px;
  margin-top: 1.2rem;
  padding: .8rem;
  border-radius: 8px;
  background: #f4f8fb;
}

.mini-chart span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: #1d6fd6;
}

.mini-chart span:nth-child(even) {
  background: #14926f;
}

.queue-screen {
  right: 64%;
  top: 48%;
  width: 180px;
  padding: 1rem;
}

.queue-screen strong {
  display: block;
  color: var(--blue);
  font-size: 2.2rem;
  line-height: 1;
}

.queue-screen span,
.queue-screen em,
.pharma-screen small,
.cloud-screen small {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-style: normal;
  font-weight: 650;
}

.pharma-screen {
  right: 8%;
  bottom: 16%;
  width: 245px;
  padding: 1rem;
}

.shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
  margin-bottom: .8rem;
}

.shelf span {
  height: 48px;
  border-radius: 6px;
  background: #f4d9a8;
}

.shelf span:nth-child(2) {
  background: #bce4d8;
}

.shelf span:nth-child(3) {
  background: #dbeafe;
}

.shelf span:nth-child(4) {
  background: #f6c8c2;
}

.cloud-screen {
  right: 48%;
  top: 4%;
  width: 220px;
  padding: 1rem;
}

.cloud-node {
  display: block;
  width: 52px;
  height: 34px;
  margin-bottom: .75rem;
  border-radius: 18px 18px 8px 8px;
  background: #cfe7ef;
  box-shadow: 24px 8px 0 #dbeafe;
}

.hero-product-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  align-self: end;
}

.hero-product-strip a {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
  padding: .78rem;
  border: 1px solid rgba(220, 229, 238, .88);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  color: #344767;
  font-size: .86rem;
  font-weight: 800;
}

.hero-product-strip span {
  color: var(--blue);
  font-size: .74rem;
}

.section {
  padding: 84px clamp(1rem, 4vw, 4rem);
  scroll-margin-top: 104px;
}

.quote-section {
  position: relative;
  z-index: 2;
  padding: 32px clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(220, 229, 238, .78);
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 -22px 52px rgba(23, 32, 51, .08);
}

.quote-section blockquote {
  display: grid;
  gap: .65rem;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 1.35rem 1.55rem;
  border: 1px solid rgba(220, 229, 238, .95);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 12px 28px rgba(23, 32, 51, .06);
}

.quote-section p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 780;
  line-height: 1.25;
}

.quote-section cite {
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 2rem;
}

.hero,
.differentials-section,
.cta-section {
  scroll-margin-top: 104px;
}

.section-heading h2,
.differentials-section h2,
.cta-section h2 {
  font-size: 2.35rem;
}

.section-heading p:not(.eyebrow),
.differentials-section p:not(.eyebrow),
.cta-section p {
  color: var(--muted);
  font-size: 1rem;
}

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

.product-suite,
.flow-section {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(220, 229, 238, .74);
  background: rgba(247, 250, 252, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 46px rgba(23, 32, 51, .06);
}

.product-card,
.flow-step,
.contact-panel {
  border: 1px solid rgba(220, 229, 238, .92);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(31, 42, 68, .07);
}

.product-card {
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 100%;
  padding: 1.05rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #c7d6e5;
  box-shadow: 0 18px 40px rgba(23, 32, 51, .11);
}

.product-card-featured {
  display: flex;
  grid-column: span 4;
}

.product-card-featured .product-visual {
  min-height: 150px;
  margin-bottom: 1rem;
}

.product-card-featured h3 {
  font-size: 1.16rem;
}

.product-card-featured p:not(.product-label) {
  font-size: .92rem;
}

.product-visual {
  min-height: 150px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
}

.product-label {
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.2;
}

.product-card p:not(.product-label) {
  margin: .75rem 0 0;
  color: #45566c;
  font-size: .92rem;
}

.product-card ul {
  display: grid;
  gap: .45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 620;
}

.product-card li::before {
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.accent-blue { border-top: 4px solid var(--blue); }
.accent-green { border-top: 4px solid var(--green); }
.accent-amber { border-top: 4px solid var(--amber); }
.accent-coral { border-top: 4px solid var(--coral); }
.accent-teal { border-top: 4px solid var(--teal); }
.accent-slate { border-top: 4px solid var(--slate); }

.dashboard-visual,
.queue-visual,
.farma-visual,
.cloud-visual,
.whatsapp-visual,
.bpai-visual {
  padding: .8rem;
}

.visual-topline {
  height: 12px;
  width: 70%;
  border-radius: 999px;
  background: #dbe7f2;
}

.visual-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-top: .8rem;
}

.visual-kpis span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 850;
}

.visual-bars {
  display: flex;
  align-items: end;
  gap: .45rem;
  height: 62px;
  margin-top: .8rem;
}

.visual-bars i {
  flex: 1;
  border-radius: 7px 7px 3px 3px;
  background: var(--blue);
}

.queue-visual strong {
  display: block;
  color: var(--green);
  font-size: 2.6rem;
  line-height: 1;
}

.queue-visual span {
  color: var(--muted);
  font-weight: 750;
}

.queue-list {
  display: grid;
  gap: .4rem;
  margin-top: .8rem;
}

.queue-list i {
  height: 10px;
  border-radius: 999px;
  background: #dcefe8;
}

.inventory-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: .5rem;
  align-items: center;
  padding: .48rem 0;
  border-bottom: 1px solid #e5edf4;
}

.inventory-row:last-child {
  border-bottom: 0;
}

.inventory-row span {
  width: 14px;
  height: 22px;
  border-radius: 4px;
  background: var(--amber);
}

.inventory-row strong,
.inventory-row em {
  font-size: .82rem;
  font-style: normal;
}

.cloud-visual {
  position: relative;
  min-height: 150px;
}

.whatsapp-visual,
.bpai-visual {
  display: grid;
  align-content: center;
  gap: .55rem;
}

.message-card {
  width: fit-content;
  max-width: 92%;
  padding: .55rem .7rem;
  border-radius: 8px;
  color: #1f2a44;
  font-size: .82rem;
  font-weight: 800;
}

.message-card.incoming {
  background: #dff3ec;
}

.message-card.outgoing {
  justify-self: end;
  background: #eef5ff;
}

.phone-pill,
.export-arrow {
  width: fit-content;
  padding: .45rem .6rem;
  border-radius: 8px;
  background: #fff;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 850;
}

.file-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: .55rem;
  align-items: center;
  padding: .5rem;
  border-radius: 8px;
  background: #fff;
}

.file-row span {
  color: var(--slate);
  font-size: .82rem;
  font-weight: 850;
}

.file-row i {
  height: 10px;
  border-radius: 999px;
  background: #dbe4ee;
}

.export-arrow {
  color: var(--slate);
}

.server,
.cloud {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: #fff;
}

.server {
  left: 22px;
  top: 34px;
  width: 58px;
  height: 76px;
  border: 2px solid #f2c7c2;
}

.cloud {
  right: 24px;
  top: 44px;
  width: 86px;
  height: 48px;
  border: 2px solid #bfe1e6;
}

.route {
  position: absolute;
  left: 86px;
  right: 116px;
  top: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
}

.differentials-section {
  position: relative;
  z-index: 2;
  padding: 84px clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(220, 229, 238, .74);
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 46px rgba(23, 32, 51, .06);
}

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

.differential-card {
  display: grid;
  align-content: start;
  gap: .75rem;
  min-height: 210px;
  padding: 1.15rem;
  border: 1px solid rgba(220, 229, 238, .95);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 10px 26px rgba(31, 42, 68, .07);
}

.differential-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
}

.differential-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.differential-card p {
  margin: 0;
  color: #45566c;
  font-size: 1rem;
  font-weight: 650;
}

.quote-card {
  position: relative;
  overflow: hidden;
  align-content: center;
  min-height: 260px;
  padding: 1.45rem;
  background: #172033;
  color: #fff;
}

.quote-card::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: -.65rem;
  color: rgba(255, 255, 255, .12);
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
}

.differentials-section .quote-card p {
  position: relative;
  color: #fff;
  font-size: 1.72rem;
  font-weight: 880;
  line-height: 1.16;
}

.differentials-section .quote-card cite {
  position: relative;
  color: #bce4d8;
  font-style: normal;
  font-weight: 850;
}

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

.flow-step {
  padding: 1rem;
  transition: transform .18s ease, box-shadow .18s ease;
}

.flow-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 32, 51, .1);
}

.flow-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
}

.flow-step h3 {
  margin: .9rem 0 .35rem;
  font-size: 1rem;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.cta-section {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: 1.5rem;
  align-items: center;
  margin: 0 clamp(1rem, 4vw, 4rem) 84px;
  padding: 2rem;
  border: 1px solid rgba(220, 229, 238, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  gap: .75rem;
  padding: 1rem;
}

.contact-link {
  display: block;
  padding: .8rem;
  border-radius: 8px;
  background: #eef5ff;
  color: var(--blue);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-link.muted {
  background: #f4f8fb;
  color: var(--ink);
}

.contact-link.whatsapp {
  background: #e4f6ef;
  color: #08785a;
}

.site-footer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1.4rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid #dce5ee;
  background: rgba(247, 250, 252, .88);
  backdrop-filter: blur(18px);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

.footer-company {
  display: grid;
  gap: .12rem;
  text-align: center;
  line-height: 1.35;
}

.footer-company span {
  color: #8190a3;
  font-size: .74rem;
  font-weight: 450;
}

.downloads-page {
  background: #f7fafc;
}

.download-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 126px clamp(1rem, 4vw, 4rem) 64px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fafc 0%, #eef5ff 48%, #f3fbf8 100%);
}

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

.download-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: .98;
}

.download-slogan {
  width: min(720px, 100%);
  margin: .8rem 0 0;
  color: var(--green);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 840;
  line-height: 1.24;
}

.download-lead {
  width: min(680px, 100%);
  margin: 1rem 0 0;
  color: #39485d;
  font-size: 1.06rem;
}

.download-hero-visual {
  min-height: 520px;
}

.monitor-console {
  position: absolute;
  inset: 28px 0 auto auto;
  width: min(520px, 100%);
  min-height: 420px;
  padding: 1rem;
  border: 1px solid rgba(203, 216, 229, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem;
  border-radius: 8px;
  background: #172033;
  color: #fff;
}

.console-header strong,
.console-header span {
  font-weight: 880;
}

.console-header span {
  color: #bce4d8;
  font-size: 1.6rem;
}

.console-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin-top: .9rem;
}

.console-kpis i {
  display: grid;
  gap: .2rem;
  padding: .85rem;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #f8fbfd;
  font-style: normal;
}

.console-kpis strong {
  color: var(--muted);
  font-size: .78rem;
}

.console-kpis span {
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 880;
}

.console-chart {
  display: flex;
  align-items: end;
  gap: .7rem;
  height: 190px;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f4f8fb;
}

.console-chart span {
  flex: 1;
  min-width: 0;
  border-radius: 8px 8px 3px 3px;
  background: var(--blue);
}

.console-chart span:nth-child(2) {
  background: var(--green);
}

.console-chart span:nth-child(3) {
  background: var(--amber);
}

.console-chart span:nth-child(4) {
  background: var(--teal);
}

.console-chart span:nth-child(5) {
  background: var(--coral);
}

.floating-task {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: .25rem;
  width: 190px;
  padding: 1rem;
  border: 1px solid rgba(220, 229, 238, .92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(23, 32, 51, .14);
}

.floating-task span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.floating-task strong {
  color: var(--ink);
  font-size: .98rem;
}

.task-whatsapp {
  left: -18px;
  top: -24px;
  border-top: 4px solid var(--green);
}

.task-bpai {
  right: 34px;
  bottom: 26px;
  border-top: 4px solid var(--amber);
}

.monitor-overview {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(220, 229, 238, .74);
  background: rgba(247, 250, 252, .88);
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.feature-panel {
  display: grid;
  grid-column: span 4;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-height: 100%;
  padding: 1.05rem;
  border: 1px solid rgba(220, 229, 238, .92);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(31, 42, 68, .07);
}

.feature-panel.feature-large {
  grid-column: span 6;
}

.feature-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.feature-panel p:not(.product-label) {
  margin: .7rem 0 0;
  color: #45566c;
  font-size: .94rem;
}

.feature-visual {
  min-height: 172px;
  padding: .9rem;
  border-radius: 8px;
  background: #f4f8fb;
  overflow: hidden;
}

.visual-health360 {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  align-items: center;
}

.health-ring {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 16px solid #dbeafe;
  border-top-color: var(--blue);
  border-right-color: var(--green);
  border-bottom-color: var(--teal);
  border-radius: 999px;
  text-align: center;
}

.health-ring strong,
.health-ring span {
  display: block;
}

.health-ring strong {
  font-size: 1.7rem;
  line-height: 1;
}

.health-ring span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 820;
}

.health-lines {
  display: grid;
  gap: .65rem;
}

.health-lines i {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: #dbe7f2;
}

.health-lines i:nth-child(1) {
  width: 94%;
  background: var(--blue);
}

.health-lines i:nth-child(2) {
  width: 78%;
  background: var(--green);
}

.health-lines i:nth-child(3) {
  width: 64%;
  background: var(--amber);
}

.visual-pbf {
  display: grid;
  align-content: center;
  gap: .55rem;
}

.visual-pbf strong {
  color: var(--green);
  font-size: 2.6rem;
  line-height: 1;
}

.visual-pbf span {
  width: fit-content;
  padding: .48rem .65rem;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 850;
}

.visual-bpai {
  display: grid;
  align-content: center;
  gap: .75rem;
}

.visual-bpai div {
  padding: .7rem;
  border-radius: 8px;
  background: #fff;
  color: var(--slate);
  font-weight: 880;
}

.visual-bpai i {
  display: block;
  width: 70%;
  height: 4px;
  border-radius: 999px;
  background: var(--amber);
}

.visual-whatsapp {
  display: grid;
  align-content: center;
  gap: .55rem;
}

.bubble {
  width: fit-content;
  max-width: 92%;
  padding: .58rem .72rem;
  border-radius: 8px;
  color: #1f2a44;
  font-size: .82rem;
  font-weight: 850;
}

.bubble.one,
.bubble.three {
  background: #dff3ec;
}

.bubble.two {
  justify-self: end;
  background: #eef5ff;
}

.visual-powerbi {
  display: grid;
  align-content: center;
  gap: .8rem;
}

.bi-bars {
  display: flex;
  align-items: end;
  gap: .5rem;
  height: 92px;
  padding: .7rem;
  border-radius: 8px;
  background: #fff;
}

.bi-bars span {
  flex: 1;
  border-radius: 7px 7px 3px 3px;
  background: var(--amber);
}

.bi-bars span:nth-child(1) {
  height: 48%;
}

.bi-bars span:nth-child(2) {
  height: 78%;
  background: var(--green);
}

.bi-bars span:nth-child(3) {
  height: 62%;
  background: var(--blue);
}

.visual-powerbi strong {
  color: var(--ink);
}

.visual-tenant {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  align-content: center;
}

.tenant-card {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: .7rem;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 860;
  text-align: center;
}

.automation-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 1.5rem;
  align-items: center;
  padding: 72px clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(220, 229, 238, .8);
  border-bottom: 1px solid rgba(220, 229, 238, .8);
  background: #172033;
  color: #fff;
}

.automation-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.06;
}

.automation-band p:not(.eyebrow) {
  width: min(720px, 100%);
  color: #d7e2ee;
}

.automation-timeline {
  display: grid;
  gap: .75rem;
}

.automation-timeline span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.automation-timeline strong {
  color: #fff;
}

.automation-timeline em {
  color: #bce4d8;
  font-style: normal;
  font-weight: 850;
}

.download-final {
  position: relative;
  z-index: 2;
  padding: 84px clamp(1rem, 4vw, 4rem);
  background: #fff;
}

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

.download-stats {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin: 0 0 1rem;
}

.download-stats div {
  display: grid;
  gap: .2rem;
  padding: 1rem;
  border: 1px solid rgba(220, 229, 238, .95);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 10px 24px rgba(31, 42, 68, .06);
}

.download-stats span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.download-stats strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.download-card {
  display: grid;
  gap: .55rem;
  min-height: 180px;
  padding: 1.4rem;
  border: 1px solid rgba(220, 229, 238, .95);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 12px 30px rgba(31, 42, 68, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  border-color: #c7d6e5;
  box-shadow: 0 18px 40px rgba(23, 32, 51, .12);
}

.download-card span {
  width: fit-content;
  padding: .45rem .65rem;
  border-radius: 8px;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.download-card strong {
  color: var(--ink);
  font-size: 1.28rem;
}

.download-card small {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}

.download-card.windows {
  border-top: 4px solid var(--blue);
}

.download-card.windows span {
  background: var(--blue);
}

.download-card.linux {
  border-top: 4px solid var(--green);
}

.download-card.linux span {
  background: var(--green);
}

.download-contact {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .product-card {
    grid-column: span 6;
  }

  .product-card-featured {
    grid-column: span 6;
  }

  .hero-scene {
    opacity: .34;
    width: 76vw;
  }

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

  .download-hero-visual {
    min-height: 420px;
  }

  .feature-panel,
  .feature-panel.feature-large {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    inset: auto;
    top: 0;
    flex-wrap: wrap;
    min-height: auto;
    border-radius: 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .header-action {
    margin-left: auto;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-scene {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    order: -1;
    opacity: 1;
    margin-bottom: 1rem;
  }

  .monitor-screen {
    right: 0;
    width: 82%;
    min-height: 300px;
  }

  .queue-screen {
    left: 0;
    right: auto;
    top: 46%;
  }

  .cloud-screen {
    left: 8%;
    right: auto;
  }

  .pharma-screen {
    right: 0;
    bottom: 16%;
  }

  .hero-product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .download-hero-visual {
    min-height: 390px;
  }

  .automation-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: .75rem 1rem;
  }

  .brand-text {
    font-size: .98rem;
  }

  .header-action {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .slogan {
    font-size: 1.18rem;
  }

  .hero-metrics,
  .product-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-featured {
    grid-column: 1;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-lead {
    margin-top: .75rem;
    font-size: .96rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .hero-actions .button {
    flex: 1 1 160px;
  }

  .hero-scene {
    height: 180px;
    margin-bottom: 1.1rem;
  }

  .hero-content .eyebrow {
    margin-top: .45rem;
  }

  .monitor-screen {
    width: 78%;
    min-height: 156px;
    padding: .65rem;
  }

  .screen-grid {
    grid-template-columns: 82px 1fr;
    gap: .55rem;
  }

  .score-ring {
    width: 82px;
    border-width: 10px;
  }

  .score-ring strong {
    font-size: 1.45rem;
  }

  .score-ring small {
    font-size: .58rem;
  }

  .mini-chart {
    height: 42px;
    margin-top: .55rem;
    padding: .45rem;
  }

  .queue-screen,
  .cloud-screen {
    width: 142px;
    padding: .7rem;
  }

  .queue-screen {
    top: 52%;
  }

  .queue-screen strong {
    font-size: 1.75rem;
  }

  .cloud-screen {
    display: none;
  }

  .pharma-screen {
    width: 166px;
    bottom: 18%;
    padding: .7rem;
  }

  .shelf span {
    height: 32px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
    margin-top: 1rem;
  }

  .hero-metrics div {
    padding: .55rem;
  }

  .hero-metrics dt {
    font-size: 1rem;
  }

  .hero-metrics dd {
    display: none;
  }

  .hero-product-strip {
    display: none;
  }

  .section,
  .differentials-section {
    padding-block: 58px;
  }

  .section-heading h2,
  .differentials-section h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section {
    margin-bottom: 58px;
    padding: 1.2rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .download-hero {
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .download-hero h1 {
    font-size: 2.65rem;
  }

  .download-hero-visual {
    min-height: 300px;
  }

  .monitor-console {
    min-height: 270px;
    padding: .75rem;
  }

  .console-header {
    padding: .75rem;
  }

  .console-header span {
    font-size: 1.1rem;
  }

  .console-kpis {
    gap: .45rem;
  }

  .console-kpis i {
    padding: .55rem;
  }

  .console-kpis span {
    font-size: 1rem;
  }

  .console-chart {
    height: 96px;
    padding: .7rem;
  }

  .floating-task {
    width: 148px;
    padding: .75rem;
  }

  .task-whatsapp {
    top: 30px;
  }

  .task-bpai {
    right: 0;
    bottom: 0;
  }

  .feature-showcase,
  .download-stats,
  .download-buttons {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .feature-panel.feature-large {
    grid-column: 1;
  }

  .visual-health360 {
    grid-template-columns: 110px 1fr;
  }

  .health-ring {
    border-width: 11px;
  }

  .visual-tenant {
    grid-template-columns: 1fr;
  }
}
