:root {
  --ink: #061f3f;
  --panel: #0a3558;
  --muted: #bed8ea;
  --white: #f8fcff;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  left: -999px;
  top: 10px;
  z-index: 10;
  padding: 10px;
  color: #071f3d;
  background: #fff;
}

.skip-link:focus { left: 10px; }

.site-header,
.hero,
.intro,
.product-proof,
.feature-grid,
.modules,
.benefits,
.cta {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { width: 205px; display: block; }

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

.site-header a {
  color: #d8ecfa;
  text-decoration: none;
  font-weight: 700;
}

.site-header nav > a:not(.nav-access):hover { color: #fff; }

.nav-access {
  padding: 10px 15px;
  border: 1px solid rgba(104, 213, 255, 0.62);
  background: rgba(10, 53, 88, 0.7);
  white-space: nowrap;
}

.hero {
  margin-top: 42px;
  margin-bottom: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #78d9ff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.03;
}

.hero h1 span { color: #4dc9ff; }

.hero-text {
  max-width: 630px;
  margin: 24px 0 28px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s, box-shadow 0.18s;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #0e9dee, #0874cf);
  box-shadow: 0 10px 24px rgba(0, 125, 219, 0.23);
}

.button.secondary {
  color: #e7f7ff;
  border: 1px solid rgba(129, 210, 251, 0.6);
  background: rgba(8, 48, 80, 0.62);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  padding: 0;
  margin: 31px 0 0;
  list-style: none;
  color: #b8dbed;
  font-weight: 700;
}

.hero-points li::before { content: '✓'; margin-right: 7px; color: #62d9ae; }

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(93, 197, 245, 0.54);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  color: #ccebf9;
  border-bottom: 1px solid rgba(147, 217, 255, 0.2);
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #49d490;
  box-shadow: 0 0 0 4px rgba(73, 212, 144, 0.13);
}

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

.panel-grid article {
  min-height: 132px;
  padding: 16px;
  background: rgba(2, 25, 49, 0.5);
  border: 1px solid rgba(120, 218, 255, 0.2);
}

.panel-grid .icon { display: block; height: 38px; color: #68d5ff; font-size: 1.75rem; }

.panel-grid strong { display: block; margin: 5px 0; }

.panel-grid small { display: block; color: #b6d7e9; font-size: 0.78rem; }

.panel-note { margin: 18px 0 0; color: #9fcce2; text-align: center; }

.intro { max-width: 830px; margin-bottom: 68px; text-align: center; }

.intro h2,
.section-heading h2,
.benefits h2,
.cta h2 { margin: 0; font-size: clamp(1.85rem, 3.5vw, 3rem); line-height: 1.1; }

.intro > p:last-child { margin: 19px auto 0; color: var(--muted); font-size: 1.1rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 88px;
  overflow: hidden;
  border: 1px solid rgba(118, 206, 248, 0.34);
  border-radius: 14px;
}

.feature-grid article {
  padding: 24px 21px;
  background: #092e50;
  border-right: 1px solid rgba(118, 206, 248, 0.24);
}

.feature-grid article:last-child { border-right: 0; }

.feature-number { color: #71d7ff; font-weight: 900; }

.feature-grid h3 { margin: 12px 0 9px; font-size: 1.18rem; }

.feature-grid p { margin: 0; color: #c4dfed; font-size: 0.93rem; }

.modules { margin-bottom: 90px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 25px; }

.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }

.module-card {
  min-height: 230px;
  padding: 26px 22px;
  border: 1px solid rgba(94, 190, 235, 0.36);
  background: linear-gradient(160deg, #0d4269, #082a4a);
}

.module-card span { display: block; margin-bottom: 30px; font-size: 2.05rem; }

.module-card h3 { margin: 0 0 10px; font-size: 1.22rem; }

.module-card p { margin: 0; color: #c0dcea; font-size: 0.92rem; }

.benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  padding: 49px;
  margin-bottom: 88px;
  border: 1px solid rgba(107, 210, 255, 0.36);
  border-radius: 19px;
  background: linear-gradient(120deg, #0c416b, #083052);
}

.benefits ul { display: grid; gap: 18px; padding: 0; margin: 0; list-style: none; }

.benefits li { position: relative; padding-left: 24px; color: #d0e7f3; }

.benefits li::before { content: '✓'; position: absolute; left: 0; color: #65dbac; font-weight: 900; }

.benefits strong { color: #fff; }

.cta { padding: 85px 25px; text-align: center; border-top: 1px solid rgba(111, 214, 255, 0.42); }

.cta h2 { margin-bottom: 15px; }

.cta p { max-width: 650px; margin: 0 auto 28px; color: #b9d7e7; font-size: 1.05rem; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 31px max(20px, calc((100% - var(--max)) / 2));
  color: #a9cfdf;
  border-top: 1px solid rgba(118, 206, 248, 0.25);
}

footer img { width: 138px; }
footer p { margin: 0; }
footer a { color: #79d6fc; text-decoration: none; font-weight: 800; }

@media (max-width: 940px) {
  .site-header { min-height: 75px; }
  .site-header nav > a:not(.nav-access) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 38px; margin-top: 29px; }
  .hero-panel { max-width: 620px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid article:nth-child(2) { border-right: 0; }
  .feature-grid article:nth-child(-n + 2) { border-bottom: 1px solid rgba(118, 206, 248, 0.24); }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr; gap: 27px; }
}

@media (max-width: 560px) {
  .site-header, .hero, .intro, .product-proof, .feature-grid, .modules, .benefits, .cta { width: min(100% - 28px, var(--max)); }
  .site-header { gap: 8px; }
  .brand img { width: 148px; }
  .nav-access { padding: 8px 10px; font-size: 0.76rem !important; }
  .hero { margin-bottom: 61px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-panel { padding: 16px; }
  .panel-grid article { min-height: 121px; padding: 12px; }
  .feature-grid, .module-grid { grid-template-columns: 1fr; }
  .feature-grid article { border-right: 0 !important; border-bottom: 1px solid rgba(118, 206, 248, 0.24); }
  .feature-grid article:last-child { border-bottom: 0; }
  .module-card { min-height: 185px; }
  .benefits { padding: 30px 22px; margin-bottom: 55px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 4px; }
  .cta { padding: 56px 16px; }
  footer { display: grid; grid-template-columns: 1fr; gap: 13px; padding: 25px 16px; }
}

/* Refinamiento visual: una tipografía sobria para lectura y otra para la jerarquía de títulos. */
:root {
  --font-display: "Sora", "Aptos Display", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  letter-spacing: -0.012em;
}

.site-header a,
.button,
.hero-points,
.panel-top,
.feature-number,
.eyebrow,
footer {
  font-family: var(--font-body);
}

.hero h1,
.intro h2,
.section-heading h2,
.benefits h2,
.cta h2,
.feature-grid h3,
.module-card h3,
.panel-grid strong {
  font-family: var(--font-display);
}

.hero h1 {
  font-weight: 700;
  letter-spacing: -0.068em;
  max-width: 715px;
}

.hero h1 span {
  font-weight: 600;
}

.hero-text {
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: -0.016em;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-header nav {
  gap: 25px;
}

.site-header a {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.nav-access,
.button {
  border-radius: 999px;
}

.nav-access {
  padding: 11px 18px;
}

.button {
  font-size: 0.9rem;
  letter-spacing: 0.005em;
  padding: 14px 21px;
}

.hero-panel {
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(13, 68, 109, 0.96), rgba(4, 29, 57, 0.98));
}

.panel-grid article {
  border-radius: 16px;
}

.panel-grid strong {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.panel-grid small,
.feature-grid p,
.module-card p,
.intro > p:last-child,
.benefits li,
.cta p {
  font-weight: 500;
  line-height: 1.62;
}

.intro h2,
.section-heading h2,
.benefits h2,
.cta h2 {
  font-weight: 650;
  letter-spacing: -0.052em;
}

.feature-grid h3,
.module-card h3 {
  font-weight: 650;
  letter-spacing: -0.038em;
}

.module-card {
  border-radius: 19px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

footer {
  font-size: 0.77rem;
  letter-spacing: 0.005em;
}

@media (max-width: 560px) {
  .hero h1 {
    letter-spacing: -0.06em;
  }

  .button {
    font-size: 0.84rem;
  }
}

/* Fondo de datos: sutil, liviano y adaptable a cualquier tamaño de pantalla. */
body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% -10%, rgba(52, 187, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 86% 16%, rgba(13, 140, 214, 0.17), transparent 32rem),
    linear-gradient(180deg, #062446 0%, #061f3f 56%, #041a34 100%);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(116, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 214, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.12) 62%, transparent 92%);
}

/* Circuitos y nodos decorativos: refuerzan la identidad digital sin competir con el contenido. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background:
    radial-gradient(circle at 21% 73%, rgba(78, 209, 255, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 32%, rgba(91, 227, 178, 0.3) 0 3px, transparent 4px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1000'%3E%3Cg fill='none' stroke='%234ac8ff' stroke-width='1.4' opacity='.42'%3E%3Cpath d='M0 185H185l62 62h156l70-70h168'/%3E%3Cpath d='M1600 116h-164l-72 72h-170l-58 58h-150'/%3E%3Cpath d='M0 774h130l84-84h196l66 66h150'/%3E%3Cpath d='M1600 832h-174l-68-68h-168l-54-54H972'/%3E%3Cpath d='M612 0v120l58 58v132'/%3E%3Cpath d='M1016 1000v-122l-58-58V690'/%3E%3C/g%3E%3Cg fill='%2367dafe'%3E%3Ccircle cx='247' cy='247' r='4'/%3E%3Ccircle cx='473' cy='177' r='4'/%3E%3Ccircle cx='1364' cy='188' r='4'/%3E%3Ccircle cx='214' cy='690' r='4'/%3E%3Ccircle cx='1426' cy='832' r='4'/%3E%3Ccircle cx='670' cy='310' r='4'/%3E%3Ccircle cx='958' cy='690' r='4'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.72) 56%, transparent 94%);
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -130px;
  width: min(55vw, 710px);
  height: 470px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 470'%3E%3Cg fill='none' stroke='%2352d2ff' stroke-width='2'%3E%3Cpath opacity='.52' d='M0 365 L86 318 L148 332 L225 200 L306 255 L382 125 L465 190 L548 74 L625 142 L720 35'/%3E%3Cpath opacity='.24' d='M0 408 L105 360 L200 390 L300 278 L390 326 L505 220 L598 268 L720 164'/%3E%3C/g%3E%3Cg fill='%2367dafe'%3E%3Ccircle cx='225' cy='200' r='5'/%3E%3Ccircle cx='382' cy='125' r='5'/%3E%3Ccircle cx='548' cy='74' r='5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-panel {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 102, 149, 0.28), rgba(5, 34, 66, 0.86) 45%, rgba(7, 44, 77, 0.8)),
    rgba(5, 34, 66, 0.9);
  backdrop-filter: blur(10px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  opacity: 0.88;
  background: linear-gradient(90deg, transparent 0%, #52d6ff 28%, #68e0aa 52%, #52d6ff 76%, transparent 100%);
  box-shadow: 0 0 20px rgba(82, 214, 255, 0.62);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.12;
}

/* Flujo de información: muestra cómo un registro se transforma en gestión. */
.connected-flow {
  position: relative;
  margin: 0 auto 92px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(82, 214, 255, 0.32);
  border-radius: 24px;
  background:
    linear-gradient(132deg, rgba(14, 82, 124, 0.38), rgba(5, 32, 62, 0.9) 52%, rgba(11, 70, 105, 0.34)),
    rgba(5, 31, 62, 0.82);
  box-shadow: 0 24px 58px rgba(0, 7, 22, 0.24);
}

.connected-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background-image:
    linear-gradient(90deg, transparent 0 24%, rgba(91, 222, 255, 0.12) 24.1% 24.25%, transparent 24.35% 49.7%, rgba(104, 224, 170, 0.15) 49.8% 49.95%, transparent 50.05% 74.7%, rgba(91, 222, 255, 0.12) 74.8% 74.95%, transparent 75.05%),
    linear-gradient(rgba(119, 218, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 46px;
}

.connected-flow > * {
  position: relative;
  z-index: 1;
}

.connected-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  align-items: center;
  gap: 52px;
  max-width: 100%;
  margin: 0 0 34px;
}

.connected-heading h2 {
  max-width: 610px;
  font-size: clamp(1.95rem, 2.55vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.046em;
}

.connected-heading-copy .eyebrow {
  margin-bottom: 14px;
}

.connected-summary {
  max-width: 400px;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(102, 214, 255, 0.34);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-step {
  position: relative;
  min-height: 218px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(104, 214, 255, 0.25);
  border-radius: 18px;
  background: rgba(3, 30, 57, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 52px;
  right: -17px;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, #4fcfff, #6be0b2);
}

.flow-step:not(:last-child)::before {
  content: "›";
  position: absolute;
  z-index: 3;
  top: 39px;
  right: -22px;
  color: #6be0b2;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 43px;
  height: 28px;
  margin-bottom: 24px;
  padding: 0 10px;
  border: 1px solid rgba(97, 212, 255, 0.42);
  border-radius: 999px;
  color: #6bd4ff;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-step h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.flow-outcome {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 2px solid #56d5ff;
  border-radius: 0 13px 13px 0;
  background: rgba(69, 191, 248, 0.08);
}

.flow-outcome .status-dot {
  flex: 0 0 auto;
  margin-top: 0.34rem;
}

.flow-outcome p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.flow-outcome strong {
  color: var(--white);
}

.efficiency-impact {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 52px;
  align-items: center;
  margin: 0 auto 92px;
  padding: 42px 48px;
  border-top: 1px solid rgba(110, 218, 255, 0.26);
  border-bottom: 1px solid rgba(110, 218, 255, 0.2);
  background: linear-gradient(90deg, rgba(8, 53, 86, 0.38), rgba(7, 39, 71, 0.1));
}

.efficiency-copy h2 {
  max-width: 625px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.efficiency-copy > p:last-child {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.impact-grid article {
  min-height: 192px;
  padding: 22px 18px;
  border: 1px solid rgba(106, 213, 255, 0.24);
  border-radius: 16px;
  background: rgba(4, 32, 61, 0.68);
}

.impact-grid span {
  display: block;
  margin-bottom: 22px;
  color: #65d7fe;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.impact-grid h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.impact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.product-proof {
  margin: 0 auto 92px;
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 28px;
}

.proof-heading h2 {
  max-width: 690px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.13;
  letter-spacing: -0.05em;
}

.proof-heading > p {
  max-width: 430px;
  margin: 0;
  padding-left: 23px;
  border-left: 1px solid rgba(104, 218, 255, 0.34);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

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

.product-view {
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(104, 218, 255, 0.28);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(12, 61, 98, 0.86), rgba(3, 28, 55, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 11, 31, 0.16);
}

.operator-view { border-top-color: rgba(84, 213, 172, 0.66); }
.supervisor-view { border-top-color: rgba(93, 201, 255, 0.72); }
.maintenance-view { border-top-color: rgba(255, 180, 96, 0.72); }

.view-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8dcf3;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.view-index {
  display: grid;
  width: 31px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(110, 216, 255, 0.46);
  border-radius: 99px;
  color: #6fdbff;
  font-family: "Sora", sans-serif;
  font-size: 0.71rem;
}

.product-view h3 {
  margin: 17px 0 8px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  line-height: 1.27;
  letter-spacing: -0.035em;
}

.product-view > p {
  min-height: 77px;
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.56;
}

.product-window {
  overflow: hidden;
  min-height: 179px;
  border: 1px solid rgba(104, 218, 255, 0.28);
  border-radius: 13px;
  background: #062b4b;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(115, 208, 244, 0.2);
  background: rgba(3, 23, 45, 0.65);
}

.window-bar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(148, 214, 239, 0.54);
}

.window-bar strong {
  overflow: hidden;
  margin-left: 4px;
  color: #d9effa;
  font-size: 0.64rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-content { padding: 13px; }

.window-chip {
  display: inline-block;
  padding: 4px 7px;
  border-radius: 6px;
  color: #a6f5d7;
  background: rgba(34, 181, 128, 0.17);
  font-size: 0.67rem;
  font-weight: 800;
}

.window-chip.warning {
  color: #ffcc87;
  background: rgba(246, 159, 44, 0.18);
}

.window-fields,
.metric-row,
.document-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.window-fields span,
.metric-row span,
.document-row span {
  padding: 8px 7px;
  border: 1px solid rgba(115, 208, 244, 0.16);
  border-radius: 6px;
  color: #a9d1e4;
  font-size: 0.61rem;
  line-height: 1.35;
}

.window-fields b,
.metric-row b {
  display: block;
  color: var(--white);
  font-size: 0.72rem;
}

.metric-row { grid-template-columns: repeat(3, 1fr); }
.metric-row span { text-align: center; }

.trend-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 44px;
  margin: 12px 1px 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(115, 208, 244, 0.25);
}

.trend-bars i {
  display: block;
  flex: 1;
  min-width: 8px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#4dd2fc, #1988c6);
}

.trend-bars i:nth-child(1) { height: 34%; }
.trend-bars i:nth-child(2) { height: 61%; }
.trend-bars i:nth-child(3) { height: 43%; }
.trend-bars i:nth-child(4) { height: 78%; }
.trend-bars i:nth-child(5) { height: 52%; }
.trend-bars i:nth-child(6) { height: 90%; }
.trend-bars i:nth-child(7) { height: 68%; }

.maintenance-line {
  display: grid;
  gap: 7px;
}

.maintenance-line b {
  color: #e5f1f7;
  font-size: 0.69rem;
  line-height: 1.36;
}

.document-row span { color: #b7d8e8; }

.window-note {
  margin-top: 10px;
  color: #86b7ce;
  font-size: 0.61rem;
  line-height: 1.35;
}

.product-view > small {
  display: block;
  margin-top: 14px;
  color: #79c9eb;
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 940px) {
  .hero::after {
    top: 180px;
    right: -230px;
    width: 720px;
    opacity: 0.24;
  }

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

  .flow-step:nth-child(2)::after,
  .flow-step:nth-child(2)::before {
    display: none;
  }

  .connected-heading,
  .efficiency-impact,
  .proof-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .connected-summary {
    max-width: 640px;
  }

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

  .product-views {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero::after {
    top: 250px;
    right: -330px;
    width: 640px;
    opacity: 0.18;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.3vw, 2.75rem);
    line-height: 1.07;
  }

  .connected-flow {
    margin-bottom: 64px;
    padding: 30px 20px;
    border-radius: 19px;
  }

  .connected-heading {
    margin-bottom: 24px;
  }

  .connected-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }

  .connected-summary {
    padding-left: 17px;
    font-size: 0.96rem;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-step {
    min-height: auto;
    padding: 21px 19px 20px;
  }

  .flow-number {
    margin-bottom: 15px;
  }

  .flow-step:not(:last-child)::after,
  .flow-step:not(:last-child)::before {
    display: none;
  }

  .flow-outcome {
    margin-top: 16px;
    padding: 16px;
  }

  .efficiency-impact {
    gap: 28px;
    margin-bottom: 64px;
    padding: 32px 20px;
  }

  .efficiency-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

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

  .impact-grid article {
    min-height: auto;
    padding: 18px;
  }

  .impact-grid span {
    margin-bottom: 13px;
  }

  .product-proof {
    margin-bottom: 64px;
  }

  .proof-heading {
    margin-bottom: 22px;
  }

  .proof-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .proof-heading > p {
    padding-left: 17px;
    font-size: 0.96rem;
  }

  .product-views {
    grid-template-columns: 1fr;
  }

  .product-view {
    padding: 21px;
  }

  .product-view > p {
    min-height: auto;
  }
}
