:root {
  --ink-950: #061724;
  --ink-900: #071c2e;
  --ink-800: #0d2b42;
  --ink-700: #173d58;
  --blue-600: #0869e8;
  --blue-500: #1684f8;
  --blue-100: #e6f2ff;
  --orange-500: #f47a2f;
  --orange-100: #fff0e6;
  --white: #ffffff;
  --surface: #f4f7fb;
  --line: #dfe7ef;
  --text: #173249;
  --muted: #627589;
  --shadow-sm: 0 12px 30px rgba(7, 28, 46, 0.08);
  --shadow-lg: 0 28px 72px rgba(4, 18, 31, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shell: 1200px;
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

h1,
h2,
h3 {
  color: var(--ink-900);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.55rem, 7vw, 5.1rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--surface);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: #a9c5de;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--orange-500);
}

.eyebrow-dark {
  color: var(--blue-600);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 12px 26px rgba(8, 105, 232, 0.28);
}

.button-primary:hover {
  background: #075bc7;
  box-shadow: 0 15px 30px rgba(8, 105, 232, 0.34);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(209, 222, 234, 0.85);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(7, 28, 46, 0.09);
}

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

.brand {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  padding-right: 0.65rem;
}

.brand-name {
  color: var(--ink-900);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-name span {
  color: var(--blue-600);
}

.brand-mark {
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  background: var(--orange-500);
  border-radius: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #334d63;
  font-size: 0.9rem;
  font-weight: 650;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: calc(var(--header-height) + 4.5rem) 0 5.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(22, 132, 248, 0.24), transparent 31%),
    radial-gradient(circle at 11% 84%, rgba(244, 122, 47, 0.09), transparent 26%),
    linear-gradient(132deg, var(--ink-950), var(--ink-900) 52%, #0a2942);
}

.hero::after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-grid,
.final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, black, transparent 65%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  max-width: 720px;
}

.hero h1,
.workflow h2,
.final-cta h2 {
  color: var(--white);
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 2rem;
  color: #c1d3e2;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-caption {
  margin: 1.45rem 0 0;
  color: #8facbf;
  font-size: 0.875rem;
  font-weight: 620;
  letter-spacing: 0.02em;
}

.product-stage {
  position: relative;
  width: 100%;
}

.product-stage::before {
  position: absolute;
  z-index: -1;
  inset: 10% 8% -5%;
  background: var(--blue-500);
  border-radius: 40px;
  content: "";
  filter: blur(70px);
  opacity: 0.18;
}

.product-window {
  overflow: hidden;
  background: #eff4f8;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.window-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0.7rem 0.9rem;
  color: #426075;
  background: var(--white);
  border-bottom: 1px solid #dde7ef;
  font-size: 0.75rem;
  font-weight: 700;
}

.window-controls {
  display: flex;
  gap: 5px;
  margin-right: 0.75rem;
}

.window-controls span {
  width: 8px;
  height: 8px;
  background: #d7e1ea;
  border-radius: 50%;
}

.window-controls span:first-child {
  background: var(--orange-500);
}

.window-title {
  flex: 1;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.window-status i {
  width: 7px;
  height: 7px;
  background: #20a870;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(32, 168, 112, 0.13);
}

.dashboard {
  display: grid;
  min-height: 420px;
  grid-template-columns: 52px minmax(0, 1fr);
}

.dashboard-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  padding: 0.9rem 0;
  background: var(--ink-900);
  flex-direction: column;
}

.mini-brand {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 0.4rem;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
}

.nav-dot {
  width: 13px;
  height: 13px;
  border: 2px solid #5d768a;
  border-radius: 4px;
}

.nav-dot.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(244, 122, 47, 0.11);
}

.dashboard-main {
  min-width: 0;
  padding: 1rem;
}

.dashboard-heading,
.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dashboard-heading {
  margin-bottom: 1rem;
}

.dashboard-heading strong {
  display: block;
  color: var(--ink-900);
  font-size: 1rem;
}

.dashboard-kicker {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--blue-600);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.project-pill {
  padding: 0.36rem 0.55rem;
  color: #567084;
  background: var(--white);
  border: 1px solid #dbe5ed;
  border-radius: 20px;
  font-size: 0.64rem;
  font-weight: 700;
}

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

.status-card {
  min-width: 0;
  min-height: 96px;
  padding: 0.75rem;
  color: #607589;
  background: var(--white);
  border: 1px solid #e0e8ef;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(14, 42, 63, 0.05);
}

.status-card > span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.61rem;
  font-weight: 700;
}

.status-card > strong {
  display: block;
  overflow: hidden;
  color: var(--ink-900);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-track {
  height: 5px;
  margin-top: 0.85rem;
  overflow: hidden;
  background: #e8eef3;
  border-radius: 5px;
}

.mini-track i {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--blue-600);
  border-radius: inherit;
}

