:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f4ede4;
  color: #0b1f33;
}

.section {
  padding: 3.5rem 1.25rem;
}

@media (min-width: 640px) {
  .section {
    padding: 4.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5.5rem 2rem;
  }
}

.section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #0b1f33;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(11, 31, 51, 0.75);
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 31, 51, 0.55);
  margin-bottom: 0.5rem;
}

.nav-link {
  position: relative;
  padding-bottom: 0.15rem;
  font-size: 0.8rem;
  color: rgba(11, 31, 51, 0.7);
  transition: color 150ms ease, opacity 150ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 1px;
  background: rgba(11, 31, 51, 0.6);
  transition: width 160ms ease-out;
}

.nav-link:hover {
  color: #0b1f33;
}

.nav-link:hover::after {
  width: 100%;
}

.problem-card,
.solution-pill,
.stakeholder-card,
.value-card {
  border-radius: 1.1rem;
  background-image: radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0.96),
      transparent 60%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(244, 237, 228, 0.96),
      #f4ede4 70%
    );
  border: 1px solid rgba(11, 31, 51, 0.06);
  padding: 1rem 1rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  transition: box-shadow 180ms ease, transform 180ms ease,
    border-color 180ms ease, background 180ms ease;
}

@media (min-width: 640px) {
  .problem-card,
  .solution-pill,
  .stakeholder-card,
  .value-card {
    padding: 1.1rem 1.2rem;
  }
}

.problem-card h3,
.solution-pill h3,
.stakeholder-card h3,
.value-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.problem-card p,
.solution-pill p,
.stakeholder-card p,
.value-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(11, 31, 51, 0.75);
}

@media (min-width: 640px) {
  .problem-card h3,
  .solution-pill h3,
  .stakeholder-card h3,
  .value-card h3 {
    font-size: 1rem;
  }

  .problem-card p,
  .solution-pill p,
  .stakeholder-card p,
  .value-card p {
    font-size: 0.9rem;
  }
}

.problem-card:hover,
.solution-pill:hover,
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  border-color: rgba(11, 31, 51, 0.14);
}

/* Stakeholder cards (Who it's for) */

.stakeholder-card {
  background-image: none;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.1rem;
  border: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
}

.sc-hint {
  display: block;
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(217, 119, 66, 0.65);
  letter-spacing: 0.01em;
  transition: opacity 200ms ease;
}

.stakeholder-card:hover .sc-hint,
.stakeholder-card.sc-active .sc-hint {
  opacity: 0;
}

.sc-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(160deg, rgba(252, 245, 236, 0.99) 0%, rgba(255, 255, 255, 0.98) 70%);
  border-top: 2px solid rgba(217, 119, 66, 0.22);
  padding: 1rem 1.2rem;
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  will-change: transform;
}

.stakeholder-card:hover .sc-overlay,
.stakeholder-card.sc-active .sc-overlay {
  transform: translateY(0);
}

.sc-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d97742;
  line-height: 1;
}

.sc-label {
  font-size: 0.78rem;
  color: rgba(11, 31, 51, 0.65);
  line-height: 1.4;
}

.sc-rule {
  width: 2rem;
  height: 1px;
  background: rgba(217, 119, 66, 0.25);
  margin: 0.3rem 0;
}

.sc-breakdown {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sc-breakdown li {
  font-size: 0.72rem;
  color: rgba(11, 31, 51, 0.7);
  line-height: 1.45;
  padding-left: 0.85rem;
  position: relative;
}

.sc-breakdown li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: rgba(217, 119, 66, 0.55);
  font-size: 0.65rem;
}

.stakeholder-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
}

.stakeholder-card p {
  font-size: 0.85rem;
  color: rgba(11, 31, 51, 0.8);
}

@media (min-width: 640px) {
  .stakeholder-card h3 {
    font-size: 1rem;
  }

  .stakeholder-card p {
    font-size: 0.9rem;
  }
}

.stakeholder-card:hover {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  border-color: rgba(217, 119, 66, 0.3);
}

/* Outcomes cards */

.value-card {
  background-image: none;
  background: #ffffff;
  border-radius: 1.1rem;
  border: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.value-card:nth-child(2n) {
  background: rgba(244, 237, 228, 0.85);
}

.value-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(11, 31, 51, 0.82);
}

