:root {
  --paper: #e8e9df;
  --ink: #30302f;
  --muted: #74746d;
  --red: #ff3b3f;
  --green: #82a35e;
  --yellow: #e9d06c;
  --line: rgba(48, 48, 47, 0.18);
  --dark-line: rgba(232, 233, 223, 0.18);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

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

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

::selection {
  background: var(--red);
  color: var(--paper);
}

.cursor-glow {
  position: fixed;
  inset: auto auto 0 0;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 59, 63, 0.24);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
  z-index: 20;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(232, 233, 223, 0.86);
  backdrop-filter: blur(18px);
  animation: headerDrop 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand,
.nav-links,
.nav-contact {
  font-size: 15px;
  line-height: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

.nav-links a,
.nav-contact,
.text-link,
.back-top,
.employee-detail a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-contact:hover,
.text-link:hover,
.back-top:hover,
.employee-detail a:hover {
  color: var(--red);
}

.nav-contact {
  justify-self: end;
  border-bottom: 1px solid currentColor;
}

.section-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 98px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 82px;
}

.dark {
  max-width: none;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--dark-line);
}

.meta-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  font-size: clamp(14px, 2vw, 22px);
  line-height: 1;
  color: var(--muted);
}

.meta-line span,
.hero-copy .kicker,
.hero-copy h1,
.hero-lede,
.hero-actions {
  animation: introRise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.meta-line span:nth-child(2) {
  animation-delay: 90ms;
}

.meta-line span:nth-child(3) {
  animation-delay: 180ms;
}

.hero-copy .kicker {
  animation-delay: 210ms;
}

.hero-copy h1 {
  animation-delay: 310ms;
}

.hero-lede {
  animation-delay: 420ms;
}

.hero-actions {
  animation-delay: 510ms;
}

.meta-line span:last-child {
  justify-self: end;
}

.hero {
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(34px, 5vw, 74px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
}

.kicker {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 9ch;
  font-size: clamp(78px, 13vw, 186px);
  line-height: 0.84;
  letter-spacing: 0;
  font-weight: 1000;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

h2 {
  max-width: 980px;
  font-size: clamp(38px, 5.7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 1000;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

h3 {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

p {
  max-width: 760px;
  font-size: clamp(17px, 2.1vw, 25px);
  line-height: 1.08;
  color: inherit;
}

.hero-lede {
  max-width: 700px;
}

.hero-copy {
  min-width: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 0 rgba(48, 48, 47, 0.1);
}

.button-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.button-ghost {
  color: var(--ink);
}

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

.hero-art {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 470px;
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: 56% 38%;
  filter: saturate(0.98) contrast(1.04);
  animation: posterFloat 8s ease-in-out infinite;
  will-change: transform;
}

.statement {
  position: relative;
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: clamp(24px, 5vw, 84px);
  min-height: 650px;
  align-items: end;
}

.statement p:not(.kicker) {
  color: rgba(232, 233, 223, 0.78);
}

.big-number {
  font-size: clamp(70px, 10vw, 140px);
  line-height: 0.82;
  font-weight: 1000;
  letter-spacing: 0;
}

.statement-mark {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  top: 42%;
  width: 70px;
  color: var(--red);
  animation: markPulse 3.8s ease-in-out infinite;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(34px, 7vw, 90px);
}

.section-heading > *,
.statement > *,
.split > *,
.security > *,
.employee-layout > *,
.site-footer > * {
  min-width: 0;
}

.employee-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 4vw, 56px);
}

.employee-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.employee-card {
  min-height: 124px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(24px, 3.25vw, 44px);
  line-height: 0.94;
  font-weight: 1000;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.employee-card:hover,
.employee-card.active {
  background: var(--red);
  color: var(--paper);
}

.employee-card:hover {
  transform: translateY(-4px);
}

.employee-detail {
  min-height: 100%;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.employee-detail.detail-swap {
  animation: detailSwap 360ms ease both;
}

.detail-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.employee-detail p {
  font-size: clamp(20px, 2.25vw, 30px);
}

.employee-detail a,
.text-link {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: center;
}

.split-copy p:not(.kicker) {
  color: var(--muted);
}

.system-board {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 560px;
  padding: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(48, 48, 47, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(48, 48, 47, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.system-board::before {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(48, 48, 47, 0.3);
  animation: rotateFrame 22s linear infinite;
}

.board-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(232, 233, 223, 0.9);
  font-size: clamp(22px, 2.9vw, 40px);
  line-height: 0.98;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.board-row strong {
  color: var(--red);
}

.system-board.visible .board-row {
  animation: rowSlide 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.system-board.visible .board-row:nth-child(2) {
  animation-delay: 80ms;
}

.system-board.visible .board-row:nth-child(3) {
  animation-delay: 160ms;
}

.system-board.visible .board-row:nth-child(4) {
  animation-delay: 240ms;
}

.board-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 210px;
  height: 210px;
  padding: 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  animation: coreFloatBoard 5s ease-in-out infinite;
}

.board-core img {
  width: 72px;
  filter: invert(1);
}

.intelligence-map {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(48, 48, 47, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(48, 48, 47, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}

.map-grid,
.map-orbit,
.signal-line,
.map-node,
.map-core,
.map-output {
  position: absolute;
}

.map-grid {
  inset: 34px;
  border: 1px solid var(--line);
}

.map-orbit {
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(48, 48, 47, 0.25);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-one {
  width: min(74%, 520px);
  aspect-ratio: 1;
  animation: rotateFrame 22s linear infinite;
}

.orbit-two {
  width: min(54%, 360px);
  aspect-ratio: 1;
  border-color: rgba(255, 59, 63, 0.28);
  animation: rotateFrame 15s linear infinite reverse;
}

.signal-line {
  height: 1px;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 63, 0.85), transparent);
  transform-origin: left center;
  animation: signalPulse 3.4s ease-in-out infinite;
}

.line-a {
  left: 24%;
  top: 30%;
  transform: rotate(22deg);
}

.line-b {
  left: 21%;
  top: 64%;
  transform: rotate(-18deg);
  animation-delay: 500ms;
}

.line-c {
  left: 49%;
  top: 32%;
  transform: rotate(150deg);
  animation-delay: 900ms;
}

.line-d {
  left: 50%;
  top: 70%;
  transform: rotate(205deg);
  animation-delay: 1300ms;
}

.map-node {
  z-index: 2;
  width: min(34%, 230px);
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(232, 233, 223, 0.9);
  transition: transform 180ms ease, background 180ms ease;
}

.map-node:hover {
  transform: translateY(-5px);
  background: var(--paper);
}

.map-node span {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.map-node strong {
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 0.9;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.node-email {
  left: 8%;
  top: 10%;
}

.node-crm {
  right: 8%;
  top: 16%;
}

.node-cloud {
  left: 8%;
  bottom: 13%;
}

.node-knowledge {
  right: 8%;
  bottom: 9%;
  width: min(42%, 295px);
}

.map-core {
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(34%, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 26px;
  background: var(--ink);
  color: var(--paper);
  transform: translate(-50%, -50%);
  text-align: center;
  animation: coreFloat 5s ease-in-out infinite;
}

.map-core img {
  width: min(70%, 140px);
  filter: invert(1);
}

.map-core p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.map-output {
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--paper);
  font-size: 13px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: outputBlink 3s ease-in-out infinite;
}

.output-context {
  left: 43%;
  top: 12%;
}

.output-action {
  right: 9%;
  top: 50%;
  animation-delay: 650ms;
}

.output-audit {
  left: 43%;
  bottom: 12%;
  animation-delay: 1200ms;
}

.security {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 6vw, 88px);
  align-items: end;
}

.security-copy {
  padding-top: 10vh;
}

.security-copy p:not(.kicker) {
  color: rgba(232, 233, 223, 0.78);
}

.security-art {
  position: relative;
  margin: 0;
  min-height: 720px;
  align-self: stretch;
  overflow: hidden;
}

.security-art img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: 58% 48%;
  animation: posterFloatDark 9s ease-in-out infinite;
  will-change: transform;
}

.hero-art::after,
.security-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 59, 63, 0.12) 48%, transparent 54% 100%);
  transform: translateX(-120%);
  animation: scanSweep 7s ease-in-out infinite;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.principle-card:hover {
  background: rgba(255, 59, 63, 0.06);
  transform: translateY(-4px);
}

.principle-card span {
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
}

.principle-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 0.98;
  max-width: 10.5ch;
}

.principle-card p {
  font-size: 18px;
  line-height: 1.15;
  color: var(--muted);
}

.industries {
  overflow: hidden;
}

.industries h2 {
  margin-bottom: 46px;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 48s linear infinite;
  will-change: transform;
}

.ticker span {
  flex: 0 0 auto;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  font-size: clamp(26px, 4.4vw, 62px);
  line-height: 0.96;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.roadmap h2 {
  margin-bottom: 50px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.roadmap-step {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  transition: background 180ms ease, color 180ms ease;
}

.roadmap-step:hover {
  background: var(--red);
  color: var(--paper);
}

.roadmap-step span {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(232, 233, 223, 0.65);
}

.roadmap-step strong {
  font-size: clamp(24px, 3vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 70px);
}

.footer-logo-block {
  border: 0;
  background: transparent;
  padding: 0;
}

.footer-original-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.footer-company h2 {
  margin-bottom: 18px;
}

.footer-company p {
  color: var(--muted);
}

.footer-company a {
  border-bottom: 1px solid currentColor;
}

.back-top {
  align-self: start;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

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

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

@keyframes tickerMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes posterFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.01);
  }
  50% {
    transform: translate3d(-10px, -14px, 0) scale(1.035);
  }
}

@keyframes posterFloatDark {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.01);
  }
  50% {
    transform: translate3d(8px, -12px, 0) scale(1.03);
  }
}

@keyframes scanSweep {
  0%,
  18% {
    transform: translateX(-120%);
  }
  42%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes markPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.78;
  }
}

@keyframes detailSwap {
  from {
    opacity: 0.75;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.15;
    filter: saturate(0.8);
  }
  50% {
    opacity: 1;
    filter: saturate(1.4);
  }
}

@keyframes coreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, calc(-50% - 10px)) scale(1.025);
  }
}

@keyframes outputBlink {
  0%,
  100% {
    opacity: 0.74;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes rotateFrame {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rowSlide {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes coreFloatBoard {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 8px));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  h2 {
    font-size: clamp(38px, 8.4vw, 76px);
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .employee-layout,
  .split,
  .security,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .hero-art img {
    min-height: 430px;
  }

  .statement,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .statement {
    min-height: 580px;
  }

  .intelligence-map {
    min-height: 560px;
  }

  .map-node {
    width: min(38%, 220px);
  }

  .map-core {
    width: min(38%, 220px);
  }

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

  .security-art,
  .security-art img {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .section-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .meta-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .meta-line span:last-child {
    justify-self: start;
  }

  h1 {
    font-size: clamp(72px, 24vw, 118px);
  }

  h2 {
    font-size: clamp(32px, 9.2vw, 48px);
  }

  .hero {
    min-height: auto;
  }

  .hero-art,
  .hero-art img {
    min-height: 360px;
  }

  .employee-roster,
  .principle-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .employee-card {
    min-height: 86px;
  }

  .brand-logo {
    width: 76px;
    height: 36px;
  }

  .intelligence-map {
    min-height: 620px;
  }

  .map-grid {
    inset: 16px;
  }

  .map-node {
    width: calc(50% - 24px);
    min-height: 88px;
    padding: 12px;
  }

  .map-node strong {
    font-size: clamp(21px, 6.5vw, 30px);
  }

  .map-node span {
    font-size: 10px;
  }

  .node-email,
  .node-cloud {
    left: 16px;
  }

  .node-crm,
  .node-knowledge {
    right: 16px;
  }

  .node-knowledge {
    width: calc(50% - 24px);
  }

  .map-core {
    width: 158px;
    padding: 18px;
  }

  .map-output {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .output-context {
    left: 38%;
    top: 34%;
  }

  .output-action {
    right: 24px;
    top: 63%;
  }

  .output-audit {
    left: 34%;
    bottom: 30%;
  }

  .security-art,
  .security-art img {
    min-height: 480px;
  }

  .footer-logo-block {
    max-width: 220px;
  }

  .cursor-glow {
    display: none;
  }
}

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