.mini-bars {
  display: flex;
  height: 22px;
  align-items: flex-end;
  gap: 4px;
  margin-top: 0.5rem;
}

.mini-bars i {
  width: 11%;
  background: #f8b384;
  border-radius: 2px 2px 0 0;
}

.mini-bars i:nth-child(1) { height: 36%; }
.mini-bars i:nth-child(2) { height: 58%; }
.mini-bars i:nth-child(3) { height: 46%; }
.mini-bars i:nth-child(4) { height: 82%; }
.mini-bars i:nth-child(5) { height: 68%; background: var(--orange-500); }

.status-line {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  font-size: 0.58rem;
  font-weight: 700;
}

.status-line i {
  width: 6px;
  height: 6px;
  background: #20a870;
  border-radius: 50%;
}

.dashboard-lower {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.7rem;
  grid-template-columns: minmax(0, 1.7fr) minmax(145px, 0.8fr);
}

.chart-card,
.activity-card {
  min-width: 0;
  padding: 0.8rem;
  background: var(--white);
  border: 1px solid #e0e8ef;
  border-radius: 11px;
}

.card-title-row strong {
  color: var(--ink-900);
  font-size: 0.7rem;
}

.card-title-row span {
  color: #7c8f9f;
  font-size: 0.56rem;
  font-weight: 650;
}

.chart-area {
  position: relative;
  height: 116px;
  margin-top: 0.65rem;
  overflow: hidden;
}

.chart-area svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-gridline {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: #edf1f5;
}

.line-one { top: 25%; }
.line-two { top: 50%; }
.line-three { top: 75%; }

.chart-fill {
  fill: rgba(8, 105, 232, 0.08);
}

