:root {
  --ink: #17222d;
  --ink-deep: #0d151d;
  --ink-soft: #263644;
  --teal: #0f9f8f;
  --teal-bright: #22c4b2;
  --mint: #d9f6f1;
  --paper: #f4f5f1;
  --white: #ffffff;
  --line: #dce2df;
  --muted: #697780;
  --danger: #e45a54;
  --shadow: 0 28px 80px rgba(13, 21, 29, 0.16);
  --container: min(1240px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

img,
svg {
  display: block;
}

em {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 124px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 20px;
  height: 2px;
  background: var(--teal);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading h2,
.workflow h2,
.security h2,
.download h2 {
  margin: 19px 0 0;
  max-width: 830px;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 630;
  letter-spacing: -0.057em;
  line-height: 0.99;
}

.section-heading h2 em,
.workflow h2 em,
.security h2 em,
.download h2 em {
  letter-spacing: -0.045em;
}

.section-heading > p,
.security-copy > p,
.workflow-copy > p,
.download-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.64fr);
  align-items: end;
  gap: 64px;
}

.split-heading > p {
  margin: 0 0 8px;
}

.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p {
  max-width: 650px;
  margin: 26px auto 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 7px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(15, 159, 143, 0.25);
}

.button-primary:hover {
  background: #0c8e80;
  box-shadow: 0 16px 36px rgba(15, 159, 143, 0.34);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 13px;
}

.button-small svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-large {
  min-height: 64px;
  padding-inline: 25px;
  font-size: 16px;
}

.button-large small {
  margin-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--teal-bright);
  font-size: 17px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.text-link-light {
  color: var(--white);
}

.windows-mark {
  display: grid;
  width: 20px;
  height: 20px;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.windows-mark i {
  background: currentColor;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
}

.site-header.is-scrolled {
  height: 84px;
  border-color: rgba(255, 255, 255, 0.05);
  background: rgba(13, 21, 29, 0.975);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 142px;
  height: 48px;
  flex: 0 0 142px;
  align-items: center;
}

.brand img {
  width: 142px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(23px, 2.5vw, 40px);
}

.site-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--teal-bright);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:hover {
  color: var(--white);
}

.site-nav > a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  z-index: 2;
  display: none;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: transparent;
}

.menu-button span {
  position: absolute;
  width: 19px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(7, 12, 17, 0.94) 0%, rgba(7, 12, 17, 0.75) 34%, rgba(7, 12, 17, 0.06) 68%, rgba(7, 12, 17, 0.15) 100%), linear-gradient(0deg, rgba(7, 12, 17, 0.56) 0%, transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 72px;
}

.hero-copy {
  width: min(710px, 61vw);
}

.hero h1 {
  margin: 24px 0 0;
  font-size: clamp(58px, 7.2vw, 102px);
  font-weight: 620;
  letter-spacing: -0.064em;
  line-height: 0.91;
}

.hero h1 em {
  display: inline-block;
  color: #3ad1c0;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

.availability b {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 650;
}

.availability i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero-signal {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: flex;
  width: 340px;
  align-items: center;
  gap: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 17, 23, 0.9);
  padding: 17px 18px;
}

.hero-signal strong,
.hero-signal small {
  display: block;
}

.hero-signal strong {
  font-size: 13px;
}

.hero-signal small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.signal-pulse {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(34, 196, 178, 0.3);
  border-radius: 50%;
}

.signal-pulse span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.signal-pulse span::after {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(34, 196, 178, 0.18);
  content: "";
  animation: pulse 2s infinite;
  will-change: transform, opacity;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 27px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 15px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
}

.scroll-cue span::after {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 1px;
  height: 5px;
  background: var(--white);
  content: "";
  animation: scroll-dot 1.7s infinite;
}

.intro {
  overflow: hidden;
  background: var(--paper);
}

.product-stage {
  position: relative;
  margin-top: 76px;
  padding: 0 34px 22px;
}

.product-glow {
  position: absolute;
  top: -70px;
  left: 50%;
  width: 70%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15, 159, 143, 0.12) 0%, rgba(15, 159, 143, 0.055) 42%, transparent 72%);
  transform: translateX(-50%);
}

.app-window {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(23, 34, 45, 0.12);
  border-radius: 18px;
  background: #e9edeb;
  box-shadow: var(--shadow);
  contain: paint;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  padding: 23px 18px 19px;
  color: var(--white);
}