@media (min-width: 640px) {
  .value-card h3 {
    font-size: 1rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
  border-color: rgba(11, 31, 51, 0.22);
}

.how-card {
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 31, 51, 0.08);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

/* Sweep line across the top of each how-card */
.how-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(217, 119, 66, 0.45), transparent);
  animation: cardSweep 4s ease infinite;
  pointer-events: none;
}
.how-card:nth-child(2)::before { animation-delay: 1.3s; }
.how-card:nth-child(3)::before { animation-delay: 2.6s; }

@media (min-width: 640px) {
  .how-card {
    padding: 1.6rem 1.5rem;
  }
}

.how-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  border-color: rgba(11, 31, 51, 0.18);
}

.how-step {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 66, 0.3);
  background: rgba(244, 237, 228, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d97742;
  animation: stepPulse 3s ease infinite;
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 66, 0); }
  55%       { box-shadow: 0 0 0 6px rgba(217, 119, 66, 0.16); }
}

.how-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.1rem;
}

.how-card p {
  font-size: 0.9rem;
  color: rgba(11, 31, 51, 0.78);
}

.how-card ul {
  margin-top: 0.4rem;
  list-style: none;
  padding: 0;
}

.how-card li {
  font-size: 0.85rem;
  color: rgba(11, 31, 51, 0.8);
  padding-left: 1.15rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.how-card li::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: #d97742;
  position: absolute;
  left: 0.35rem;
  top: 0.55rem;
}

.footer-link {
  font-size: 0.8rem;
  color: rgba(11, 31, 51, 0.7);
  transition: color 150ms ease, opacity 150ms ease;
}

.footer-link:hover {
  color: #0b1f33;
}

/* Architecture explorer */

.arch-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 1.1rem 1rem;
}

@media (max-width: 899px) {
  .arch-container {
    flex-direction: column;
  }
}

.arch-sidebar {
  display: flex;
  flex-direction: column;
  width: 260px;
  gap: 0.5rem;
}

@media (max-width: 899px) {
  .arch-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }
}

.arch-diagram {
  flex: 1;
  position: relative;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
  padding: 1rem 0.9rem 1.1rem;
}

@media (min-width: 640px) {
  .arch-diagram {
    padding: 1.2rem 1.1rem 1.3rem;
  }
}

.arch-tab {
  border-radius: 0.9rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(11, 31, 51, 0.08);
  background: rgba(255, 255, 255, 0.85);
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease,
    background-color 150ms ease, transform 120ms ease;
}

.arch-tab:hover {
  border-color: rgba(11, 31, 51, 0.18);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.arch-active {
  background: #1f3a5f;
  border-color: rgba(244, 237, 228, 0.5);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.arch-tab-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(11, 31, 51, 0.9);
}

.arch-tab-subtitle {
  font-size: 0.75rem;
  color: rgba(11, 31, 51, 0.7);
  margin-top: 0.05rem;
}

.arch-active .arch-tab-title {
  color: #f4ede4;
}

.arch-active .arch-tab-subtitle {
  color: rgba(244, 237, 228, 0.85);
}

.arch-view {
  display: block;
}

.arch-view.hidden {
  display: none;
}

.arch-layer {
  margin-bottom: 0.5rem;
}

.arch-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.arch-row-wrap {
  flex-wrap: wrap;
}

@media (max-width: 639px) {
  .arch-row {
    flex-wrap: wrap;
  }
}

.arch-node {
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 31, 51, 0.08);
  min-width: 8.5rem;
  font-size: 0.8rem;
}

.arch-node-center {
  min-width: 13rem;
  max-width: 19rem;
  margin: 0 auto;
  background: radial-gradient(
      circle at 0 0,
      rgba(244, 237, 228, 0.98),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(31, 58, 95, 0.18),
      rgba(31, 58, 95, 0.28)
    );
  border-color: rgba(31, 58, 95, 0.45);
}

.arch-node-bottom {
  min-width: 11rem;
}

.arch-node-title {
  font-size: 0.85rem;
  font-weight: 600;
}

.arch-node-subtitle {
  font-size: 0.76rem;
  color: rgba(11, 31, 51, 0.78);
  margin-top: 0.1rem;
}