.chart-plan,
.chart-real {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.chart-plan { stroke: var(--blue-600); }
.chart-real { stroke: var(--orange-500); stroke-dasharray: 7 7; }

.chart-legend {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.4rem;
  color: #728697;
  font-size: 0.56rem;
  font-weight: 650;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.chart-legend i {
  width: 12px;
  height: 2px;
}

.legend-blue { background: var(--blue-600); }
.legend-orange { background: var(--orange-500); }

.activity-card ul {
  padding: 0;
  margin: 0.55rem 0 0;
  list-style: none;
}

.activity-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #edf1f5;
}

.activity-card li:last-child {
  border-bottom: 0;
}

.activity-card li > i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.activity-blue { background: var(--blue-600); }
.activity-orange { background: var(--orange-500); }
.activity-ink { background: var(--ink-700); }

.activity-card li span,
.activity-card li strong,
.activity-card li small {
  display: block;
  min-width: 0;
}

.activity-card li strong {
  color: var(--ink-900);
  font-size: 0.61rem;
  line-height: 1.2;
}

.activity-card li small {
  margin-top: 0.15rem;
  color: #8192a0;
  font-size: 0.52rem;
  line-height: 1.3;
}

.mockup-note {
  margin: 0.85rem 0 0;
  color: #8da8bb;
  font-size: 0.75rem;
  text-align: right;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading-split {
  display: grid;
  gap: 1.25rem;
}

.section-heading-split h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.section-heading-split > p {
  max-width: 550px;
  margin: 0;
  font-size: 1.05rem;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  position: relative;
  min-height: 270px;
  padding: 1.55rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(7, 28, 46, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
  border-color: #bdd3e7;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.benefit-featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), #03499e);
  border-color: transparent;
}

.benefit-featured::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.04);
}

.benefit-featured h3,
.benefit-featured p,
.benefit-featured .card-number {
  color: var(--white);
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.65;
}

.card-number {
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  color: #9badbb;
  font-size: 0.8rem;
  font-weight: 760;
}

.benefit-icon {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 2.2rem;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 14px;
}

.benefit-featured .benefit-icon {
  background: rgba(255, 255, 255, 0.13);
}

.icon-grid {
  display: grid;
  gap: 4px;
  padding: 11px;
  grid-template-columns: 1fr 1fr;
}

.icon-grid i {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-stack i {
  position: absolute;
  width: 23px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: rotate(30deg) skewX(-28deg);
}

.icon-stack i:nth-child(1) { top: 12px; left: 15px; }
.icon-stack i:nth-child(2) { top: 19px; left: 15px; }
.icon-stack i:nth-child(3) { top: 26px; left: 15px; }

.icon-alert i {
  position: absolute;
  top: 11px;
  left: 15px;
  display: grid;
  width: 23px;
  height: 27px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 12px 12px 8px 8px;
  font-style: normal;
  font-weight: 850;
}

.icon-trace i {
  position: absolute;
  left: 12px;
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 50%;
}

.icon-trace i:nth-child(1) { top: 10px; }
.icon-trace i:nth-child(2) { top: 21px; left: 29px; }
.icon-trace i:nth-child(3) { top: 34px; }

.icon-trace::before,
.icon-trace::after {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.icon-trace::before { top: 17px; left: 18px; transform: rotate(28deg); }
.icon-trace::after { top: 31px; left: 18px; transform: rotate(-28deg); }

.icon-devices i,
.icon-devices b {
  position: absolute;
  display: block;
  border: 2px solid currentColor;
}

.icon-devices i {
  top: 11px;
  left: 10px;
  width: 29px;
  height: 23px;
  border-radius: 4px;
}

.icon-devices b {
  right: 9px;
  bottom: 9px;
  width: 14px;
  height: 23px;
  background: var(--blue-100);
  border-radius: 3px;
}

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

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

.section-heading-centered > p:last-child {
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.modules-grid {
  display: grid;
  gap: 1rem;
}

.module-card {
  position: relative;
  min-height: 285px;
  padding: 1.45rem;
  background: var(--white);
  border: 1px solid #e0e8ef;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(7, 28, 46, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.module-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.module-index {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  color: #a2b2bf;
  font-size: 0.78rem;
  font-weight: 800;
}

.module-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 2rem;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 13px;
  font-size: 1rem;
  font-weight: 850;
}

.module-card p {
  margin-bottom: 1.5rem;
}

.module-link {
  position: absolute;
  right: 1.45rem;
  bottom: 1.35rem;
  left: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  color: #4f687d;
  border-top: 1px solid #e8eef3;
  font-size: 0.82rem;
  font-weight: 700;
}

.module-link i {
  color: var(--blue-600);
  font-size: 1rem;
  font-style: normal;
}

.module-card-mio {
  background: linear-gradient(145deg, var(--ink-900), var(--ink-800));
  border-color: var(--ink-900);
}

.module-card-mio h3,
.module-card-mio .module-link {
  color: var(--white);
}

.module-card-mio p {
  color: #afc2d2;
}

.module-card-mio .module-symbol {
  color: var(--white);
  background: var(--orange-500);
}

.module-card-mio .module-index {
  color: #7892a6;
}

.module-card-mio .module-link {
  border-color: rgba(255, 255, 255, 0.12);
}

.module-card-mio .module-link i {
  color: var(--orange-500);
}

.workflow {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(22, 132, 248, 0.19), transparent 31%),
    var(--ink-900);
}

.workflow-intro {
  max-width: 700px;
  margin-bottom: 3rem;
}

.workflow-intro p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: #abc0d1;
  font-size: 1.05rem;
}

.workflow-steps {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-steps::before {
  position: absolute;
  z-index: 0;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 1px;
  background: linear-gradient(var(--blue-500), var(--orange-500));
  content: "";
}

.workflow-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 80px;
  align-items: center;
  gap: 0.25rem 1rem;
  padding: 1rem 1rem 1rem 0;
  grid-template-columns: 48px 1fr;
}

.workflow-steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--ink-800);
  border: 1px solid #35536a;
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
}

.workflow-steps li:last-child > span {
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.workflow-steps strong {
  align-self: end;
  color: var(--white);
  font-size: 1.02rem;
}

.workflow-steps p {
  align-self: start;
  margin: 0;
  color: #8fa9bd;
  font-size: 0.88rem;
  grid-column: 2;
}

.security {
  background: var(--white);
}

.security-layout {
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

.security-visual {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 105, 232, 0.07), rgba(244, 122, 47, 0.06)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.security-visual::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7, 28, 46, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 28, 46, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
}

.security-orbit {
  position: absolute;
  border: 1px solid rgba(8, 105, 232, 0.17);
  border-radius: 50%;
}

.orbit-one {
  width: 64%;
  height: 64%;
}

.orbit-two {
  width: 88%;
  height: 88%;
  border-color: rgba(244, 122, 47, 0.14);
}

.security-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 175px;
  height: 175px;
  padding: 1rem;
  place-items: center;
  align-content: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--ink-900), var(--ink-700));
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(7, 28, 46, 0.2);
  text-align: center;
}

.security-core strong {
  margin-top: 0.65rem;
  font-size: 0.92rem;
}

.security-core small {
  color: #9db4c7;
  font-size: 0.75rem;
}

.shield {
  position: relative;
  display: block;
  width: 36px;
  height: 41px;
  border: 3px solid var(--orange-500);
  border-radius: 17px 17px 20px 20px;
  clip-path: polygon(50% 0, 100% 18%, 92% 72%, 50% 100%, 8% 72%, 0 18%);
}