.app-sidebar > img {
  width: 104px;
  height: auto;
  margin: 1px 0 35px 3px;
}

.app-menu {
  display: grid;
  gap: 5px;
}

.app-menu > span {
  display: flex;
  min-height: 39px;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
}

.app-menu > span.is-active {
  background: rgba(34, 196, 178, 0.13);
  color: var(--white);
}

.app-menu svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.app-menu > span:first-child svg {
  fill: currentColor;
  stroke: none;
}

.app-menu b {
  margin-left: auto;
  border-radius: 9px;
  background: var(--danger);
  padding: 1px 5px;
  color: var(--white);
  font-size: 8px;
}

.app-user {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 17px 2px 0;
}

.app-user > span,
.avatar {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.app-user b,
.app-user small {
  display: block;
}

.app-user b {
  font-size: 9px;
}

.app-user small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
}

.app-main {
  min-width: 0;
}

.app-topbar {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e8e6;
  background: rgba(255, 255, 255, 0.88);
  padding-inline: 30px;
}

.preview-tabs {
  display: flex;
  gap: 4px;
}

.preview-tabs button {
  border: 0;
  border-radius: 5px;
  background: transparent;
  padding: 8px 11px;
  color: #7a858a;
  font-size: 9px;
  font-weight: 700;
}

.preview-tabs button.is-active {
  background: #e9f6f4;
  color: #087f74;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-actions > span:first-child {
  width: 17px;
  height: 17px;
  border: 1px solid #b7c0bd;
  border-radius: 50%;
}

.app-content {
  padding: 36px 38px;
}