.arch-node-list {
  margin-top: 0.4rem;
  padding-left: 1rem;
  font-size: 0.76rem;
  color: rgba(11, 31, 51, 0.85);
}

.arch-node-list li {
  list-style: disc;
  margin-bottom: 0.18rem;
}

.arch-connector {
  margin: 0.25rem 0 0.45rem;
  display: flex;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(11, 31, 51, 0.45);
}

.arch-connector::before {
  content: "";
  width: 80px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(11, 31, 51, 0),
    rgba(11, 31, 51, 0.4),
    rgba(11, 31, 51, 0)
  );
}

.arch-connector-arrow {
  width: auto;
  padding: 0 0.2rem;
}

.arch-connector-arrow::before {
  content: "";
  display: none;
}

.arch-flow {
  margin-top: 0.2rem;
}

.arch-flow-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.arch-flow-node {
  min-width: 8.5rem;
}

/* Reuse tooltip and node hover styles */

.node-hover {
  position: relative;
}

.node-tooltip {
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: 0.45rem;
  transform: translateX(-50%);
  min-width: 11rem;
  max-width: 16rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 31, 51, 0.1);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  padding: 0.6rem 0.7rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 20;
}

.node-hover:hover .node-tooltip {
  opacity: 1;
  transform: translate(-50%, 0.1rem);
}

.tooltip-title {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.tooltip-text {
  font-size: 0.75rem;
  color: rgba(11, 31, 51, 0.78);
}

@media (max-width: 639px) {
  .node-tooltip {
    left: 0;
    transform: translateX(0);
  }

  .node-hover:hover .node-tooltip {
    transform: translateY(0.1rem);
  }
}

/* -------------------------------------------------------
   Outer section tabs (Overview | Architecture | Demo)
------------------------------------------------------- */
.section-tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  margin-bottom: 2.5rem;
}

.section-tab {
  padding: 0.55rem 1.1rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(11, 31, 51, 0.6);
  border-radius: 0.5rem 0.5rem 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  background: transparent;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
  position: relative;
  bottom: -1px;
}

.section-tab:hover {
  color: #0b1f33;
  background: rgba(255, 255, 255, 0.6);
}

.section-tab-active {
  color: #0b1f33;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 31, 51, 0.1);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid #d97742 !important;
}

.section-panel {
  display: block;
}

.section-panel.hidden {
  display: none;
}

/* ================================================================
   CONTEXTUAL DIAGRAM ANIMATIONS
   ================================================================ */

@keyframes dotPing {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(3.5); opacity: 0; }
}

@keyframes shimmerPass {
  0%   { left: -60%; }
  100% { left: 110%; }
}

@keyframes particleDown {
  0%        { top: 0%;   opacity: 0; }
  8%, 88%   { opacity: 0.65; }
  100%      { top: 100%; opacity: 0; }
}

@keyframes cardSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(260%); }
}

@keyframes metricGrow {
  0%   { width: 18%; }
  50%  { width: 82%; }
  100% { width: 18%; }
}

@keyframes evalPulse {
  0%, 100% { border-color: rgba(11,31,51,0.08); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
  50%      { border-color: rgba(217,119,66,0.3); box-shadow: 0 6px 18px rgba(0,0,0,0.08), 0 0 0 3px rgba(217,119,66,0.07); }
}

@keyframes monitorPulse {
  0%, 100% { border-color: rgba(11,31,51,0.08); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
  50%      { border-color: rgba(16,185,129,0.3); box-shadow: 0 6px 18px rgba(0,0,0,0.08), 0 0 0 3px rgba(16,185,129,0.07); }
}

@keyframes flowStepLight {
  0%, 14%, 100% {
    background: rgba(255,255,255,0.96);
    border-color: rgba(11,31,51,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  6% {
    background: rgba(252,245,236,0.98);
    border-color: rgba(217,119,66,0.38);
    box-shadow: 0 6px 18px rgba(217,119,66,0.12);
  }
}

@keyframes arrowLight {
  0%, 14%, 100% { color: rgba(11,31,51,0.4); }
  6%            { color: #d97742; }
}

/* ---- Hero: live telemetry dot ---- */
.hero-live-dot { position: relative; }
.hero-live-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.55);
  animation: dotPing 1.6s ease-out infinite;
}

/* ---- Hero: route badge dot ---- */
.hero-route-dot { position: relative; }
.hero-route-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(217, 119, 66, 0.55);
  animation: dotPing 2s ease-out 0.8s infinite;
}

/* ---- Hero: data particles traveling down connector ---- */
.hero-connector { position: relative; }
.hero-particle {
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(217, 119, 66, 0.5);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  animation: particleDown 1.8s ease infinite;
}
.hero-particle:nth-child(2) { animation-delay: 0.6s; }
.hero-particle:nth-child(3) { animation-delay: 1.2s; }

/* ---- Hero: ClauseAI intel cards metric bar ---- */
.hero-intel-card { position: relative; overflow: hidden; }
.hero-intel-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217,119,66,0.5), rgba(217,119,66,0.2));
  animation: metricGrow 3s ease infinite;
}
.hero-intel-card:nth-child(2)::after { animation-delay: 1s; }
.hero-intel-card:nth-child(3)::after { animation-delay: 2s; }

