:root {
  color-scheme: dark;
  --ink: #f4f7ff;
  --muted: #9baac0;
  --muted-2: #71839d;
  --bg: #020815;
  --bg-2: #061225;
  --panel: rgba(8, 23, 44, 0.74);
  --panel-solid: #07162b;
  --line: rgba(105, 159, 226, 0.2);
  --line-strong: rgba(99, 179, 255, 0.38);
  --cyan: #20d6f5;
  --blue: #2587ff;
  --violet: #9b59ff;
  --magenta: #d458ff;
  --green: #40d89f;
  --warning: #ffb85c;
  --critical: #ff5d76;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  --shell: min(1180px, calc(100vw - 48px));
  --font: "SF Pro Display", "Avenir Next", Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 10%, rgba(71, 53, 200, 0.16), transparent 30rem),
    radial-gradient(circle at 10% 31%, rgba(0, 185, 255, 0.08), transparent 26rem),
    var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -4;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(92, 140, 198, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 140, 198, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.page-glow {
  position: fixed;
  z-index: -3;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
}

.page-glow-one {
  top: -180px;
  right: -140px;
  background: var(--violet);
}

.page-glow-two {
  top: 40%;
  left: -300px;
  background: var(--blue);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(92, 137, 196, 0.16);
  background: rgba(2, 8, 21, 0.84);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  filter: drop-shadow(0 0 14px rgba(36, 204, 244, 0.22));
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.24em;
}

.brand-copy small {
  color: #7c91ad;
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a,
.footer-nav a,
.footer-legal a {
  color: #a9b6c9;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer-nav a:hover,
.footer-legal a:hover {
  color: #fff;
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(115deg, #009fe8 0%, #287dff 45%, #9144df 100%);
  box-shadow: 0 12px 36px rgba(48, 93, 228, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(58, 89, 224, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-ghost {
  border-color: rgba(123, 119, 234, 0.46);
  background: rgba(7, 19, 40, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: rgba(82, 205, 255, 0.65);
  background: rgba(11, 31, 59, 0.78);
}

.button.compact {
  min-height: 38px;
  border-radius: 8px;
  padding-inline: 17px;
  font-size: 0.67rem;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 22, 43, 0.7);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #cdd9ea;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button span:nth-child(1) { transform: translateY(-6px); }
.menu-button span:nth-child(3) { transform: translateY(6px); }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.section-pad {
  padding-top: 152px;
  padding-bottom: 78px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 210px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.91fr 1.09fr;
  gap: 58px;
}

.eyebrow,
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8ca0bb;
  font-size: 0.69rem;
  font-weight: 740;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.hero h1 {
  max-width: 630px;
  margin: 23px 0 22px;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.cyan { color: var(--cyan); }
.blue { color: #2c96ff; }
.violet { color: #b86aff; }

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: #a6b4c8;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #7f90a8;
  font-size: 0.72rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i,
.live-status i,
.status-badge i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(64, 216, 159, 0.75);
}

.hero-stage {
  position: relative;
  min-height: 550px;
}

.hero-art {
  position: absolute;
  z-index: -2;
  top: -82px;
  right: -132px;
  width: 720px;
  height: 590px;
  opacity: 0.76;
  background-image:
    linear-gradient(90deg, var(--bg) 0%, transparent 20%, transparent 72%, var(--bg) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 22%, transparent 78%, var(--bg) 100%),
    url("assets/mk-intelligence-hero.jpg");
  background-position: center, center, 74% center;
  background-size: cover;
  filter: saturate(1.1) contrast(1.05);
  mask-image: radial-gradient(ellipse 66% 65% at 62% 48%, black 45%, transparent 80%);
}

.orbit {
  position: absolute;
  z-index: -1;
  top: 32px;
  right: 44px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(79, 138, 237, 0.15);
  border-radius: 50%;
  animation: slow-rotate 24s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.orbit::before { top: 38px; left: 72px; }
.orbit::after { right: 28px; bottom: 112px; background: var(--violet); }

.orbit-two {
  top: 68px;
  right: 79px;
  width: 360px;
  height: 360px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 32s;
}

.dashboard-window {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 24px;
  width: min(610px, 100%);
  overflow: hidden;
  border: 1px solid rgba(101, 159, 231, 0.3);
  border-radius: 13px;
  background: rgba(3, 11, 25, 0.87);
  box-shadow: var(--shadow), 0 0 70px rgba(37, 114, 255, 0.12);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform: perspective(1500px) rotateY(-4deg) rotateX(1.4deg);
  transform-origin: center;
}

.window-bar {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(87, 132, 191, 0.14);
  padding: 0 14px;
  background: rgba(8, 22, 42, 0.85);
}

.traffic {
  display: flex;
  gap: 5px;
}

.traffic span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #475c75;
}

.window-title,
.live-status {
  color: #879ab4;
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dashboard-body {
  display: grid;
  min-height: 315px;
  grid-template-columns: 52px 1fr;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  border-right: 1px solid rgba(87, 132, 191, 0.12);
  padding-top: 13px;
  background: rgba(4, 15, 31, 0.88);
}

.mini-brand img {
  width: 25px;
  height: 25px;
  border-radius: 7px;
}

.dashboard-nav b {
  width: 16px;
  height: 3px;
  border-radius: 3px;
  opacity: 0.65;
  background: #45607e;
}

.dashboard-nav b:nth-of-type(1) {
  width: 26px;
  height: 23px;
  border: 1px solid rgba(31, 213, 247, 0.22);
  border-radius: 5px;
  background: rgba(34, 175, 224, 0.08);
}

.dashboard-main {
  padding: 14px;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.mini-kpi {
  position: relative;
  min-height: 66px;
  border: 1px solid rgba(91, 145, 210, 0.18);
  border-radius: 7px;
  padding: 10px;
  background: rgba(8, 29, 53, 0.58);
}

.mini-kpi small,
.dashboard-panels small {
  display: block;
  color: #7187a2;
  font-size: 0.45rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-kpi strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.mini-kpi em {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: var(--cyan);
  font-size: 0.62rem;
  font-style: normal;
}

.dashboard-panels {
  display: grid;
  margin-top: 10px;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 9px;
}

.dashboard-panels > div {
  min-height: 180px;
  border: 1px solid rgba(91, 145, 210, 0.18);
  border-radius: 7px;
  padding: 12px;
  background: rgba(8, 29, 53, 0.47);
}

.heatmap {
  display: grid;
  width: 106px;
  margin: 23px auto 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  transform: rotateX(8deg);
}

.heatmap i {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  opacity: 0.78;
  background: #113f65;
}

.heatmap i:nth-child(5n),
.heatmap i:nth-child(9),
.heatmap i:nth-child(13) { background: #32429a; }
.heatmap i:nth-child(14),
.heatmap i:nth-child(18),
.heatmap i:nth-child(19) { background: #8b43c2; }
.heatmap i:nth-child(20),
.heatmap i:nth-child(24),
.heatmap i:nth-child(25) { background: #d84c9f; }

.mini-dna {
  position: relative;
  display: grid;
  width: 80px;
  margin: 18px auto 0;
  gap: 8px;
}

.mini-dna span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #1cd5f4, rgba(92, 133, 255, 0.28), #9b59ff);
  transform: scaleX(calc(0.35 + var(--q, .3)));
}

.mini-dna span::before,
.mini-dna span::after {
  position: absolute;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 8px currentColor;
}

.mini-dna span::before { left: 0; color: var(--cyan); background: currentColor; }
.mini-dna span::after { right: 0; color: var(--violet); background: currentColor; }
.mini-dna span:nth-child(2), .mini-dna span:nth-child(8) { transform: scaleX(.58); }
.mini-dna span:nth-child(3), .mini-dna span:nth-child(7) { transform: scaleX(.82); }
.mini-dna span:nth-child(4), .mini-dna span:nth-child(6) { transform: scaleX(1); }

.score-ring {
  display: grid;
  width: 108px;
  height: 108px;
  margin: 24px auto 0;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #09182d 61%, transparent 63%),
    conic-gradient(var(--cyan) 0 68%, var(--violet) 68% 87%, rgba(42, 63, 94, 0.36) 87%);
  box-shadow: 0 0 24px rgba(31, 207, 243, 0.12);
}

.score-ring strong {
  font-size: 1.4rem;
  line-height: 1;
}

.score-ring span {
  margin-top: 3px;
  color: #7187a2;
  font-size: 0.45rem;
  text-align: center;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 112px;
  border: 1px solid rgba(92, 159, 233, 0.32);
  border-radius: 9px;
  padding: 10px 14px;
  background: rgba(5, 17, 35, 0.84);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-chip b { color: var(--cyan); font-size: 0.82rem; }
.floating-chip span { margin-top: 2px; color: #7589a5; font-size: 0.55rem; }
.chip-one { top: 112px; left: 0; }
.chip-two { right: -28px; bottom: 2px; animation-delay: -2.2s; }
.chip-two b { color: #b76bff; }

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -16px;
  padding-bottom: 55px;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(79, 142, 221, 0.24);
  border-radius: 12px;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(5, 17, 35, 0.64);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.trust-item {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(83, 126, 182, 0.18);
}

.line-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-content: center;
  border: 1px solid rgba(37, 207, 244, 0.38);
  border-radius: 50%;
  color: var(--cyan);
  box-shadow: inset 0 0 18px rgba(36, 207, 244, 0.08);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item small {
  margin-top: 5px;
  color: #71839d;
  font-size: 0.68rem;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading .overline,
.dna-copy .overline,
.report-copy .overline,
.license-card .overline,
.demo-head .overline,
.final-copy .overline {
  color: var(--cyan);
}

.section-heading h2,
.dna-copy h2,
.report-copy h2,
.license-card h2,
.final-copy h2,
.demo-head h2 {
  margin: 16px 0 13px;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-heading p,
.dna-copy > p,
.report-copy > p,
.license-card > div > p,
.final-copy > p,
.demo-head > p {
  margin: 0;
  color: #8fa0b7;
  font-size: 1rem;
  line-height: 1.7;
}

.section-heading::after {
  display: block;
  width: 110px;
  height: 2px;
  margin: 24px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card,
.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(16, 42, 73, 0.38), rgba(5, 16, 34, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-card:hover,
.feature-card:hover {
  border-color: rgba(66, 181, 248, 0.42);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transform: translateY(-6px);
}

.process-card {
  min-height: 368px;
  padding: 32px;
}

.process-card::before,
.feature-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  transition: opacity 200ms ease;
}

.process-card:hover::before,
.feature-card:hover::before { opacity: 1; }

.step-number {
  color: #4c9dec;
  font-size: 1.28rem;
  font-weight: 480;
}

.process-symbol {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  margin: 28px auto 22px;
  place-content: center;
  color: var(--cyan);
}

.clipboard-symbol {
  border: 2px solid #389de9;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(35, 176, 236, 0.13);
}

.clipboard-symbol i {
  position: absolute;
  top: -8px;
  left: 27px;
  width: 30px;
  height: 14px;
  border: 2px solid #7776f2;
  border-radius: 6px 6px 3px 3px;
  background: var(--panel-solid);
}

.clipboard-symbol b {
  display: block;
  width: 48px;
  height: 2px;
  margin: 7px;
  background: linear-gradient(90deg, var(--cyan) 0 10px, transparent 10px 15px, #3f70a2 15px);
}

.brain-symbol {
  border: 2px solid transparent;
  border-radius: 42% 58% 45% 55%;
  background:
    linear-gradient(var(--panel-solid), var(--panel-solid)) padding-box,
    linear-gradient(120deg, var(--cyan), var(--violet)) border-box;
  box-shadow: 0 0 30px rgba(108, 74, 235, 0.18);
}

.brain-symbol span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  color: transparent;
  background: var(--cyan);
  box-shadow: 0 0 12px currentColor;
}

.brain-symbol span:nth-child(1) { top: 22px; left: 25px; }
.brain-symbol span:nth-child(2) { top: 43px; left: 17px; }
.brain-symbol span:nth-child(3) { top: 31px; right: 18px; background: var(--violet); }
.brain-symbol span:nth-child(4) { right: 27px; bottom: 18px; background: var(--violet); }

.target-symbol i {
  position: absolute;
  inset: 7px;
  border: 2px solid #278edb;
  border-radius: 50%;
}

.target-symbol i:nth-child(2) { inset: 24px; border-color: #7d62e5; }
.target-symbol b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.process-card h3,
.feature-card h3,
.security-node h3 {
  margin: 0 0 12px;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
}

.process-card p,
.feature-card p,
.security-node p {
  margin: 0;
  color: #8495ac;
  font-size: 0.86rem;
  line-height: 1.65;
}

.card-link {
  position: absolute;
  bottom: 28px;
  left: 32px;
  color: #6db9ef;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.section-features {
  background: linear-gradient(180deg, transparent, rgba(6, 20, 40, 0.54), transparent);
}

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

.feature-card {
  min-height: 245px;
  padding: 29px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 27px;
  place-content: center;
  border: 1px solid rgba(48, 208, 242, 0.34);
  border-radius: 12px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(17, 95, 136, 0.18), rgba(104, 63, 181, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 22px rgba(32, 214, 245, 0.07);
  font-weight: 600;
}

.feature-card:nth-child(2n) .feature-icon {
  border-color: rgba(155, 89, 255, 0.38);
  color: #ae6cff;
}

.feature-card small {
  position: absolute;
  bottom: 23px;
  left: 29px;
  color: #596f8b;
  font-size: 0.66rem;
}

.dna-section {
  overflow: hidden;
}

.dna-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background:
    radial-gradient(circle at 69% 49%, rgba(65, 68, 195, 0.13), transparent 30rem),
    linear-gradient(180deg, rgba(8, 25, 47, 0.2), transparent);
}

.dna-grid,
.report-grid,
.final-cta-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
}

.dna-copy h2,
.report-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.check-list {
  display: grid;
  margin: 29px 0 34px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a7b5c8;
  font-size: 0.86rem;
}

.check-list li span {
  display: grid;
  width: 22px;
  height: 22px;
  place-content: center;
  border: 1px solid rgba(31, 210, 244, 0.36);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 0.67rem;
}

.dna-console {
  overflow: hidden;
  border: 1px solid rgba(92, 155, 229, 0.27);
  border-radius: 17px;
  background: rgba(5, 17, 36, 0.74);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.console-head,
.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(81, 130, 193, 0.16);
  padding: 20px 24px;
}

.console-head > div,
.demo-topline > div {
  display: grid;
  gap: 4px;
}

.console-head small,
.demo-topline small {
  color: #667c98;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-head strong,
.demo-topline strong { font-size: 0.84rem; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #94a7bd;
  font-size: 0.61rem;
}

.dna-console-body {
  display: grid;
  min-height: 440px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 34px;
  gap: 36px;
}

.dna-visual {
  position: relative;
  width: 230px;
  height: 350px;
  margin-inline: auto;
  filter: drop-shadow(0 0 20px rgba(39, 164, 255, 0.2));
}

.dna-axis {
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: calc(50% - 1px);
  width: 2px;
  opacity: 0.35;
  background: linear-gradient(var(--cyan), var(--violet), var(--cyan));
}

.dna-rungs {
  position: absolute;
  inset: 10px 0;
  display: grid;
  align-content: space-between;
}

.dna-rungs i,
.demo-helix i {
  --turn: calc(sin(var(--n) * 20deg) * 1);
  position: relative;
  display: block;
  width: calc(44px + 126px * var(--phase, .5));
  height: 2px;
  margin-inline: auto;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(66, 116, 220, 0.46), var(--violet));
  box-shadow: 0 0 10px rgba(74, 126, 241, 0.25);
  transform: scaleX(calc(0.34 + 0.66 * abs(sin(var(--n) * 20deg))));
}

.dna-rungs i::before,
.dna-rungs i::after,
.demo-helix i::before,
.demo-helix i::after {
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(32, 214, 245, 0.65);
}

.dna-rungs i::before,
.demo-helix i::before { left: -6px; }
.dna-rungs i::after,
.demo-helix i::after { right: -6px; background: var(--violet); box-shadow: 0 0 14px rgba(155, 89, 255, 0.65); }

.dna-rungs i:nth-child(1),
.dna-rungs i:nth-child(10) { transform: scaleX(.22); }
.dna-rungs i:nth-child(2),
.dna-rungs i:nth-child(9),
.dna-rungs i:nth-child(11),
.dna-rungs i:nth-child(18) { transform: scaleX(.42); }
.dna-rungs i:nth-child(3),
.dna-rungs i:nth-child(8),
.dna-rungs i:nth-child(12),
.dna-rungs i:nth-child(17) { transform: scaleX(.68); }
.dna-rungs i:nth-child(4),
.dna-rungs i:nth-child(7),
.dna-rungs i:nth-child(13),
.dna-rungs i:nth-child(16) { transform: scaleX(.88); }
.dna-rungs i:nth-child(5),
.dna-rungs i:nth-child(6),
.dna-rungs i:nth-child(14),
.dna-rungs i:nth-child(15) { transform: scaleX(1); }

.dna-visual::before,
.dna-visual::after {
  position: absolute;
  z-index: 2;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 96px;
  content: "";
  border: 3px solid transparent;
  border-radius: 50%;
  transform: translateX(-50%) rotate(12deg);
}

.dna-visual::before {
  border-left-color: var(--cyan);
  border-right-color: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(32, 214, 245, 0.48));
}

.dna-visual::after {
  border-top-color: var(--violet);
  border-bottom-color: var(--violet);
  filter: drop-shadow(0 0 12px rgba(155, 89, 255, 0.44));
  transform: translateX(-50%) rotate(-12deg);
}

.dimension-list,
.demo-bars {
  display: grid;
  gap: 18px;
}

.dimension-list > div,
.demo-bars > div {
  display: grid;
  align-items: center;
  grid-template-columns: 112px 1fr 38px;
  gap: 12px;
}

.dimension-list span,
.demo-bars span {
  color: #97a8be;
  font-size: 0.7rem;
}

.dimension-list b,
.demo-bars b {
  height: 5px;
  overflow: hidden;
  border-radius: 3px;
  background: #172842;
}

.dimension-list b i,
.demo-bars b i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #5e7ff9, var(--violet));
  box-shadow: 0 0 12px rgba(85, 122, 243, 0.38);
}

.dimension-list strong,
.demo-bars strong {
  color: #d5dfee;
  font-size: 0.69rem;
  text-align: right;
}

.report-section {
  background:
    radial-gradient(circle at 25% 50%, rgba(58, 79, 205, 0.12), transparent 30rem),
    linear-gradient(180deg, transparent, rgba(8, 24, 46, 0.36), transparent);
}

.report-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.report-preview {
  position: relative;
  min-height: 620px;
}

.report-page {
  position: absolute;
  top: 0;
  left: 50%;
  width: 390px;
  height: 550px;
  overflow: hidden;
  border: 1px solid rgba(109, 160, 220, 0.25);
  border-radius: 6px;
  padding: 38px 36px;
  color: #1b2740;
  background:
    linear-gradient(140deg, rgba(222, 238, 255, 0.98), #fff 42%, #eef4ff);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
  transform: translateX(-54%) rotate(-2deg);
}

.report-page::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, #18cfee, #306cff, #a44fed);
}

.report-page-back {
  z-index: -1;
  top: 28px;
  border-color: rgba(95, 146, 208, 0.16);
  background: #dbe7f7;
  transform: translateX(-43%) rotate(5deg);
}

.report-brand {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  gap: 10px;
  color: #19233a;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.report-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.report-page > small {
  color: #4a75ad;
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.report-page h3 {
  margin: 12px 0 7px;
  font-size: 2.25rem;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.report-page p {
  margin: 0;
  color: #668;
  font-size: 0.65rem;
}

.report-chart {
  display: flex;
  height: 110px;
  align-items: flex-end;
  margin-top: 42px;
  border-bottom: 1px solid #c7d5e7;
  gap: 10px;
}

.report-chart span {
  width: 27px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#2c9efa, #8262e8);
}

.report-line {
  width: 100%;
  height: 5px;
  margin-top: 27px;
  border-radius: 3px;
  background: #dbe4ef;
}

.report-line.short {
  width: 72%;
  margin-top: 9px;
}

.report-score {
  position: absolute;
  right: 35px;
  bottom: 31px;
  display: grid;
  text-align: right;
}

.report-score strong {
  color: #2a69c4;
  font-size: 1.4rem;
}

.report-score span {
  color: #8999ad;
  font-size: 0.49rem;
  text-transform: uppercase;
}

.value-list {
  display: grid;
  margin-top: 36px;
  gap: 10px;
}

.value-list article {
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(87, 144, 212, 0.17);
  border-radius: 12px;
  padding: 18px;
  gap: 16px;
  background: rgba(8, 25, 47, 0.42);
}

.value-list article > span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
}

.value-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.84rem;
}

.value-list p {
  margin: 0;
  color: #7f91a9;
  font-size: 0.74rem;
  line-height: 1.5;
}

.security-section {
  overflow: hidden;
}

.security-flow {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 54px 1fr 54px 1fr 54px 1fr;
}

.security-node {
  text-align: center;
}

.security-circle {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 23px;
  place-content: center;
  border: 1px solid rgba(38, 202, 241, 0.38);
  border-radius: 50%;
  color: var(--cyan);
  background: radial-gradient(circle, rgba(38, 202, 241, 0.09), transparent 65%);
  box-shadow: 0 0 32px rgba(36, 182, 236, 0.07);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.security-node:nth-of-type(even) .security-circle {
  border-color: rgba(155, 89, 255, 0.42);
  color: #ad72ff;
  background: radial-gradient(circle, rgba(155, 89, 255, 0.09), transparent 65%);
}

.connector {
  height: 1px;
  margin-top: 42px;
  background:
    radial-gradient(circle at 20% 50%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 50%, var(--violet) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(31, 201, 242, 0.25), rgba(155, 89, 255, 0.28));
}

.security-node p {
  max-width: 220px;
  margin-inline: auto;
  font-size: 0.76rem;
}

.license-section {
  padding-top: 40px;
}

.license-card {
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(90, 154, 231, 0.27);
  border-radius: 20px;
  padding: 48px;
  grid-template-columns: 1.2fr 0.9fr auto;
  gap: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(143, 72, 230, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(10, 35, 64, 0.78), rgba(4, 14, 29, 0.88));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.license-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.license-points {
  display: grid;
  gap: 13px;
}

.license-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9eacc0;
  font-size: 0.75rem;
}

.license-points i {
  display: grid;
  width: 20px;
  height: 20px;
  place-content: center;
  border: 1px solid rgba(34, 210, 245, 0.3);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 0.58rem;
  font-style: normal;
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 54px;
  padding: 90px 0;
  border-top: 1px solid rgba(76, 128, 192, 0.15);
  border-bottom: 1px solid rgba(76, 128, 192, 0.14);
  background: rgba(3, 11, 25, 0.72);
}

.final-art {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(90deg, var(--bg) 0 17%, transparent 48%, var(--bg) 100%),
    url("assets/mk-intelligence-hero.jpg");
  background-position: center, 73% center;
  background-size: cover;
  filter: saturate(1.15);
}

.final-cta-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 0.62fr 1.38fr;
}

.final-brand img {
  width: 280px;
  margin-inline: auto;
  filter: drop-shadow(0 0 42px rgba(74, 92, 225, 0.32));
}

.final-copy {
  max-width: 650px;
}

.site-footer {
  padding: 45px 0 24px;
  background: #020712;
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
}

.footer-nav,
.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal {
  gap: 17px;
}

.footer-legal a {
  color: #66788f;
  font-size: 0.66rem;
}

.footer-bottom {
  display: flex;
  margin-top: 34px;
  justify-content: space-between;
  border-top: 1px solid rgba(76, 123, 179, 0.12);
  padding-top: 21px;
  color: #50627a;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.app-showcase-section {
  padding-top: 66px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(44, 86, 212, 0.13), transparent 34rem),
    linear-gradient(180deg, transparent, rgba(5, 17, 35, 0.42), transparent);
}

.app-showcase-heading {
  display: flex;
  max-width: 1180px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 40px;
}

.app-showcase-heading > div:first-child {
  max-width: 760px;
}

.app-showcase-heading h2 {
  margin: 15px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.app-showcase-heading p {
  margin: 0;
  color: #8fa0b7;
  line-height: 1.7;
}

.demo-hint {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(54, 209, 242, 0.25);
  border-radius: 9px;
  padding: 11px 14px;
  color: #91a7c1;
  background: rgba(7, 25, 46, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.demo-hint i {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(64, 216, 159, 0.72);
}

.app-frame {
  width: min(1500px, calc(100vw - 34px));
  min-height: 860px;
  overflow: hidden;
  margin-inline: auto;
  border: 1px solid rgba(107, 155, 218, 0.34);
  border-radius: 18px;
  background: #050d1b;
  box-shadow:
    0 58px 130px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(41, 111, 231, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.app-windowbar {
  display: grid;
  height: 54px;
  align-items: center;
  border-bottom: 1px solid rgba(111, 151, 204, 0.16);
  padding-inline: 18px;
  grid-template-columns: 1fr auto 1fr;
  background:
    linear-gradient(180deg, rgba(14, 31, 55, 0.96), rgba(7, 18, 35, 0.96));
}

.traffic.large span {
  width: 9px;
  height: 9px;
}

.traffic.large span:nth-child(1) { background: #ff665d; }
.traffic.large span:nth-child(2) { background: #f7bd42; }
.traffic.large span:nth-child(3) { background: #42c951; }

.app-window-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.app-window-title img {
  width: 25px;
  height: 25px;
  border-radius: 7px;
}

.app-window-title strong {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.app-window-title span {
  color: #627790;
  font-size: 0.58rem;
}

.app-window-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.app-window-actions span,
.app-window-actions button {
  display: grid;
  min-width: 32px;
  height: 28px;
  place-content: center;
  border: 1px solid rgba(114, 156, 209, 0.18);
  border-radius: 7px;
  color: #8294aa;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.56rem;
}

.app-window-actions button {
  border-color: rgba(42, 125, 255, 0.3);
  color: #fff;
  background: #1e65d2;
}

.app-workspace {
  display: grid;
  height: 806px;
  grid-template-columns: 214px minmax(0, 1fr);
}

.app-sidebar {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-right: 1px solid rgba(101, 144, 199, 0.14);
  padding: 18px 13px 15px;
  background:
    radial-gradient(circle at 0 0, rgba(41, 97, 178, 0.12), transparent 20rem),
    linear-gradient(180deg, #071327, #040b16);
}

.app-side-brand {
  display: flex;
  align-items: center;
  margin: 0 5px 22px;
  gap: 10px;
}

.app-side-brand img {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  filter: drop-shadow(0 0 14px rgba(40, 190, 239, 0.2));
}

.app-side-brand div {
  display: grid;
}

.app-side-brand strong {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.app-side-brand span {
  color: #8192a7;
  font-size: 0.46rem;
  letter-spacing: 0.28em;
}

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

.app-sidebar nav button {
  display: grid;
  width: 100%;
  height: 43px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 12px;
  grid-template-columns: 28px 1fr;
  color: #a5b1c2;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.app-sidebar nav button:hover {
  background: rgba(255, 255, 255, 0.035);
}

.app-sidebar nav button.active {
  border-color: rgba(47, 146, 255, 0.37);
  color: #fff;
  background: linear-gradient(90deg, rgba(36, 125, 235, 0.19), rgba(31, 88, 166, 0.07));
  box-shadow: inset 3px 0 0 #269dff, 0 0 22px rgba(34, 117, 235, 0.08);
}

.app-sidebar nav i {
  color: #4ca9f5;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 750;
}

.app-sidebar nav button:nth-child(3) i,
.app-sidebar nav button:nth-child(5) i { color: var(--green); }
.app-sidebar nav button:nth-child(4) i { color: var(--warning); }
.app-sidebar nav button:nth-child(6) i,
.app-sidebar nav button:nth-child(7) i { color: #b177ff; }

.app-sidebar nav span {
  font-size: 0.7rem;
}

.app-user {
  display: grid;
  align-items: center;
  margin-top: auto;
  border: 1px solid rgba(102, 145, 196, 0.13);
  border-radius: 11px;
  padding: 10px;
  grid-template-columns: 35px 1fr 7px;
  gap: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.app-user > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-content: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(145deg, #fff, #4e95db);
  font-size: 0.55rem;
  font-weight: 800;
}

.app-user div { display: grid; gap: 2px; }
.app-user strong { font-size: 0.58rem; }
.app-user small { color: #667a94; font-size: 0.5rem; }
.app-user > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.app-content {
  position: relative;
  overflow: auto;
  background:
    radial-gradient(circle at 52% 35%, rgba(31, 81, 157, 0.09), transparent 33rem),
    #040b17;
}

.app-content::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(84, 128, 185, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 128, 185, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
}

.app-view {
  position: relative;
  z-index: 1;
  display: none;
  min-width: 1010px;
  min-height: 100%;
  padding: 20px;
}

.app-view.active {
  display: block;
  animation: app-view-in 260ms ease;
}

@keyframes app-view-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.app-section-head {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.app-section-head h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.app-section-head p {
  margin: 4px 0 0;
  color: #6d8099;
  font-size: 0.66rem;
}

.app-head-actions {
  display: flex;
  gap: 7px;
}

.app-head-actions button,
.app-new-button {
  min-width: 38px;
  height: 35px;
  border: 1px solid rgba(109, 151, 205, 0.18);
  border-radius: 8px;
  color: #9bacc1;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.58rem;
}

.app-new-button {
  border-color: rgba(48, 151, 255, 0.34);
  padding-inline: 15px;
  color: #fff;
  background: linear-gradient(135deg, #187cd4, #5654d5);
  cursor: pointer;
}

.app-kpi-grid {
  display: grid;
  margin-bottom: 13px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

.app-kpi {
  display: grid;
  min-height: 93px;
  align-items: center;
  border: 1px solid rgba(107, 151, 204, 0.18);
  border-radius: 13px;
  padding: 12px;
  grid-template-columns: 47px 1fr 60px;
  gap: 11px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.047), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.app-kpi:hover {
  border-color: rgba(72, 167, 255, 0.42);
  background: linear-gradient(145deg, rgba(32, 83, 139, 0.16), rgba(255, 255, 255, 0.017));
  transform: translateY(-2px);
}

.app-kpi-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  border-radius: 11px;
  background: rgba(30, 124, 220, 0.13);
  box-shadow: inset 0 0 22px rgba(25, 144, 238, 0.08);
  color: #3fa6ff;
  font-size: 0.78rem;
  font-weight: 780;
}

.kpi-green .app-kpi-icon { color: var(--green); background: rgba(47, 196, 143, 0.11); }
.kpi-violet .app-kpi-icon { color: #a46dff; background: rgba(140, 75, 219, 0.12); }
.kpi-orange .app-kpi-icon { color: var(--warning); background: rgba(229, 143, 45, 0.12); }

.app-kpi > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.app-kpi small {
  color: #449ee6;
  font-size: 0.47rem;
  font-weight: 730;
  letter-spacing: 0.07em;
}

.kpi-green small { color: #4ec995; }
.kpi-violet small { color: #9c73e7; }
.kpi-orange small { color: #e6a34b; }

.app-kpi strong {
  font-size: 1.35rem;
  font-weight: 540;
}

.app-kpi > div:nth-child(2) span {
  color: #627690;
  font-size: 0.48rem;
}

.sparkline {
  display: flex;
  height: 34px;
  align-items: flex-end;
  gap: 3px;
}

.sparkline i {
  width: 7px;
  height: 20%;
  border-radius: 2px 2px 0 0;
  background: #298fe7;
  opacity: 0.75;
}

.sparkline i:nth-child(2) { height: 42%; }
.sparkline i:nth-child(3) { height: 34%; }
.sparkline i:nth-child(4) { height: 66%; }
.sparkline i:nth-child(5) { height: 58%; }
.sparkline i:nth-child(6) { height: 92%; }
.kpi-green .sparkline i { background: var(--green); }
.kpi-violet .sparkline i { background: #9861ef; }
.kpi-orange .sparkline i { background: #e69139; }

.app-dashboard-grid {
  display: grid;
  height: 625px;
  grid-template-columns: 252px minmax(380px, 1fr) 338px;
  gap: 12px;
}

.app-surface {
  border: 1px solid rgba(107, 151, 204, 0.17);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.app-client-panel {
  overflow: auto;
}

.app-panel-block {
  padding: 16px;
}

.app-panel-block + .app-panel-block {
  border-top: 1px solid rgba(105, 148, 202, 0.13);
}

.app-panel-block > small {
  color: #8193aa;
  font-size: 0.49rem;
  font-weight: 730;
  letter-spacing: 0.11em;
}

.app-client-select {
  display: grid;
  margin-top: 11px;
  gap: 7px;
}

.app-client-select > button {
  display: grid;
  width: 100%;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 9px;
  grid-template-columns: 40px 1fr;
  gap: 9px;
  color: #fff;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.app-client-select > button:hover {
  background: rgba(255, 255, 255, 0.025);
}

.app-client-select > button.active {
  border-color: rgba(48, 158, 255, 0.28);
  background: rgba(30, 104, 189, 0.11);
}

.app-client-select > button > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-content: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #227ac7, #29b2dd);
  box-shadow: 0 0 16px rgba(41, 151, 220, 0.2);
  font-size: 0.63rem;
  font-weight: 750;
}

.app-client-select button:nth-child(2) > span { background: linear-gradient(135deg, #6354ce, #a05ae0); }
.app-client-select button:nth-child(3) > span { background: linear-gradient(135deg, #1d93a9, #46d5bb); }
.app-client-select div { display: grid; gap: 3px; }
.app-client-select strong { font-size: 0.64rem; }
.app-client-select small { color: #697d97; font-size: 0.5rem; }

.compact-assessments {
  display: grid;
  margin-top: 10px;
  gap: 6px;
}

.compact-assessments > button {
  display: grid;
  width: 100%;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(105, 148, 202, 0.12);
  border-radius: 9px;
  padding: 8px 9px;
  grid-template-columns: 7px 1fr auto;
  gap: 9px;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, 0.018);
}

.compact-assessments i {
  width: 6px;
  height: 27px;
  border-radius: 4px;
}

.green { color: var(--green) !important; }
.orange { color: var(--warning) !important; }
.red { color: var(--critical) !important; }
.yellow { color: #f3cf56 !important; }
.violet { color: #a774ff !important; }
.cyan { color: var(--cyan) !important; }
.blue { color: #409cf1 !important; }
.compact-assessments i.green { background: var(--green); }
.compact-assessments i.orange { background: var(--warning); }
.compact-assessments i.violet { background: #a774ff; }
.compact-assessments i.blue { background: #409cf1; }
.compact-assessments div { display: grid; gap: 2px; }
.compact-assessments strong { font-size: 0.57rem; }
.compact-assessments small { color: #60738d; font-size: 0.46rem; }
.compact-assessments b { font-size: 0.56rem; }

.app-primary-action,
.app-secondary-action {
  display: flex;
  width: 100%;
  height: 39px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border: 1px solid rgba(42, 159, 255, 0.32);
  border-radius: 9px;
  padding-inline: 11px;
  color: #c7e8ff;
  background: rgba(25, 110, 186, 0.13);
  font-size: 0.54rem;
  cursor: pointer;
}

.app-secondary-action {
  margin-top: 6px;
  border-color: rgba(105, 148, 202, 0.12);
  color: #8d9db1;
  background: rgba(255, 255, 255, 0.018);
}

.app-dna-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  place-content: center;
  background:
    radial-gradient(circle at center, rgba(26, 112, 198, 0.18), transparent 56%),
    rgba(0, 0, 0, 0.14);
}

.star-layer {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 14% 18%, white 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 14%, #4bc5ff 0 1px, transparent 1.6px),
    radial-gradient(circle at 83% 41%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 24% 70%, #8868ff 0 1px, transparent 1.6px),
    radial-gradient(circle at 63% 82%, white 0 1px, transparent 1.5px);
  background-size: 117px 91px, 149px 113px, 101px 137px, 167px 131px, 129px 153px;
}

.showcase-helix {
  position: relative;
  z-index: 2;
  display: grid;
  width: 230px;
  height: 500px;
  align-content: space-between;
  filter: drop-shadow(0 0 24px rgba(38, 153, 240, 0.34));
  transition: filter 300ms ease, opacity 300ms ease;
}

.showcase-helix::before,
.showcase-helix::after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 96px;
  border: 3px solid transparent;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%) rotate(9deg);
}

.showcase-helix::before {
  border-left-color: var(--cyan);
  border-right-color: var(--cyan);
  filter: drop-shadow(0 0 9px rgba(32, 214, 245, 0.65));
}

.showcase-helix::after {
  border-top-color: var(--violet);
  border-bottom-color: var(--violet);
  filter: drop-shadow(0 0 9px rgba(155, 89, 255, 0.65));
  transform: translateX(-50%) rotate(-9deg);
}

.showcase-helix i {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(68, 104, 204, 0.48), var(--violet));
  box-shadow: 0 0 9px rgba(57, 146, 236, 0.36);
}

.showcase-helix i::before,
.showcase-helix i::after {
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(32, 214, 245, 0.72);
}

.showcase-helix i::before { left: -5px; }
.showcase-helix i::after { right: -5px; background: var(--violet); box-shadow: 0 0 12px rgba(155, 89, 255, 0.72); }
.showcase-helix i:nth-child(1), .showcase-helix i:nth-child(8), .showcase-helix i:nth-child(15) { transform: scaleX(.22); }
.showcase-helix i:nth-child(2), .showcase-helix i:nth-child(7), .showcase-helix i:nth-child(9), .showcase-helix i:nth-child(14) { transform: scaleX(.48); }
.showcase-helix i:nth-child(3), .showcase-helix i:nth-child(6), .showcase-helix i:nth-child(10), .showcase-helix i:nth-child(13) { transform: scaleX(.76); }
.showcase-helix i:nth-child(4), .showcase-helix i:nth-child(5), .showcase-helix i:nth-child(11), .showcase-helix i:nth-child(12) { transform: scaleX(1); }

.dna-client-name {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 50%;
  border: 1px solid rgba(101, 150, 209, 0.16);
  border-radius: 16px;
  padding: 6px 13px;
  color: #9fb1c6;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.54rem;
  transform: translateX(-50%);
}

.app-insight-column {
  display: grid;
  grid-template-rows: 0.95fr 1.15fr 0.9fr;
  gap: 12px;
}

.app-score-panel,
.priority-panel,
.recommendation-panel {
  padding: 16px;
}

.app-insight-column h4 {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 620;
}

.score-and-trend {
  display: grid;
  align-items: center;
  margin-top: 12px;
  grid-template-columns: 112px 1fr;
  gap: 15px;
}

.large-score-ring {
  display: grid;
  width: 110px;
  height: 110px;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #071426 61%, transparent 63%),
    conic-gradient(var(--cyan) 0 58%, var(--violet) 58% 74%, rgba(58, 78, 105, 0.25) 74%);
  box-shadow: 0 0 23px rgba(42, 172, 242, 0.12);
}

.large-score-ring strong {
  font-size: 1.65rem;
  font-weight: 540;
  line-height: 1;
}

.large-score-ring span {
  margin-top: 3px;
  color: #647790;
  font-size: 0.49rem;
  text-align: center;
}

.trend-panel {
  position: relative;
  height: 100px;
}

.trend-panel small {
  color: #657892;
  font-size: 0.46rem;
  letter-spacing: 0.07em;
}

.trend-panel > strong {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--green);
  font-size: 0.8rem;
}

.trend-graph {
  position: relative;
  height: 57px;
  margin-top: 7px;
  overflow: hidden;
  border-bottom: 1px solid rgba(80, 130, 190, 0.12);
  background:
    linear-gradient(rgba(66, 122, 180, 0.05) 1px, transparent 1px);
  background-size: 100% 17px;
}

.trend-graph i {
  position: absolute;
  right: 5px;
  bottom: 13px;
  left: 3px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dc58d 20%, #52eab4);
  clip-path: polygon(0 70%, 15% 40%, 28% 59%, 42% 20%, 54% 46%, 68% 24%, 80% 33%, 100% 0, 100% 100%, 0 100%);
  transform: scaleY(20);
  transform-origin: bottom;
}

.trend-panel > span {
  color: #4f6178;
  font-size: 0.39rem;
}

.panel-title-row,
.register-title,
.knowledge-result-head,
.reader-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.panel-title-row > span {
  border: 1px solid rgba(106, 149, 201, 0.13);
  border-radius: 7px;
  padding: 4px 7px;
  color: #667991;
  font-size: 0.44rem;
}

.priority-item {
  display: grid;
  align-items: center;
  border-top: 1px solid rgba(102, 145, 196, 0.1);
  padding: 10px 0;
  grid-template-columns: 7px 1fr auto;
  gap: 10px;
}

.priority-item:first-of-type { margin-top: 8px; }
.priority-item > i {
  width: 5px;
  height: 28px;
  border-radius: 4px;
  background: currentColor;
}

.priority-item > div { display: grid; gap: 3px; }
.priority-item strong { font-size: 0.57rem; }
.priority-item small { color: #61758e; font-size: 0.47rem; }
.priority-item b { font-size: 0.48rem; color: #9bacbf; }

.recommendation-panel > strong {
  display: block;
  margin-top: 13px;
  font-size: 0.62rem;
}

.recommendation-panel p {
  margin: 7px 0 11px;
  color: #6e8098;
  font-size: 0.51rem;
  line-height: 1.55;
}

.recommendation-panel button {
  width: 100%;
  height: 30px;
  border: 1px solid rgba(46, 146, 240, 0.2);
  border-radius: 7px;
  color: #70baf4;
  background: rgba(38, 116, 197, 0.08);
  font-size: 0.47rem;
  cursor: pointer;
}

.app-searchbar {
  display: flex;
  height: 45px;
  align-items: center;
  border: 1px solid rgba(107, 151, 204, 0.17);
  border-radius: 11px;
  margin-bottom: 14px;
  padding-inline: 14px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.026);
}

.app-searchbar span { color: #6d819b; }
.app-searchbar input,
.knowledge-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #c8d3e3;
  background: transparent;
  font: inherit;
  font-size: 0.64rem;
}

.app-client-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.full-client-card {
  border: 1px solid rgba(107, 151, 204, 0.17);
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.043), rgba(255, 255, 255, 0.014));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.client-card-head {
  display: grid;
  align-items: start;
  grid-template-columns: 46px 1fr auto;
  gap: 11px;
}

.client-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(48, 139, 235, 0.8), rgba(49, 203, 229, 0.5));
  font-size: 0.66rem;
  font-weight: 750;
}

.client-avatar.violet { background: linear-gradient(135deg, rgba(103, 77, 217, 0.85), rgba(185, 87, 229, 0.55)); }
.client-avatar.cyan { background: linear-gradient(135deg, rgba(28, 152, 180, 0.85), rgba(59, 217, 188, 0.5)); }
.client-card-head h4 { margin: 4px 0 3px; font-size: 0.72rem; }
.client-card-head p { margin: 0; color: #6d8098; font-size: 0.52rem; }
.client-card-head button { border: 0; color: #71839a; background: transparent; }

.client-badges {
  display: flex;
  align-items: center;
  margin: 15px 0;
  gap: 9px;
}

.client-badges .status,
.badge {
  border-radius: 10px;
  padding: 4px 8px;
  background: rgba(64, 216, 159, 0.09);
  font-size: 0.45rem;
  font-weight: 720;
}

.client-badges b {
  color: #55aef3;
  font-size: 0.49rem;
  font-weight: 600;
}

.client-badges small {
  margin-left: auto;
  color: #71839a;
  font-size: 0.48rem;
}

.client-card-meta {
  display: grid;
  border-top: 1px solid rgba(102, 145, 196, 0.1);
  border-bottom: 1px solid rgba(102, 145, 196, 0.1);
  padding: 13px 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.client-card-meta div {
  display: grid;
  gap: 4px;
}

.client-card-meta div:last-child { text-align: right; }
.client-card-meta small { color: #61758e; font-size: 0.45rem; }
.client-card-meta strong { font-size: 0.53rem; }

.full-client-card > button {
  display: block;
  height: 31px;
  margin: 13px 0 0 auto;
  border: 1px solid rgba(47, 150, 243, 0.28);
  border-radius: 7px;
  padding-inline: 12px;
  color: #fff;
  background: linear-gradient(135deg, #147bcc, #494fd1);
  font-size: 0.5rem;
  cursor: pointer;
}

.client-detail-strip {
  display: grid;
  margin-top: 13px;
  padding: 17px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.client-detail-strip div {
  display: grid;
  border-right: 1px solid rgba(103, 145, 198, 0.1);
  gap: 5px;
}

.client-detail-strip div:last-child { border-right: 0; }
.client-detail-strip small { color: #60748c; font-size: 0.45rem; letter-spacing: 0.08em; }
.client-detail-strip strong { font-size: 0.64rem; }

.register-metrics {
  display: grid;
  margin-bottom: 13px;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.register-metrics article {
  display: flex;
  min-height: 72px;
  align-items: center;
  border: 1px solid rgba(107, 151, 204, 0.17);
  border-radius: 12px;
  padding: 12px;
  gap: 11px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.register-metrics i {
  display: grid;
  width: 37px;
  height: 37px;
  place-content: center;
  border-radius: 50%;
  background: rgba(53, 152, 241, 0.12);
}

.register-metrics i::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.register-metrics div { display: grid; gap: 3px; }
.register-metrics strong { font-size: 1rem; }
.register-metrics span { color: #697d96; font-size: 0.49rem; }

.assessment-table {
  overflow: hidden;
}

.assessment-table-head,
.assessment-table > button {
  display: grid;
  align-items: center;
  grid-template-columns: 2.3fr 1.1fr 0.55fr 0.9fr 20px;
  gap: 16px;
}

.assessment-table-head {
  height: 42px;
  padding-inline: 16px;
  color: #61758e;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.assessment-table > button {
  width: 100%;
  min-height: 82px;
  border: 0;
  border-top: 1px solid rgba(104, 147, 200, 0.1);
  padding: 13px 16px;
  color: #fff;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.assessment-table > button:hover { background: rgba(43, 105, 178, 0.07); }
.assessment-table > button > span { display: grid; gap: 4px; }
.assessment-table > button > span:nth-child(2) { position: relative; height: 4px; border-radius: 3px; background: #15273e; }
.assessment-table > button > span:nth-child(2) i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--violet)); }
.assessment-table > button > span:nth-child(2) small { position: absolute; top: 9px; font-size: 0.43rem; }
.assessment-table b { font-size: 0.62rem; }
.assessment-table small { color: #667b95; font-size: 0.48rem; }
.assessment-table strong { font-size: 0.73rem; }
.assessment-table em { color: #72aee0; font-size: 0.49rem; font-style: normal; }
.assessment-table > button > b:last-child { color: #60738b; text-align: right; }

.app-filterbar {
  display: grid;
  height: 54px;
  align-items: center;
  border: 1px solid rgba(107, 151, 204, 0.17);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 9px 12px;
  grid-template-columns: 180px 160px 1fr auto;
  gap: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.app-filterbar button,
.app-filterbar div {
  height: 34px;
  border: 1px solid rgba(105, 148, 202, 0.15);
  border-radius: 7px;
  padding-inline: 10px;
  color: #8799b0;
  background: rgba(0, 0, 0, 0.1);
  font-size: 0.52rem;
  text-align: left;
}

.app-filterbar div {
  display: flex;
  align-items: center;
}

.app-filterbar > span {
  color: #687b93;
  font-size: 0.48rem;
}

.register-list {
  display: grid;
  gap: 10px;
}

.register-card {
  display: grid;
  border: 1px solid rgba(107, 151, 204, 0.17);
  border-radius: 13px;
  padding: 15px;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.register-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  border-radius: 9px;
  background: rgba(255, 93, 118, 0.1);
  font-size: 0.75rem;
  font-weight: 800;
}

.register-icon.orange { background: rgba(255, 184, 92, 0.1); }
.register-content { min-width: 0; }
.register-title { justify-content: flex-start; }
.register-title h4 { margin: 0; font-size: 0.66rem; }
.register-title small { color: #6c7f97; font-size: 0.48rem; }
.register-title > strong { margin-left: auto; font-size: 0.55rem; }
.badge.red { background: rgba(255, 93, 118, 0.1); }
.badge.orange { background: rgba(255, 184, 92, 0.1); }
.register-content > p { margin: 8px 0; color: #71849b; font-size: 0.54rem; line-height: 1.55; }

.register-meta {
  display: flex;
  border-top: 1px solid rgba(102, 145, 196, 0.1);
  padding-top: 9px;
  gap: 25px;
}

.register-meta span { color: #a6b4c5; font-size: 0.49rem; }
.register-meta small { display: block; margin-bottom: 3px; color: #52667e; font-size: 0.4rem; font-weight: 700; }
.recommendation { margin-top: 9px; color: #56b9f1; font-size: 0.5rem; }
.status-select {
  border: 1px solid rgba(105, 148, 202, 0.16);
  border-radius: 7px;
  padding: 6px 9px;
  color: #a3b2c4;
  background: rgba(255, 255, 255, 0.02);
}

.report-workspace {
  display: grid;
  height: 660px;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 13px;
}

.report-list-panel {
  display: grid;
  align-content: start;
  gap: 9px;
}

.report-list-card {
  display: grid;
  width: 100%;
  min-height: 132px;
  align-items: start;
  border: 1px solid rgba(107, 151, 204, 0.16);
  border-radius: 13px;
  padding: 14px;
  grid-template-columns: 42px 1fr 12px;
  gap: 11px;
  color: #fff;
  text-align: left;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  cursor: pointer;
}

.report-list-card.active {
  border-color: rgba(48, 157, 255, 0.36);
  background: linear-gradient(145deg, rgba(30, 107, 190, 0.14), rgba(84, 54, 151, 0.05));
  box-shadow: inset 3px 0 0 #2e9df4;
}

.report-doc-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  border-radius: 10px;
  color: #47b6f4;
  background: rgba(44, 149, 228, 0.11);
  font-size: 0.7rem;
  font-weight: 750;
}

.report-doc-icon.violet { background: rgba(155, 89, 255, 0.11); }
.report-doc-icon.green { background: rgba(64, 216, 159, 0.1); }
.report-list-card > div:nth-child(2) { display: grid; gap: 4px; }
.report-list-card strong { font-size: 0.64rem; }
.report-list-card span { color: #60aee9; font-size: 0.47rem; }
.report-list-card p { margin: 2px 0; color: #6c8098; font-size: 0.5rem; line-height: 1.4; }
.report-list-card small { color: #5e7188; font-size: 0.45rem; }
.report-list-card > b { color: #6d8097; }

.report-reader {
  overflow: hidden;
}

.reader-toolbar {
  height: 45px;
  border-bottom: 1px solid rgba(104, 147, 199, 0.13);
  padding-inline: 14px;
}

.reader-toolbar > span {
  color: #5fabe8;
  font-size: 0.5rem;
}

.reader-toolbar button {
  height: 27px;
  border: 1px solid rgba(105, 148, 202, 0.14);
  border-radius: 6px;
  color: #8294aa;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.46rem;
}

.reader-paper {
  width: 72%;
  height: 560px;
  margin: 25px auto;
  padding: 28px 30px;
  color: #17243a;
  background: linear-gradient(145deg, #eef5ff, #fff);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.reader-brand {
  display: flex;
  align-items: center;
  margin-bottom: 55px;
  gap: 9px;
  color: #192a46;
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.reader-brand img { width: 28px; height: 28px; border-radius: 7px; }
.reader-paper > small { color: #3471b0; font-size: 0.42rem; letter-spacing: 0.11em; }
.reader-paper h4 { margin: 10px 0 10px; font-size: 1.35rem; font-weight: 560; }
.reader-paper > p { color: #627187; font-size: 0.53rem; line-height: 1.65; }

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

.reader-score-row div {
  display: grid;
  border: 1px solid #dce5f0;
  border-radius: 6px;
  padding: 10px;
  gap: 4px;
}

.reader-score-row strong { color: #3176c1; font-size: 1rem; }
.reader-score-row span { color: #8390a2; font-size: 0.39rem; }
.reader-lines { display: grid; margin-top: 30px; gap: 8px; }
.reader-lines i { height: 5px; border-radius: 3px; background: #dde6f1; }
.reader-lines i:nth-child(2) { width: 82%; }
.reader-lines i:nth-child(3) { width: 94%; }
.reader-lines i:nth-child(4) { width: 63%; }

.local-badge {
  color: var(--green);
  font-size: 0.54rem;
}

.knowledge-search {
  display: grid;
  height: 64px;
  align-items: center;
  margin-bottom: 13px;
  padding: 11px;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}

.knowledge-search > div {
  display: flex;
  height: 40px;
  align-items: center;
  border: 1px solid rgba(105, 148, 202, 0.14);
  border-radius: 8px;
  padding-inline: 12px;
  gap: 9px;
  background: rgba(0, 0, 0, 0.12);
}

.knowledge-search button {
  height: 40px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #187fd4, #5552d5);
  font-size: 0.54rem;
  cursor: pointer;
}

.knowledge-topic-grid {
  display: grid;
  margin-bottom: 13px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.knowledge-topic-grid article {
  display: grid;
  min-height: 105px;
  align-content: center;
  border: 1px solid rgba(107, 151, 204, 0.16);
  border-radius: 12px;
  padding: 14px;
  grid-template-columns: 37px 1fr;
  column-gap: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.knowledge-topic-grid i {
  display: grid;
  width: 37px;
  height: 37px;
  grid-row: 1 / 3;
  place-content: center;
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(38, 172, 226, 0.1);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 750;
}

.knowledge-topic-grid strong { align-self: end; font-size: 0.57rem; }
.knowledge-topic-grid span { color: #61748d; font-size: 0.45rem; }
.knowledge-result { padding: 18px; }
.knowledge-result-head span { color: var(--green); font-size: 0.45rem; letter-spacing: 0.08em; }
.knowledge-result-head strong { color: #5faee7; font-size: 0.46rem; }
.knowledge-result h4 { margin: 18px 0 8px; font-size: 0.76rem; }
.knowledge-result > p { margin: 0; color: #8193aa; font-size: 0.58rem; line-height: 1.65; }
.knowledge-actions { display: flex; align-items: center; margin-top: 17px; gap: 7px; }
.knowledge-actions span { margin-right: 5px; color: #5e728b; font-size: 0.45rem; }
.knowledge-actions b { border: 1px solid rgba(73, 153, 221, 0.18); border-radius: 7px; padding: 6px 8px; color: #7db9e6; background: rgba(31, 103, 166, 0.07); font-size: 0.43rem; }

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.settings-card {
  display: grid;
  min-height: 140px;
  align-items: center;
  padding: 17px;
  grid-template-columns: 49px 1fr 16px;
  gap: 14px;
}

.settings-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-content: center;
  border-radius: 11px;
  color: currentColor;
  background: rgba(53, 152, 241, 0.1);
  font-size: 0.65rem;
  font-weight: 750;
}

.settings-card > div:nth-child(2) { display: grid; gap: 5px; }
.settings-card h4 { margin: 0; font-size: 0.66rem; }
.settings-card p { margin: 0; color: #6c8098; font-size: 0.51rem; line-height: 1.5; }
.settings-card span { margin-top: 4px; color: #4ccba0; font-size: 0.45rem; }
.settings-card > button { border: 0; color: #6d8097; background: transparent; }

.demo-dialog {
  width: min(1040px, calc(100vw - 32px));
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid rgba(86, 159, 236, 0.35);
  border-radius: 18px;
  padding: 38px;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(119, 63, 211, 0.18), transparent 25rem),
    #061225;
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.72);
}

.demo-dialog::backdrop {
  background: rgba(0, 4, 12, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-content: center;
  border: 1px solid rgba(100, 150, 210, 0.25);
  border-radius: 9px;
  color: #9aabc0;
  background: rgba(7, 20, 40, 0.7);
  cursor: pointer;
  font-size: 1.3rem;
}

.demo-head {
  max-width: 690px;
  margin-bottom: 28px;
}

.demo-head h2 {
  font-size: 2.2rem;
}

.demo-workspace {
  display: grid;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(91, 145, 210, 0.2);
  border-radius: 13px;
  grid-template-columns: 230px 1fr;
  background: rgba(3, 13, 27, 0.58);
}

.demo-clients {
  border-right: 1px solid rgba(91, 145, 210, 0.16);
  padding: 14px;
}

.demo-client {
  display: grid;
  width: 100%;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px;
  grid-template-columns: 39px 1fr;
  gap: 11px;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.demo-client + .demo-client { margin-top: 7px; }
.demo-client:hover { background: rgba(25, 70, 111, 0.2); }
.demo-client.active {
  border-color: rgba(36, 198, 238, 0.28);
  background: linear-gradient(90deg, rgba(24, 153, 210, 0.17), rgba(91, 67, 180, 0.1));
}

.demo-client > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-content: center;
  border: 1px solid rgba(41, 201, 240, 0.32);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(26, 118, 169, 0.12);
  font-size: 0.65rem;
  font-weight: 700;
}

.demo-client div {
  display: grid;
  gap: 3px;
}

.demo-client strong { font-size: 0.69rem; }
.demo-client small { color: #657a96; font-size: 0.57rem; }

.demo-dashboard { padding: 10px 22px 22px; }

.demo-topline { padding-inline: 0; }

.demo-topline > span {
  border: 1px solid rgba(50, 204, 168, 0.2);
  border-radius: 7px;
  padding: 7px 10px;
  color: #77d5b5;
  background: rgba(31, 129, 104, 0.08);
  font-size: 0.6rem;
}

.demo-metrics {
  display: grid;
  margin: 14px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.demo-metrics > div {
  border: 1px solid rgba(91, 145, 210, 0.17);
  border-radius: 9px;
  padding: 14px;
  background: rgba(8, 28, 52, 0.52);
}

.demo-metrics small {
  display: block;
  margin-bottom: 8px;
  color: #657a96;
  font-size: 0.56rem;
}

.demo-metrics strong { font-size: 1.14rem; }

.demo-bottom {
  display: grid;
  min-height: 280px;
  align-items: center;
  border: 1px solid rgba(91, 145, 210, 0.17);
  border-radius: 10px;
  padding: 24px;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  background: rgba(6, 21, 42, 0.44);
}

.demo-helix {
  display: grid;
  width: 130px;
  height: 220px;
  align-content: space-between;
  margin-inline: auto;
  transition: filter 280ms ease;
}

.demo-helix i {
  width: 100%;
}

.demo-helix i:nth-child(1),
.demo-helix i:nth-child(9) { transform: scaleX(.25); }
.demo-helix i:nth-child(2),
.demo-helix i:nth-child(8) { transform: scaleX(.52); }
.demo-helix i:nth-child(3),
.demo-helix i:nth-child(7) { transform: scaleX(.82); }
.demo-helix i:nth-child(4),
.demo-helix i:nth-child(6) { transform: scaleX(1); }
.demo-helix i:nth-child(5) { transform: scaleX(.35); }

.demo-note {
  margin: 18px 0 0;
  color: #637892;
  font-size: 0.64rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay { transition-delay: 110ms; }
.reveal-delay-two { transition-delay: 220ms; }

@keyframes slow-rotate {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .desktop-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 760px; }
  .hero-stage { min-height: 580px; }
  .dashboard-window { right: 50%; transform: translateX(50%) perspective(1500px) rotateY(-2deg); }
  .chip-one { left: 9%; }
  .chip-two { right: 7%; }
  .hero-art { right: 4%; }
  .license-card { grid-template-columns: 1.15fr 0.85fr; }
  .license-card > .button { grid-column: 1 / -1; justify-self: start; }
  .app-frame {
    width: calc(100vw - 24px);
  }
  .app-workspace {
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .app-side-brand strong {
    font-size: 0.95rem;
  }
  .app-sidebar nav button {
    padding-inline: 10px;
  }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 34px, 760px); }
  .main-nav {
    position: absolute;
    top: 68px;
    right: 17px;
    left: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    gap: 0;
    background: rgba(3, 13, 28, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; }
  .menu-button { display: flex; }
  .nav-actions > .button { display: none; }
  .section-pad { padding-top: 126px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(2.7rem, 8vw, 4.6rem); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; padding-left: 8%; }
  .trust-item + .trust-item { border-top: 1px solid rgba(83, 126, 182, 0.18); border-left: 0; }
  .process-grid,
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .process-card:last-child { grid-column: 1 / -1; }
  .dna-grid,
  .report-grid,
  .final-cta-grid { grid-template-columns: 1fr; }
  .dna-copy,
  .report-copy { max-width: 680px; }
  .report-preview { order: 2; }
  .report-copy { order: 1; }
  .security-flow { grid-template-columns: 1fr 1fr; gap: 38px 22px; }
  .connector { display: none; }
  .license-card { grid-template-columns: 1fr; }
  .license-card > .button { grid-column: auto; }
  .final-brand img { width: 220px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .app-showcase-heading {
    display: grid;
    align-items: start;
    gap: 18px;
  }
  .app-showcase-heading h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .app-frame {
    width: calc(100vw - 18px);
    min-height: 786px;
    border-radius: 14px;
  }
  .app-windowbar {
    height: 50px;
    padding-inline: 13px;
  }
  .app-window-title span {
    display: none;
  }
  .app-workspace {
    height: 736px;
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .app-sidebar {
    align-items: center;
    padding: 15px 8px 12px;
  }
  .app-side-brand {
    margin: 0 0 18px;
  }
  .app-side-brand img {
    width: 40px;
    height: 40px;
  }
  .app-side-brand div,
  .app-sidebar nav span,
  .app-user div,
  .app-user > i {
    display: none;
  }
  .app-sidebar nav {
    width: 100%;
  }
  .app-sidebar nav button {
    height: 44px;
    place-content: center;
    padding: 0;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .app-sidebar nav i {
    font-size: 0.68rem;
  }
  .app-user {
    display: grid;
    width: 45px;
    height: 45px;
    place-content: center;
    padding: 4px;
    grid-template-columns: 1fr;
  }
  .app-user > span {
    width: 34px;
    height: 34px;
  }
  .app-content {
    overscroll-behavior: contain;
  }
  .app-view {
    min-width: 1010px;
  }
  .demo-workspace { grid-template-columns: 1fr; }
  .demo-clients { display: grid; border-right: 0; border-bottom: 1px solid rgba(91, 145, 210, 0.16); grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .demo-client + .demo-client { margin-top: 0; }
  .demo-client { grid-template-columns: 35px 1fr; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 26px, 560px); }
  .nav-shell { min-height: 68px; }
  .brand img { width: 37px; height: 37px; }
  .brand-copy strong { font-size: 0.66rem; }
  .brand-copy small { font-size: 0.45rem; }
  .section-pad { padding-top: 112px; padding-bottom: 54px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .hero-stage { min-height: 430px; margin-top: 15px; }
  .hero-art { top: -30px; right: -105px; width: 620px; height: 480px; }
  .dashboard-window { width: 580px; max-width: 124%; transform: translateX(50%) scale(.78); transform-origin: bottom center; }
  .floating-chip { display: none; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .dna-copy h2,
  .report-copy h2 { font-size: 2.15rem; }
  .process-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .process-card:last-child { grid-column: auto; }
  .process-card { min-height: 350px; }
  .dna-console-body { grid-template-columns: 1fr; padding: 25px 18px; }
  .dna-visual { height: 300px; }
  .dimension-list { width: 100%; }
  .dimension-list > div,
  .demo-bars > div { grid-template-columns: 98px 1fr 34px; }
  .report-preview { min-height: 520px; }
  .report-page { width: 310px; height: 438px; padding: 29px; }
  .report-brand { margin-bottom: 45px; }
  .report-page h3 { font-size: 1.85rem; }
  .report-chart { height: 80px; margin-top: 25px; }
  .security-flow { grid-template-columns: 1fr; }
  .license-card { padding: 30px 23px; gap: 26px; }
  .final-cta { padding: 72px 0; }
  .footer-nav { flex-wrap: wrap; }
  .footer-bottom { display: grid; gap: 8px; }
  .app-showcase-section {
    padding-top: 48px;
  }
  .app-showcase-heading {
    margin-bottom: 24px;
  }
  .demo-hint {
    justify-self: start;
  }
  .app-frame {
    width: calc(100vw - 10px);
    min-height: 730px;
    border-radius: 11px;
  }
  .app-windowbar {
    height: 46px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .app-window-title {
    justify-self: center;
  }
  .app-window-title strong {
    font-size: 0.58rem;
  }
  .app-window-actions span {
    display: none;
  }
  .app-workspace {
    height: 684px;
    grid-template-columns: 62px minmax(0, 1fr);
  }
  .app-sidebar {
    padding-inline: 6px;
  }
  .app-side-brand img {
    width: 36px;
    height: 36px;
  }
  .app-sidebar nav button {
    height: 41px;
  }
  .app-user {
    width: 40px;
    height: 40px;
  }
  .app-user > span {
    width: 31px;
    height: 31px;
    font-size: 0.48rem;
  }
  .demo-dialog { padding: 27px 16px 20px; }
  .demo-head { padding-right: 38px; }
  .demo-head h2 { font-size: 1.75rem; }
  .demo-clients { grid-template-columns: 1fr; }
  .demo-dashboard { padding: 8px 11px 16px; }
  .demo-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .demo-bottom { grid-template-columns: 1fr; padding: 18px; }
  .demo-helix { height: 175px; }
}
