:root {
  color-scheme: light;
  font-family: var(--boot-font-family, "Public Sans Variable", "Public Sans", Arial, sans-serif);
  font-size: var(--boot-font-size, 16px);
  background: #fff;
}

body {
  margin: 0;
  background: #fff;
}

.boot-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  color: #141a21;
  background: #fff;
}

.boot-simple {
  display: none;
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  border: 3px solid #d7e8fa;
  border-top-color: #036fdc;
  border-radius: 50%;
  animation: boot-spin .75s linear infinite;
}

html[data-loader-experience="simple"] .boot-simple { display: block; }
html[data-loader-experience="simple"] .boot-graph,
html[data-loader-experience="simple"] .boot-kicker,
html[data-loader-experience="simple"] .boot-facts,
html[data-loader-experience="simple"] .boot-brand { display: none; }

.boot-kicker {
  margin-top: 18px;
  color: #036fdc;
  font-size: 12px;
  font-weight: 700;
}

.boot-facts {
  position: relative;
  width: min(460px, 100%);
  height: 52px;
  margin-top: 8px;
}

.boot-facts p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  opacity: 1;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
.boot-brand { position: absolute; bottom: clamp(32px, 7vh, 72px); display: flex; gap: 10px; align-items: center; font-size: 20px; }
.boot-brand img { border-radius: 50%; }
.boot-graph { position: relative; width: 164px; height: 94px; animation: boot-float 2s ease-in-out infinite; }
.boot-edge { position: absolute; height: 3px; opacity: .24; background: #036fdc; transform-origin: left center; animation: boot-edge-visit 1.6s ease-in-out infinite; }
.boot-edge-ab { top: 70px; left: 15px; width: 64px; transform: rotate(-39deg); }
.boot-edge-bc { top: 32px; left: 70px; width: 56px; transform: rotate(35deg); animation-delay: 240ms; }
.boot-edge-cd { top: 63px; left: 116px; width: 52px; transform: rotate(-48deg); animation-delay: 480ms; }
.boot-edge-ac { top: 70px; left: 15px; width: 108px; height: 0; opacity: .18; transform: rotate(-5deg); background: none; border-top: 2px dashed #036fdc; animation-delay: 720ms; }
.boot-node { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px #036fdc; animation: boot-node-visit 1.6s ease-in-out infinite; }
.boot-node-a { left: 8px; top: 63px; }
.boot-node-b { left: 63px; top: 20px; animation-delay: 240ms; }
.boot-node-c { left: 109px; top: 55px; animation-delay: 480ms; }
.boot-node-d { right: 2px; top: 12px; animation-delay: 720ms; }

@keyframes boot-float { 50% { transform: translateY(-4px); } }
@keyframes boot-edge-visit { 0%, 18%, 100% { opacity: .2; } 34%, 52% { opacity: 1; } }
@keyframes boot-node-visit { 0%, 18%, 100% { opacity: .45; transform: scale(.92); } 34%, 52% { opacity: 1; transform: scale(1.12); } }
@keyframes boot-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .boot-graph, .boot-edge, .boot-node, .boot-simple { animation: none; }
}