/* ---- Arch: Decision mode — vendor nodes being evaluated ---- */
[data-arch-view="decision"] .arch-layer:first-child .arch-node:nth-child(1) { animation: evalPulse 3s ease 0s    infinite; }
[data-arch-view="decision"] .arch-layer:first-child .arch-node:nth-child(2) { animation: evalPulse 3s ease 0.55s infinite; }
[data-arch-view="decision"] .arch-layer:first-child .arch-node:nth-child(3) { animation: evalPulse 3s ease 1.1s  infinite; }

/* ---- Arch: Decision mode — engine node analysis shimmer ---- */
[data-arch-view="decision"] .arch-node-center { overflow: hidden; }
[data-arch-view="decision"] .arch-node-center::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(217,119,66,0.09) 50%, transparent);
  animation: shimmerPass 2.2s ease infinite;
  pointer-events: none;
  z-index: 0;
}

/* ---- Arch: Management mode — live monitoring nodes ---- */
[data-arch-view="management"] .arch-layer:first-child .arch-node:nth-child(1) { animation: monitorPulse 2.5s ease 0s    infinite; }
[data-arch-view="management"] .arch-layer:first-child .arch-node:nth-child(2) { animation: monitorPulse 2.5s ease 0.45s infinite; }
[data-arch-view="management"] .arch-layer:first-child .arch-node:nth-child(3) { animation: monitorPulse 2.5s ease 0.9s  infinite; }

/* ---- Arch: Management mode — engine telemetry shimmer ---- */
[data-arch-view="management"] .arch-node-center { overflow: hidden; }
[data-arch-view="management"] .arch-node-center::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(16,185,129,0.08) 50%, transparent);
  animation: shimmerPass 2.8s ease infinite;
  pointer-events: none;
  z-index: 0;
}

/* ---- Arch: Flow diagram — sequential step activation ---- */
[data-arch-view="flow"] .arch-flow-row > .arch-flow-node:nth-child(1) { animation: flowStepLight 5s ease 0s   infinite; }
[data-arch-view="flow"] .arch-flow-row > .arch-flow-node:nth-child(3) { animation: flowStepLight 5s ease 1s   infinite; }
[data-arch-view="flow"] .arch-flow-row > .arch-flow-node:nth-child(5) { animation: flowStepLight 5s ease 2s   infinite; }
[data-arch-view="flow"] .arch-flow-row > .arch-flow-node:nth-child(7) { animation: flowStepLight 5s ease 3s   infinite; }
[data-arch-view="flow"] .arch-flow-row > .arch-flow-node:nth-child(9) { animation: flowStepLight 5s ease 4s   infinite; }

[data-arch-view="flow"] .arch-flow-row > .arch-connector-arrow:nth-child(2) { animation: arrowLight 5s ease 0.5s infinite; }
[data-arch-view="flow"] .arch-flow-row > .arch-connector-arrow:nth-child(4) { animation: arrowLight 5s ease 1.5s infinite; }
[data-arch-view="flow"] .arch-flow-row > .arch-connector-arrow:nth-child(6) { animation: arrowLight 5s ease 2.5s infinite; }
[data-arch-view="flow"] .arch-flow-row > .arch-connector-arrow:nth-child(8) { animation: arrowLight 5s ease 3.5s infinite; }

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

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