.app-content > small {
  color: var(--teal);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-content > h3 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.app-content > p {
  margin: 5px 0 0;
  color: #899499;
  font-size: 10px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 28px;
}

.stats-row article {
  min-width: 0;
  border: 1px solid #e3e8e5;
  border-radius: 9px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(18, 32, 42, 0.035);
}

.stats-row span,
.stats-row strong,
.stats-row i {
  display: block;
}

.stats-row span {
  color: #768288;
  font-size: 8px;
  font-weight: 650;
}

.stats-row strong {
  margin-top: 8px;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.stats-row i {
  margin-top: 6px;
  color: var(--teal);
  font-size: 7px;
  font-style: normal;
}

.stats-row i.warning {
  color: #d06c3c;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 13px;
  margin-top: 14px;
}

.chart-card,
.task-card {
  min-width: 0;
  border: 1px solid #e3e8e5;
  border-radius: 9px;
  background: var(--white);
  padding: 20px;
}

.chart-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-card b,
.task-card b {
  font-size: 9px;
}

.chart-card small {
  color: #9aa4a8;
  font-size: 7px;
}

.chart-card svg {
  width: 100%;
  height: 150px;
  margin-top: 15px;
  overflow: visible;
}

.grid-line {
  fill: none;
  stroke: #e9ecea;
  stroke-width: 1;
}

.area {
  fill: url(#area);
}

.line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-labels {
  display: flex !important;
  justify-content: space-between !important;
  color: #a0a9ad;
  font-size: 7px;
}

.task-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.task-head span {
  border-radius: 10px;
  background: #eef5f4;
  padding: 3px 7px;
  color: var(--teal);
  font-size: 6px;
  font-weight: 800;
}

.task-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #edf0ee;
  padding-block: 14px;
}

.task-item .status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status.high { background: var(--danger); }
.status.medium { background: #dfa441; }
.status.low { background: var(--teal); }

.task-item b,
.task-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-item small {
  margin-top: 3px;
  color: #99a3a7;
  font-size: 6px;
}

.task-item > span {
  color: #7c878c;
  font-size: 7px;
  font-weight: 700;
}

.capabilities {
  background: #eaeeeb;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
  margin-top: 70px;
}

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 405px;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 45, 0.1);
  border-radius: 17px;
  background: #f8f9f6;
  padding: 30px;
  contain: paint;
}

.feature-card.feature-large {
  grid-column: span 8;
}

.feature-card.feature-wide {
  display: grid;
  min-height: 340px;
  grid-column: span 8;
  grid-template-columns: 0.8fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.feature-card:last-child {
  min-height: 275px;
  grid-column: span 12;
  padding-right: 48%;
}

.feature-card:last-child::after {
  position: absolute;
  top: 50%;
  right: 9%;
  width: 260px;
  height: 260px;
  border: 1px solid #dde4e0;
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(15, 159, 143, 0.025), 0 0 0 90px rgba(15, 159, 143, 0.016);
  content: "";
  transform: translateY(-50%);
}

.feature-card:last-child .module-pills {
  z-index: 1;
  right: 7%;
  bottom: 50%;
  left: auto;
  width: 300px;
  justify-content: center;
  transform: translateY(50%);
}

.feature-card > span,
.feature-copy > span,
.feature-card > div > span {
  color: #a0aba7;
  font-size: 10px;
  font-weight: 750;
}

.feature-card h3 {
  max-width: 590px;
  margin: 14px 0 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.feature-card p {
  max-width: 560px;
  margin: 17px 0 0;
  color: #718078;
  font-size: 14px;
  line-height: 1.7;
}

.feature-icon {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid #cbd6d1;
  border-radius: 50%;
  color: var(--teal);
}

.feature-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.feature-dark {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 40px;
  background: var(--ink);
  color: var(--white);
}

.feature-dark .feature-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--teal-bright);
}

.feature-dark > div:nth-child(2) {
  align-self: end;
  padding-top: 80px;
}

.feature-dark p {
  color: rgba(255, 255, 255, 0.52);
}

.equipment-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.machine {
  position: relative;
  width: 215px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, #42515c, #1c2933 70%);
  box-shadow: 25px 28px 35px rgba(0, 0, 0, 0.25);
  transform: skewY(-3deg);
}

.machine::before {
  position: absolute;
  inset: 20px 18px 88px;
  border: 9px solid #0c1319;
  background: linear-gradient(145deg, #223440, #0c151c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  content: "";
}

.machine::after {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
}

.machine span {
  position: absolute;
  z-index: 1;
  top: 39px;
  right: 40px;
  width: 48px;
  height: 38px;
  border: 3px solid #111a21;
  background: #1d7e76;
}

.machine i,
.machine b {
  position: absolute;
  z-index: 2;
  bottom: 39px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.machine i { left: 42px; background: var(--teal-bright); box-shadow: 0 0 13px rgba(34, 196, 178, 0.7); }
.machine b { left: 59px; background: #d7a949; }

.machine-status {
  position: absolute;
  right: -5px;
  bottom: 20px;
  display: flex;
  width: 150px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(22, 34, 45, 0.96);
  padding: 11px 13px;
}

.machine-status > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 5px rgba(34, 196, 178, 0.11);
}

.machine-status small,
.machine-status b {
  display: block;
}

.machine-status small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 7px;
}

.machine-status b {
  margin-top: 2px;
  font-size: 10px;
}

.feature-teal {
  background: var(--teal);
  color: var(--white);
}

.feature-teal .feature-icon {
  border-color: rgba(255, 255, 255, 0.27);
  color: var(--white);
}

.feature-teal > span,
.feature-teal p {
  color: rgba(255, 255, 255, 0.66);
}

.calendar-strip {
  position: absolute;
  right: 25px;
  bottom: 23px;
  left: 25px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  padding-top: 17px;
}

.calendar-strip i {
  position: relative;
  display: grid;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-style: normal;
}

.calendar-strip i.active {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.calendar-strip i.active small {
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

.mini-alert {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  border: 1px solid #e1e5e2;
  border-radius: 8px;
  background: var(--white);
  padding: 13px;
  box-shadow: 0 10px 28px rgba(22, 34, 45, 0.07);
}

.mini-alert > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(228, 90, 84, 0.1);
}

.mini-alert small,
.mini-alert b {
  display: block;
}

.mini-alert small {
  color: var(--danger);
  font-size: 7px;
  font-weight: 750;
  text-transform: uppercase;
}

.mini-alert b {
  margin-top: 3px;
  font-size: 9px;
}

.mini-alert > span {
  color: var(--teal);
  font-size: 18px;
}

.work-order {
  border: 1px solid #dce3df;
  border-radius: 10px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 15px 35px rgba(23, 34, 45, 0.06);
}

.work-order-top,
.work-order-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-order-top > span {
  color: #8b9692;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.work-order-top b {
  border-radius: 10px;
  background: var(--mint);
  padding: 4px 8px;
  color: #087f74;
  font-size: 7px;
}

.work-order > strong,
.work-order > small {
  display: block;
}

.work-order > strong {
  margin-top: 22px;
  font-size: 14px;
}

.work-order > small {
  margin-top: 5px;
  color: #8a9691;
  font-size: 8px;
}

.progress {
  height: 5px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 4px;
  background: #e8ecea;
}

.progress i {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.work-order-meta {
  margin-top: 11px;
  color: #88938f;
  font-size: 7px;
}

.module-pills {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.module-pills i {
  border: 1px solid #d9e0dc;
  border-radius: 17px;
  background: var(--white);
  padding: 7px 11px;
  color: #71807a;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.workflow {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.workflow::before {
  position: absolute;
  top: -160px;
  left: -180px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(34, 196, 178, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(34, 196, 178, 0.025), 0 0 0 160px rgba(34, 196, 178, 0.018);
  content: "";
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 150px);
}

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

.workflow h2 {
  margin-top: 20px;
  font-size: clamp(46px, 5vw, 68px);
}

.workflow-copy > p {
  max-width: 470px;
  margin: 28px 0 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
}

.workflow-steps {
  counter-reset: steps;
}

.workflow-steps article {
  display: grid;
  min-height: 164px;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.workflow-steps article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.workflow-steps article > b {
  color: var(--teal-bright);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.workflow-steps h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.workflow-steps p {
  max-width: 440px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

.workflow-steps article > span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.security {
  overflow: hidden;
  background: var(--paper);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: clamp(70px, 9vw, 135px);
}

.security-visual {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
  contain: paint;
}

.security-visual::before {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid #d8e0dc;
  border-radius: 50%;
  content: "";
}

.orbital {
  position: absolute;
  border: 1px dashed #c7d2cd;
  border-radius: 50%;
}

.orbital-one {
  width: 500px;
  height: 270px;
  transform: rotate(22deg);
}

.orbital-two {
  width: 260px;
  height: 500px;
  transform: rotate(47deg);
}

.shield {
  position: relative;
  z-index: 2;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 24px 65px rgba(22, 34, 45, 0.23), 0 0 0 18px rgba(15, 159, 143, 0.08);
}

.shield svg {
  width: 80px;
  fill: none;
  stroke: var(--teal-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.security-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dce3df;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.97);
  padding: 11px 14px;
  color: #52615a;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 11px 28px rgba(23, 34, 45, 0.08);
}

.security-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.chip-one { top: 105px; left: 20px; }
.chip-two { right: 0; bottom: 143px; }
.chip-three { bottom: 55px; left: 90px; }

.security h2 {
  font-size: clamp(46px, 5vw, 69px);
}

.security-copy > p {
  max-width: 540px;
  margin: 27px 0 0;
  font-size: 16px;
}

.security-copy ul {
  display: grid;
  gap: 21px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.security-copy li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
}

.security-copy li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.security-copy li b,
.security-copy li small {
  display: block;
}

.security-copy li b {
  font-size: 14px;
}

.security-copy li small {
  max-width: 460px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.download {
  overflow: hidden;
  padding-top: 20px;
  background: var(--paper);
}

.download-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
  contain: paint;
}

.download-card::before {
  position: absolute;
  right: -160px;
  bottom: -230px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(34, 196, 178, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(34, 196, 178, 0.025), 0 0 0 180px rgba(34, 196, 178, 0.017);
  content: "";
}

.download-copy {
  position: relative;
  z-index: 3;
  width: 53%;
  padding: 72px 0 66px 74px;
}

.download h2 {
  font-size: clamp(48px, 5.2vw, 72px);
}

.download-copy > p {
  max-width: 540px;
  margin: 25px 0 29px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 15px;
}

.download-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.download-note i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(34, 196, 178, 0.08);
}

.laptop {
  position: absolute;
  z-index: 2;
  right: -100px;
  bottom: 57px;
  width: min(57%, 690px);
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
  transform-origin: right bottom;
}

.laptop-screen {
  position: relative;
  aspect-ratio: 1.62;
  overflow: hidden;
  border: 9px solid #2f3d47;
  border-bottom-width: 14px;
  border-radius: 13px 13px 6px 6px;
  background: #e9edeb;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.screen-bar {
  display: flex;
  height: 12%;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  padding: 0 4%;
}

.screen-bar img {
  width: 15%;
}

.screen-bar i {
  width: 3%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
}

.screen-content {
  padding: 6%;
}

.screen-content > span {
  display: block;
  width: 10%;
  height: 4px;
  background: var(--teal);
}

.screen-title {
  width: 43%;
  height: 14px;
  margin-top: 3%;
  background: #263642;
}

.screen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
  margin-top: 5%;
}

.screen-stats i {
  height: 52px;
  border: 1px solid #d8dfdc;
  background: var(--white);
}

.screen-chart {
  margin-top: 4%;
  border: 1px solid #d8dfdc;
  background: var(--white);
  padding: 4%;
}

.screen-chart svg {
  width: 100%;
  height: 105px;
}

.screen-chart path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
}

.laptop-base {
  position: relative;
  left: -4%;
  width: 108%;
  height: 18px;
  border-radius: 3px 3px 30px 30px;
  background: linear-gradient(#84919a, #34424b);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.site-footer {
  background: var(--ink-deep);
  padding: 75px 0 30px;
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 65px;
}

.footer-top > div:first-child img {
  width: 146px;
}

.footer-top > div:first-child p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.39);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 80px;
}

.footer-links > div {
  display: grid;
  gap: 11px;
}

.footer-links b {
  margin-bottom: 5px;
  font-size: 11px;
}

.footer-links a,
.footer-links button,
.footer-links span {
  border: 0;
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.41);
  font-size: 10px;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
}

.installer-dialog {
  width: min(520px, calc(100vw - 30px));
  border: 0;
  border-radius: 16px;
  background: var(--white);
  padding: 42px;
  color: var(--ink);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.installer-dialog::backdrop {
  background: rgba(6, 11, 15, 0.72);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef1ef;
  color: #65716b;
  font-size: 21px;
  line-height: 1;
}

.dialog-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--teal-bright);
}

.dialog-icon .windows-mark {
  width: 25px;
  height: 25px;
}

.installer-dialog h2 {
  margin: 15px 0 0;
  font-size: 32px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.installer-dialog > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.dialog-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.dialog-meta span {
  border: 1px solid #e0e5e2;
  border-radius: 7px;
  background: #f6f7f4;
  padding: 12px;
  color: #89938e;
  font-size: 9px;
}

.dialog-meta b {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 11px;
}

.installer-dialog .button {
  width: 100%;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: var(--ink);
  padding: 15px 18px;
  color: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.toast b,
.toast small {
  display: block;
}

.toast b { font-size: 11px; }
.toast small { margin-top: 2px; color: rgba(255,255,255,.48); font-size: 9px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* =========================================================
   UREDNIČKI SMJER
   Mirnija tipografija, konkretni radni scenariji i manje
   dekoracije koja ne nosi informaciju.
========================================================= */

/* Prethodna urednička varijanta je isključena povratom izvornog dizajna.

em {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.button,
.button-small,
.button-large {
  border-radius: 4px;
}

.eyebrow {
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.4vw, 88px);
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.hero-copy > p {
  max-width: 640px;
}

.section-heading h2,
.workflow h2,
.security h2,
.download h2 {
  font-size: clamp(42px, 4.7vw, 66px);
  letter-spacing: -0.048em;
  line-height: 1.02;
}

.app-window {
  border-radius: 8px;
}

.capabilities {
  background: #ecefeb;
}

.capability-heading {
  align-items: end;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid #cfd7d3;
  border-left: 1px solid #cfd7d3;
}

.role-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  border-right: 1px solid #cfd7d3;
  border-bottom: 1px solid #cfd7d3;
  background: #f5f6f3;
  padding: 30px;
}

.role-card header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.role-number {
  padding-top: 5px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.role-card header small,
.role-card header h3 {
  display: block;
}

.role-card header small {
  color: #7b8982;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-card header h3 {
  margin: 5px 0 0;
  font-size: 27px;
  font-weight: 640;
  letter-spacing: -0.035em;
}

.role-card > p {
  margin: 28px 0 0;
  color: #64736c;
  font-size: 14px;
  line-height: 1.7;
}

.role-card > ul {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.role-card > ul li {
  display: grid;
  min-height: 46px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  border-top: 1px solid #dce2df;
  color: #394941;
  font-size: 11px;
  font-weight: 650;
}

.role-card > ul li:last-child {
  border-bottom: 1px solid #dce2df;
}

.role-card > ul li span {
  color: #9aa59f;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.role-sample {
  display: grid;
  min-height: 62px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  border: 1px solid #d9e0dc;
  background: #fff;
  padding: 12px 13px;
}

.sample-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15, 159, 143, 0.08);
}

.sample-status.warning {
  background: #d7983d;
  box-shadow: 0 0 0 5px rgba(215, 152, 61, 0.1);
}

.role-sample small,
.role-sample b {
  display: block;
}

.role-sample small {
  color: #85918b;
  font-size: 7px;
}

.role-sample b {
  margin-top: 3px;
  font-size: 10px;
}

.role-sample > strong {
  color: #78847e;
  font-size: 9px;
}

.role-card-dark {
  background: var(--ink);
  color: #fff;
}

.role-card-dark header small,
.role-card-dark > p {
  color: rgba(255, 255, 255, 0.54);
}

.role-card-dark > ul li {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.role-card-dark > ul li:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.role-card-dark > ul li span {
  color: rgba(255, 255, 255, 0.32);
}

.role-card-dark .role-sample {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.role-card-dark .role-sample small,
.role-card-dark .role-sample > strong {
  color: rgba(255, 255, 255, 0.45);
}

.role-chart {
  grid-template-columns: minmax(0, 0.7fr) minmax(80px, 1fr);
}

.role-chart svg {
  width: 100%;
  height: 31px;
}

.role-chart path {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.module-index {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  align-items: center;
  gap: 50px;
  border-right: 1px solid #cfd7d3;
  border-bottom: 1px solid #cfd7d3;
  border-left: 1px solid #cfd7d3;
  background: #f5f6f3;
  padding: 28px 30px;
}

.module-index > div > span {
  font-size: 12px;
  font-weight: 750;
}

.module-index > div > p {
  margin: 5px 0 0;
  color: #7b8781;
  font-size: 10px;
}

.module-index ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-index li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #526059;
  font-size: 10px;
  font-weight: 650;
}

.module-index li b {
  color: var(--teal);
  font-size: 8px;
}

.workflow::before {
  display: none;
}

.shift-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(70px, 9vw, 135px);
}

.shift-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.shift-intro h2 {
  margin: 20px 0 0;
}

.shift-intro > p {
  max-width: 450px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.7;
}

.shift-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.shift-meta span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shift-timeline {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.shift-timeline article {
  display: grid;
  min-height: 190px;
  grid-template-columns: 52px 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.shift-timeline time {
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.person-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 800;
}

.person-system {
  border-color: rgba(34, 196, 178, 0.36);
  background: rgba(34, 196, 178, 0.1);
  color: var(--teal-bright);
}

.shift-timeline small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 650;
}

.shift-timeline h3 {
  margin: 7px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.shift-timeline p {
  max-width: 510px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
  line-height: 1.6;
}

.event-tag {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-active {
  border-color: rgba(215, 152, 61, 0.3);
  color: #e7b566;
}

.event-done {
  border-color: rgba(34, 196, 178, 0.3);
  color: var(--teal-bright);
}

.permission-board {
  border: 1px solid #d4dcd8;
  background: #fff;
  box-shadow: 0 20px 55px rgba(23, 34, 45, 0.08);
}

.permission-head {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfe5e2;
  padding: 20px 24px;
}

.permission-head small,
.permission-head b {
  display: block;
}

.permission-head small {
  color: var(--teal);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.permission-head b {
  margin-top: 5px;
  font-size: 20px;
}

.permission-head > span {
  border: 1px solid #dce3df;
  padding: 5px 8px;
  color: #74817b;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.permission-labels,
.permission-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  align-items: center;
  column-gap: 8px;
  padding-inline: 24px;
}

.permission-labels {
  min-height: 42px;
  background: #f1f3f0;
  color: #89958f;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.permission-row {
  min-height: 62px;
  border-top: 1px solid #edf0ee;
}

.permission-row b {
  font-size: 10px;
}

.permission-row span {
  color: #526159;
  font-size: 8px;
}

.permission-row span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  vertical-align: 1px;
}

.permission-row span.permission-off {
  color: #a6afaa;
}

.permission-row span.permission-off::before {
  display: none;
}

.permission-board > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  border-top: 1px solid #dfe5e2;
  padding: 15px 24px;
  color: #7e8a84;
  font-size: 8px;
}

.permission-board > p span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.security h2 {
  font-size: clamp(40px, 4.2vw, 60px);
}

.download-card {
  border-radius: 0;
}

.download-card::before {
  opacity: 0.45;
}

@media (max-width: 1080px) {
  .role-card { min-height: 540px; padding: 25px; }
  .module-index { grid-template-columns: 1fr; gap: 20px; }
  .shift-layout { grid-template-columns: 0.72fr 1.28fr; gap: 55px; }
  .shift-timeline article { grid-template-columns: 48px 34px minmax(0, 1fr); padding-block: 24px; }
  .shift-timeline .event-tag { grid-column: 3; justify-self: start; }
}

@media (max-width: 820px) {
  .role-grid { grid-template-columns: 1fr; }
  .role-card { min-height: auto; }
  .role-sample { margin-top: 38px; }
  .module-index ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shift-layout { grid-template-columns: 1fr; gap: 55px; }
  .shift-intro { position: static; }
  .security-grid { grid-template-columns: 1fr; }
  .permission-board { order: 2; }
  .security-copy { order: 1; }
}

@media (max-width: 580px) {
  html { scroll-padding-top: 68px; }
  .hero h1 { font-size: clamp(45px, 13vw, 60px); }
  .role-grid { margin-top: 45px; }
  .role-card { padding: 24px 20px; }
  .role-card header h3 { font-size: 25px; }
  .module-index { padding: 24px 20px; }
  .module-index ul { grid-template-columns: 1fr; }
  .shift-timeline article { grid-template-columns: 46px 1fr; gap: 12px 15px; padding-block: 25px; }
  .shift-timeline .person-mark { grid-column: 1; grid-row: 2; }
  .shift-timeline article > div:nth-of-type(2) { grid-column: 2; grid-row: 1 / span 2; }
  .shift-timeline .event-tag { grid-column: 2; }
  .shift-timeline h3 { font-size: 20px; }
  .permission-labels,
  .permission-row { grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr)); padding-inline: 12px; column-gap: 5px; }
  .permission-row b { font-size: 9px; }
  .permission-row span { font-size: 7px; }
  .permission-row span::before { display: none; }
}

*/

@keyframes pulse {
  0% { opacity: 0.7; transform: scale(0.55); }
  70%, 100% { opacity: 0; transform: scale(1.75); }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(7px); }
}

@media (max-width: 1080px) {
  .section { padding-block: 100px; }
  .site-nav { gap: 20px; }
  .site-nav > a:nth-child(4) { display: none; }
  .hero-signal { right: -20px; }
  .product-stage { padding-inline: 0; }
  .app-window { min-height: 590px; grid-template-columns: 165px minmax(0, 1fr); }
  .app-content { padding: 30px 28px; }
  .feature-card { grid-column: span 6; }
  .feature-card.feature-large,
  .feature-card.feature-wide { grid-column: span 12; }
  .feature-card:last-child { grid-column: span 12; min-height: 280px; }
  .security-grid { gap: 45px; }
  .security-visual { transform: scale(.88); }
  .download-copy { width: 58%; padding-left: 52px; }
  .laptop { right: -155px; width: 62%; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 34px, 680px); }
  .section { padding-block: 82px; }
  .menu-button { display: grid; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    background: rgba(13, 21, 29, 0.98);
    padding: 95px max(24px, calc((100vw - 680px) / 2));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a,
  .site-nav > a:nth-child(4) { display: block; font-size: 25px; }
  .site-nav .button { margin-top: 12px; }
  .hero { min-height: 760px; height: 100svh; max-height: none; }
  .hero-image { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,12,17,.94), rgba(7,12,17,.69) 64%, rgba(7,12,17,.25)), linear-gradient(0deg, rgba(7,12,17,.7), transparent 50%); }
  .hero-copy { width: 86%; }
  .hero h1 { font-size: clamp(52px, 10vw, 76px); }
  .hero-signal { right: 0; bottom: 60px; width: 290px; }
  .scroll-cue { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .split-heading > p { max-width: 580px; }
  .product-stage { margin-top: 50px; }
  .app-window { min-height: 570px; grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .task-card { display: none; }
  .chart-card svg { height: 180px; }
  .feature-dark { grid-template-columns: 1fr 0.75fr; }
  .workflow-grid { grid-template-columns: 1fr; gap: 60px; }
  .security-grid { grid-template-columns: 1fr; gap: 20px; }
  .security-visual { order: 2; min-height: 510px; }
  .security-copy { order: 1; }
  .download-card { min-height: 840px; }
  .download-copy { width: 100%; padding: 58px 45px; }
  .laptop { right: -48px; bottom: 50px; width: 92%; }
  .footer-top { gap: 40px; }
}

@media (max-width: 580px) {
  :root { --container: calc(100% - 28px); }
  .section { padding-block: 70px; }
  .site-header,
  .site-header.is-scrolled { height: 68px; }
  .brand { width: 125px; height: 42px; flex-basis: 125px; }
  .brand img { width: 125px; height: 42px; }
  .hero { min-height: 700px; }
  .hero-inner { align-items: flex-end; padding: 110px 0 120px; }
  .hero-image { object-position: 67% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,12,17,.92), rgba(7,12,17,.42)), linear-gradient(0deg, rgba(7,12,17,.94) 0%, rgba(7,12,17,.3) 72%); }
  .hero-copy { width: 100%; }
  .hero h1 { margin-top: 18px; font-size: clamp(47px, 14.2vw, 66px); line-height: .94; }
  .hero-copy > p { margin-top: 24px; font-size: 15px; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 28px; }
  .hero-actions .text-link { align-self: flex-start; }
  .availability { flex-wrap: wrap; margin-top: 19px; }
  .availability > span { width: 100%; }
  .hero-signal { display: none; }
  .section-heading h2,
  .workflow h2,
  .security h2,
  .download h2 { font-size: clamp(39px, 12.2vw, 54px); }
  .section-heading > p { font-size: 15px; }
  .product-stage { width: calc(100vw - 14px); margin-left: -7px; }
  .app-window { min-height: 440px; border-radius: 10px; }
  .app-topbar { height: 55px; padding-inline: 14px; }
  .preview-tabs button { padding-inline: 7px; font-size: 8px; }
  .top-actions { display: none; }
  .app-content { padding: 22px 16px; }
  .app-content > h3 { font-size: 22px; }
  .stats-row { gap: 6px; margin-top: 20px; }
  .stats-row article { padding: 12px 9px; }
  .stats-row span { min-height: 22px; font-size: 7px; }
  .stats-row strong { font-size: 20px; }
  .stats-row i { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .chart-card { padding: 14px; }
  .chart-card svg { height: 125px; }
  .bento-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 45px; }
  .feature-card,
  .feature-card.feature-large,
  .feature-card.feature-wide,
  .feature-card:last-child { display: block; min-height: 380px; grid-column: auto; padding: 25px; }
  .feature-card h3 { font-size: 27px; }
  .feature-dark .feature-icon { position: static; }
  .feature-dark > div:nth-child(2) { padding-top: 0; }
  .equipment-visual { display: none; }
  .feature-wide .work-order { margin-top: 32px; }
  .feature-card:last-child::after { display: none; }
  .feature-card:last-child .module-pills { right: 25px; bottom: 25px; left: 25px; width: auto; justify-content: flex-start; transform: none; }
  .workflow-steps article { min-height: 190px; grid-template-columns: 34px 1fr; gap: 14px; }
  .workflow-steps article > span { display: none; }
  .workflow-steps h3 { font-size: 23px; }
  .workflow-steps p { font-size: 12px; }
  .security-visual { min-height: 390px; transform: scale(.78); margin-inline: -50px; }
  .security-copy > p { font-size: 15px; }
  .download { padding-top: 0; }
  .download .container { width: 100%; }
  .download-card { min-height: 720px; }
  .download-copy { padding: 50px 25px; }
  .download-copy > p { font-size: 14px; }
  .button-large { width: 100%; padding-inline: 18px; }
  .button-large small { margin-left: auto; }
  .laptop { right: -18px; bottom: 46px; width: 105%; }
  .laptop-base { left: 0; width: 100%; }
  .footer-top { flex-direction: column; }
  .footer-links { width: 100%; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 9px; }
  .installer-dialog { padding: 35px 23px 25px; }
  .installer-dialog h2 { font-size: 28px; }
  .dialog-meta { grid-template-columns: 1fr; }
  .toast { right: 14px; bottom: 14px; left: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