.shield i {
  position: absolute;
  top: 10px;
  left: 13px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.security-tag {
  position: absolute;
  z-index: 2;
  padding: 0.5rem 0.8rem;
  color: #405b70;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbe7ef;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(7, 28, 46, 0.09);
  font-size: 0.75rem;
  font-weight: 760;
}

.tag-user { top: 16%; left: 8%; }
.tag-project { top: 25%; right: 7%; }
.tag-audit { right: 15%; bottom: 13%; }

.security-lead {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.security-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.security-list li {
  display: flex;
  gap: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.security-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.security-list li > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.security-list strong {
  display: block;
  color: var(--ink-900);
}

.security-list p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 110%, rgba(244, 122, 47, 0.18), transparent 33%),
    linear-gradient(125deg, #0a2a45, var(--ink-900));
}

.final-grid {
  opacity: 0.35;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 890px;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta-inner > p:not(.eyebrow, .contact-status) {
  max-width: 630px;
  margin: 0 auto 2rem;
  color: #adc2d1;
  font-size: 1.05rem;
}

.button-row-center {
  justify-content: center;
}

.contact-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: #d1e0eb;
  font-size: 0.88rem;
}

.site-footer {
  padding: 3.2rem 0 1.3rem;
  color: #b3c5d2;
  background: #04121d;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.brand-footer .brand-name {
  color: var(--white);
}

.footer-grid p {
  max-width: 430px;
  margin: 1rem 0 0;
  color: #8fa7b8;
}

.footer-grid nav {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.footer-grid nav a,
.footer-grid nav button {
  padding: 0;
  color: #b9cad6;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-grid nav a:hover,
.footer-grid nav button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  color: #718a9b;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
}

.info-dialog {
  width: min(calc(100% - 2rem), 540px);
  padding: 1.5rem;
  color: var(--text);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.info-dialog::backdrop {
  background: rgba(3, 16, 27, 0.7);
  backdrop-filter: blur(3px);
}

.info-dialog h2 {
  margin: 0;
  font-size: 1.7rem;
}

.info-dialog p {
  margin: 1.25rem 0 1.5rem;
}

.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dialog-top button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--ink-900);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (min-width: 600px) {
  .shell {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .section {
    padding: 6.5rem 0;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-grid nav {
    justify-content: flex-end;
  }
}

@media (min-width: 760px) {
  .hero {
    padding-top: calc(var(--header-height) + 5.5rem);
  }

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

  .workflow-steps::before {
    top: 24px;
    right: 8%;
    bottom: auto;
    left: 8%;
    width: auto;
    height: 1px;
  }

  .workflow-steps li {
    display: flex;
    min-height: 180px;
    align-items: flex-start;
    padding: 0 0.8rem;
    text-align: center;
    flex-direction: column;
  }

  .workflow-steps li > span {
    margin: 0 auto 1.3rem;
  }

  .workflow-steps strong {
    width: 100%;
    align-self: auto;
  }

  .workflow-steps p {
    width: 100%;
    align-self: auto;
    grid-column: auto;
  }
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  }

  .hero-copy {
    padding-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 5.2vw, 5rem);
  }

  .section-heading-split {
    align-items: end;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .section-heading-split > p {
    justify-self: end;
  }

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

  .benefit-card {
    grid-column: span 2;
  }

  .benefit-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

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

  .security-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

@media (max-width: 899px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    align-items: stretch;
    gap: 0;
    padding: 1rem max(1rem, calc((100% - 720px) / 2));
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(7, 28, 46, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 0.8rem 0.4rem;
    border-bottom: 1px solid #e8eef3;
    font-size: 1rem;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .nav-access {
    margin-top: 1rem;
  }
}

@media (max-width: 599px) {
  :root {
    --header-height: 68px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 3.6rem) 0 4.25rem;
  }

  .hero-layout {
    gap: 2.6rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.3vw, 3.35rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .dashboard {
    min-height: 380px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .dashboard-main {
    padding: 0.7rem;
  }

  .dashboard-nav {
    gap: 0.9rem;
  }

  .mini-brand {
    width: 25px;
    height: 25px;
  }

  .window-status {
    display: none;
  }

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

  .status-card:last-child {
    display: none;
  }

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

  .activity-card {
    display: none;
  }

  .chart-area {
    height: 100px;
  }

  .mockup-note {
    text-align: left;
  }

  .section-heading-split > p,
  .section-heading-centered > p:last-child,
  .workflow-intro p:last-child,
  .security-lead,
  .final-cta-inner > p:not(.eyebrow, .contact-status) {
    font-size: 1rem;
  }

  .benefit-card,
  .module-card {
    min-height: 260px;
  }

  .security-tag {
    font-size: 0.68rem;
  }

  .security-core {
    width: 150px;
    height: 150px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
