/* ONLIME SYSTEMS - COOKIE CONSENT CSS
   Scope: cookie banner, cookie modal and consent UI states only. */

@keyframes aiAppliedFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes overloadCenterIn {
  0% { opacity: 0; transform: scale(0.58) rotate(-6deg); filter: blur(12px); }
  70% { opacity: 1; transform: scale(1.035) rotate(0.7deg); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
}

@keyframes overloadCardIn {
  0% { opacity: 0; transform: translate3d(var(--from-x), var(--from-y), 0) scale(0.72) rotate(calc(var(--r) - 10deg)); filter: blur(9px); }
  72% { opacity: 1; transform: translate3d(0, 0, 0) scale(1.035) rotate(calc(var(--r) + 1.5deg)); filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotate(var(--r)); filter: blur(0); }
}

@keyframes overloadLayerIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.68) rotate(calc(var(--r) - 18deg)); filter: blur(10px); }
  100% { opacity: 0.86; transform: translateY(0) scale(1) rotate(var(--r)); filter: blur(0); }
}

@keyframes overloadScrapIn {
  0% { opacity: 0; transform: translate3d(0, 24px, 0) scale(0.6) rotate(calc(var(--r) - 16deg)); filter: blur(8px); }
  100% { opacity: 0.78; transform: translate3d(0, 0, 0) scale(1) rotate(var(--r)); filter: blur(0); }
}

@keyframes overloadDrawWire {
  0% { opacity: 0; stroke-dashoffset: 1; }
  15% { opacity: 0.72; }
  100% { opacity: 0.92; stroke-dashoffset: 0; }
}

@keyframes overloadNodeIn {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 0.96; transform: scale(1); }
}

@keyframes overloadNodePulse {
  0%, 100% { opacity: 0.52; r: 4; }
  50% { opacity: 1; r: 6; }
}

@keyframes overloadCoreIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes overloadGentleFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

@keyframes overloadCardDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

@keyframes overloadScrapDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 8px; }
}

@keyframes overloadFloatDust {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(2%, -2%, 0) rotate(1turn); }
}

@keyframes formSignalPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.78;
    filter: saturate(0.96);
  }

  50% {
    transform: translateY(-2px);
    opacity: 1;
    filter: saturate(1.12);
  }
}

@keyframes formHaloDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translate3d(-12px, -14px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes ctaSignalSweep {
  0%,
  100% {
    opacity: 0.24;
    transform: translateX(-18px) scaleX(0.88);
  }

  48% {
    opacity: 0.9;
    transform: translateX(14px) scaleX(1);
  }
}

.consent-ui-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  width: min(1040px, calc(100vw - 32px));
  transform: translateX(-50%);
}

.cookie-banner__shell,
.cookie-modal__dialog,
.cookie-category {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 226, 255, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 18%, rgba(92, 232, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(164, 244, 214, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(5, 10, 14, 0.96), rgba(7, 15, 22, 0.94) 58%, rgba(9, 24, 28, 0.8)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 32px 90px rgba(0, 0, 0, 0.42),
    0 0 50px rgba(92, 232, 255, 0.05);
  backdrop-filter: blur(24px);
}

.cookie-banner__shell {
  display: grid;
  gap: 18px;
  padding: 30px 32px 24px;
}

.cookie-banner__shell::before,
.cookie-modal__dialog::before,
.cookie-category::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(104, 236, 255, 0.14), transparent 28%),
    linear-gradient(315deg, rgba(132, 255, 197, 0.08), transparent 26%);
}

.cookie-banner__shell::after,
.cookie-modal__dialog::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.cookie-banner__content,
.cookie-banner__layout,
.cookie-banner__footer,
.cookie-modal__top,
.cookie-modal__intro,
.cookie-modal__categories,
.cookie-modal__actions,
.cookie-category__head {
  position: relative;
  z-index: 3;
}

.cookie-banner__eyebrow {
  margin: 0 0 12px;
  color: #18e5bf;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cookie-banner__title,
.cookie-modal__title {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.04em;
}

.cookie-banner__title {
  max-width: 7.4ch;
  font-size: clamp(2.3rem, 4.1vw, 3.95rem);
  line-height: 0.9;
  text-wrap: balance;
}

.cookie-banner__text,
.cookie-modal__intro,
.cookie-category__description {
  margin: 0;
  color: rgba(226, 237, 245, 0.76);
  line-height: 1.7;
}

.cookie-banner__text {
  margin-top: 14px;
  max-width: 33ch;
  font-size: 0.95rem;
  line-height: 1.52;
}

.cookie-banner__layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.88fr) minmax(460px, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.cookie-banner__content {
  display: grid;
  align-content: start;
}

.cookie-banner__content::after {
  position: absolute;
  top: 2px;
  right: -14px;
  bottom: 2px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(130, 205, 232, 0.18), transparent);
}

.cookie-banner__hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 81px;
  margin-bottom: 10px;
  color: #19f0d7;
}

.cookie-banner__hero-icon::before {
  width: 100%;
  height: 100%;
  content: "";
}

.cookie-banner__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px 14px;
  margin-top: 22px;
}

.cookie-banner__benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.cookie-banner__benefit strong {
  display: block;
  margin: 0 0 2px;
  color: rgba(240, 247, 251, 0.96);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.cookie-banner__benefit small {
  display: block;
  color: rgba(192, 208, 217, 0.7);
  font-size: 0.78rem;
  line-height: 1.36;
}

.cookie-banner__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.cookie-banner__benefit-icon::before {
  width: 100%;
  height: 100%;
  content: "";
}

.cookie-banner__reasons {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 2px;
  min-height: 100%;
}

.cookie-banner__reason {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  align-content: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cookie-banner__reason:last-child {
  border-bottom: 0;
}

.cookie-banner__reason h3 {
  margin: 0 0 4px;
  color: #f5fbff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cookie-banner__reason p {
  margin: 0;
  color: rgba(205, 221, 230, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-banner__reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(170, 236, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cookie-banner__reason-icon::before {
  width: 20px;
  height: 20px;
  content: "";
}

.cookie-banner__pill {
  align-self: start;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(24, 229, 191, 0.14);
  color: #18e5bf;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cookie-banner__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.85fr) minmax(260px, 1.15fr);
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner__manage {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(23, 234, 199, 0.94);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.cookie-banner__manage:hover,
.cookie-banner__manage:focus-visible {
  color: #f5fdff;
  transform: translateY(-1px);
}

.cookie-banner__manage-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-left: 6px;
}

.cookie-banner__manage-icon::before {
  width: 100%;
  height: 100%;
  content: "";
}

.cookie-banner__links {
  display: none;
}

.cookie-banner__hero-icon::before,
.cookie-banner__benefit-icon::before,
.cookie-banner__reason-icon::before,
.cookie-banner__manage-icon::before {
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.cookie-banner__hero-icon--privacy {
  color: transparent;
}

.cookie-banner__hero-icon--privacy::before {
  background: center / contain no-repeat url("/assets/icons/cookie-consent/privacy-shield.svg");
  mask-image: none;
  -webkit-mask-image: none;
}

.cookie-banner__benefit-icon--secure {
  color: #19f0d7;
}

.cookie-banner__benefit-icon--secure::before {
  mask-image: url("/assets/icons/cookie-consent/secure-shield.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/secure-shield.svg");
}

.cookie-banner__benefit-icon--performance {
  color: #20bcff;
}

.cookie-banner__benefit-icon--performance::before {
  mask-image: url("/assets/icons/cookie-consent/performance-bars.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/performance-bars.svg");
}

.cookie-banner__benefit-icon--experience {
  color: #b86bff;
}

.cookie-banner__benefit-icon--experience::before {
  mask-image: url("/assets/icons/cookie-consent/experience-user.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/experience-user.svg");
}

.cookie-banner__reason-icon--essential {
  background: radial-gradient(circle at 50% 38%, rgba(25, 240, 215, 0.16), rgba(255, 255, 255, 0.02));
  color: #19f0d7;
}

.cookie-banner__reason-icon--essential::before {
  mask-image: url("/assets/icons/cookie-consent/essential-lock.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/essential-lock.svg");
}

.cookie-banner__reason-icon--data {
  background: radial-gradient(circle at 50% 38%, rgba(32, 188, 255, 0.16), rgba(255, 255, 255, 0.02));
  color: #20bcff;
}

.cookie-banner__reason-icon--data::before {
  mask-image: url("/assets/icons/cookie-consent/data-shield.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/data-shield.svg");
}

.cookie-banner__reason-icon--control {
  background: radial-gradient(circle at 50% 38%, rgba(184, 107, 255, 0.16), rgba(255, 255, 255, 0.02));
  color: #b86bff;
}

.cookie-banner__reason-icon--control::before {
  mask-image: url("/assets/icons/cookie-consent/control-sliders.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/control-sliders.svg");
}

.cookie-banner__manage-icon {
  color: currentColor;
}

.cookie-banner__manage-icon::before {
  mask-image: url("/assets/icons/cookie-consent/external-link.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/external-link.svg");
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

body.consent-pending > *:not(.cookie-banner):not(.cookie-modal) {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
  transition: filter 220ms ease, opacity 220ms ease;
}

body.consent-pending::before {
  position: fixed;
  inset: 0;
  z-index: 115;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 18, 24, 0.18), rgba(2, 8, 12, 0.34)),
    rgba(1, 5, 8, 0.18);
  pointer-events: none;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(173, 227, 255, 0.2);
  font: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  pointer-events: auto;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
}

.cookie-button--primary,
.cookie-button--secondary {
  flex: 1 1 180px;
}

.cookie-button--primary {
  color: #041018;
  background: linear-gradient(135deg, #72efff, #9ff6cb);
  box-shadow: 0 14px 30px rgba(114, 239, 255, 0.18);
}

.cookie-button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.cookie-button--ghost {
  color: rgba(220, 232, 241, 0.86);
  background: transparent;
}

.cookie-banner .cookie-button--primary,
.cookie-banner .cookie-button--secondary {
  width: 100%;
  min-width: 0;
  flex: 0 1 auto;
  min-height: 48px;
  border-radius: 18px;
}

.cookie-banner .cookie-button--primary {
  color: #ecffff;
  background: linear-gradient(135deg, #23dbab 0%, #1eaef9 100%);
  border-color: rgba(108, 238, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 34px rgba(33, 193, 247, 0.24),
    0 0 40px rgba(41, 226, 189, 0.08);
}

.cookie-banner .cookie-button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cookie-banner .cookie-button--primary:hover,
.cookie-banner .cookie-button--primary:focus-visible,
.cookie-banner .cookie-button--secondary:hover,
.cookie-banner .cookie-button--secondary:focus-visible {
  border-color: rgba(157, 239, 255, 0.26);
}

.cookie-banner .cookie-button--primary:hover,
.cookie-banner .cookie-button--primary:focus-visible {
  background: linear-gradient(135deg, #2ae8b5 0%, #25bbff 100%);
  border-color: rgba(108, 238, 255, 0.42);
}

.cookie-banner .cookie-button--secondary:hover,
.cookie-banner .cookie-button--secondary:focus-visible {
  background: rgba(157, 239, 255, 0.08);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  width: min(968px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.cookie-modal::backdrop {
  background: rgba(1, 4, 7, 0.72);
  backdrop-filter: blur(14px);
}

.cookie-modal[open] {
  display: block;
}

.cookie-modal .cookie-modal__dialog {
  isolation: isolate;
  max-height: min(860px, calc(100dvh - 48px));
  overflow: auto;
}

.cookie-modal .cookie-modal__dialog::-webkit-scrollbar {
  width: 10px;
}

.cookie-modal .cookie-modal__dialog::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(157, 239, 255, 0.18);
  background-clip: padding-box;
}

.cookie-modal .cookie-modal__dialog::-webkit-scrollbar-track {
  background: transparent;
}

.cookie-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px;
}

.cookie-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-modal__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.94;
}

.cookie-modal__intro {
  margin-top: 16px;
  max-width: 72ch;
}

.cookie-modal__close {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(173, 227, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 4;
}

.cookie-modal__close span {
  font-size: 1.5rem;
  line-height: 1;
  transform: rotate(45deg);
}

.cookie-modal__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.cookie-category {
  min-height: 100%;
  padding: 22px;
  border-radius: 26px;
}

.cookie-category__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-category__title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.cookie-category__meta {
  display: grid;
  justify-items: end;
  gap: 12px;
  color: rgba(198, 217, 228, 0.82);
  font-size: 0.82rem;
  white-space: nowrap;
}

.cookie-category__meta span {
  padding: 6px 10px;
  border: 1px solid rgba(170, 236, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.cookie-category--compact {
  grid-column: 1 / -1;
}

.cookie-category[data-consent-category="necessary"] {
  border-color: rgba(150, 244, 205, 0.16);
}

.cookie-category[data-consent-category="analytics"] {
  border-color: rgba(157, 239, 255, 0.16);
}

.cookie-category[data-consent-category="marketing"] {
  border-color: rgba(255, 203, 133, 0.14);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 196, 112, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(5, 10, 14, 0.96), rgba(7, 15, 22, 0.94) 58%, rgba(9, 24, 28, 0.8)),
    rgba(255, 255, 255, 0.03);
}

.cookie-category[data-consent-category="preferences"] {
  border-color: rgba(208, 220, 232, 0.12);
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 34px;
  pointer-events: auto;
  z-index: 4;
}

.cookie-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-toggle__track {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(175, 226, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.cookie-toggle__track::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232, 240, 246, 0.9);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  content: "";
  transition: transform 180ms ease, background 180ms ease;
}

.cookie-toggle input:checked + .cookie-toggle__track {
  border-color: rgba(129, 239, 221, 0.55);
  background: linear-gradient(135deg, rgba(77, 236, 255, 0.42), rgba(129, 239, 221, 0.52));
  box-shadow: inset 0 0 18px rgba(83, 233, 255, 0.18);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(24px);
  background: #061116;
}

.cookie-toggle--locked .cookie-toggle__track {
  border-color: rgba(166, 229, 255, 0.3);
  background: linear-gradient(135deg, rgba(74, 231, 255, 0.38), rgba(147, 245, 205, 0.38));
}

.cookie-toggle--locked .cookie-toggle__track::after {
  transform: translateX(24px);
  background: #061116;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    transform: none;
  }

  .cookie-banner__shell,
  .cookie-modal__dialog {
    padding: 22px;
    border-radius: 24px;
  }

  .cookie-modal {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .cookie-banner__shell {
    gap: 20px;
  }

  .cookie-banner__layout,
  .cookie-banner__footer {
    grid-template-columns: 1fr;
  }

  .cookie-banner__content::after {
    display: none;
  }

  .cookie-banner__benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner__reasons {
    grid-template-rows: none;
    min-height: 0;
  }

  .cookie-banner__benefit {
    width: 100%;
  }

  .cookie-banner__footer {
    justify-items: stretch;
  }

  .cookie-banner__manage {
    justify-self: start;
  }

  .cookie-banner__reason {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cookie-banner__pill {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .cookie-category__head,
  .cookie-modal__top {
    flex-direction: column;
  }

  .cookie-category__meta {
    justify-items: start;
    white-space: normal;
  }

  .cookie-button--primary,
  .cookie-button--secondary,
  .cookie-button--ghost {
    flex-basis: 100%;
  }

  .cookie-banner .cookie-button--primary,
  .cookie-banner .cookie-button--secondary {
    width: 100%;
  }

  .cookie-modal__categories {
    grid-template-columns: 1fr;
  }
}

@keyframes particleDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-120px, 90px, 0);
  }
}

@keyframes scan {
  0%,
  68% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

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

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bridgePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.94);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes bridgeAurora {
  0%,
  100% {
    opacity: 0.56;
    transform: translate(-52%, -50%) scaleX(0.96);
  }

  50% {
    opacity: 0.76;
    transform: translate(-48%, -50%) scaleX(1.04);
  }
}

@keyframes bridgeDataMist {
  0%,
  100% {
    background-position:
      0 0,
      34px 18px;
    opacity: 0.22;
  }

  50% {
    background-position:
      48px 22px,
      4px 54px;
    opacity: 0.34;
  }
}

@keyframes bridgeRibbon {
  0%,
  100% {
    opacity: 0.52;
    transform: translate(-52%, -50%) skewX(-6deg);
  }

  50% {
    opacity: 0.82;
    transform: translate(-48%, -50%) skewX(6deg);
  }
}

@keyframes bridgeSparkDrift {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-51%, -48%) scale(0.96);
  }

  50% {
    opacity: 0.72;
    transform: translate(-49%, -53%) scale(1.04);
  }
}

@keyframes bridgeOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.42;
  }

  50% {
    opacity: 0.72;
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.42;
  }
}

@keyframes bridgeCoreFloat {
  0%,
  100% {
    opacity: 0.68;
    transform: translate(-50%, -52%) scale(0.96);
  }

  50% {
    opacity: 0.98;
    transform: translate(-50%, -48%) scale(1.06);
  }
}

@keyframes onlCtaShine {
  0%,
  48% {
    transform: translateX(-180%) rotate(18deg);
    opacity: 0;
  }

  58% {
    opacity: 1;
  }

  78%,
  100% {
    transform: translateX(360%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes onlPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.24);
    opacity: 1;
  }
}

@keyframes portalFlash {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  18% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes portalLanding {
  0% {
    filter: brightness(1.15) saturate(1.15);
    transform: translateY(20px) scale(0.988);
  }

  42% {
    filter: brightness(1.05) saturate(1.08);
    transform: translateY(0) scale(1.01);
  }

  100% {
    filter: none;
    transform: none;
  }
}

@keyframes signal {
  0%,
  100% {
    opacity: 0.18;
  }

  50% {
    opacity: 0.74;
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes automationDiagramDash {
  to {
    stroke-dashoffset: -42;
  }
}

@keyframes automationPointPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes chaosSweep {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -160;
  }
}

@keyframes chaosPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes opsFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.cookie-banner__shell,
.cookie-modal__dialog,
.cookie-category {
  border-color: rgba(46, 219, 255, 0.13) !important;
  background:
    radial-gradient(circle at 72% 0%, rgba(46, 219, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(8, 19, 28, 0.95), rgba(3, 9, 14, 0.98)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 26px 72px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(46, 219, 255, 0.035) !important;
}

@keyframes overloadWireBreath {
  0%, 100% { opacity: 0.45; filter: drop-shadow(0 0 4px rgba(46, 219, 255, 0.14)); }
  50% { opacity: 0.88; filter: drop-shadow(0 0 10px rgba(52, 245, 163, 0.20)); }
}

@keyframes overloadCorePulse {
  0%, 100% { opacity: 0.68; transform: scale(0.94); }
  50% { opacity: 0.95; transform: scale(1.055); }
}

@keyframes aiAppliedBeforeGlow {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }

  42% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 0.18;
    transform: scale(1);
  }
}

@keyframes aiAppliedBeforePulse {
  0% {
    border-color: rgba(232, 77, 91, 0.58);
    background:
      radial-gradient(circle at 18% 0%, rgba(232, 77, 91, 0.12), transparent 58%),
      rgba(232, 77, 91, 0.075);
    box-shadow: 0 0 22px rgba(232, 77, 91, 0.16);
    transform: translateY(0) scale(1);
  }

  42% {
    border-color: rgba(255, 76, 92, 1);
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 76, 92, 0.58), transparent 58%),
      radial-gradient(circle at 52% 48%, rgba(232, 77, 91, 0.24), transparent 62%),
      rgba(232, 77, 91, 0.22);
    box-shadow:
      0 0 0 1px rgba(255, 160, 170, 0.30) inset,
      0 0 26px rgba(255, 76, 92, 0.55),
      0 0 72px rgba(232, 77, 91, 0.34),
      0 0 118px rgba(232, 77, 91, 0.18);
    transform: translateY(-2px) scale(1.015);
  }

  100% {
    border-color: rgba(232, 77, 91, 0.68);
    background:
      radial-gradient(circle at 18% 0%, rgba(232, 77, 91, 0.18), transparent 58%),
      rgba(232, 77, 91, 0.09);
    box-shadow: 0 0 30px rgba(232, 77, 91, 0.18);
    transform: translateY(0) scale(1);
  }
}

@keyframes aiAppliedAfterPulse {
  0% {
    border-color: rgba(52, 245, 163, 0.30);
    background: rgba(52, 245, 163, 0.045);
    box-shadow: none;
    transform: translateY(0) scale(1);
  }

  48% {
    border-color: rgba(52, 245, 163, 1);
    background:
      radial-gradient(circle at 16% 0%, rgba(52, 245, 163, 0.28), transparent 52%),
      rgba(52, 245, 163, 0.14);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.16) inset,
      0 0 34px rgba(52, 245, 163, 0.30);
    transform: translateY(-2px) scale(1.015);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@property --ai-pain-glow {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --ai-pain-lift {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes aiAppliedBeforeSameAsGreen {
  0% {
    --ai-pain-glow: 0;
    --ai-pain-lift: 0;
  }

  48% {
    --ai-pain-glow: 1;
    --ai-pain-lift: 1;
  }

  100% {
    --ai-pain-glow: 0;
    --ai-pain-lift: 0;
  }
}

@property --ai-result-glow {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --ai-result-lift {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes aiAppliedAfterSameAsRed {
  0% {
    --ai-result-glow: 0;
    --ai-result-lift: 0;
  }

  48% {
    --ai-result-glow: 1;
    --ai-result-lift: 1;
  }

  100% {
    --ai-result-glow: 0;
    --ai-result-lift: 0;
  }
}

@property --ai-final-green-glow {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --ai-final-green-lift {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --ai-final-red-glow {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --ai-final-red-lift {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes aiAppliedFinalRedGlow {
  0% {
    --ai-final-red-glow: 0;
    --ai-final-red-lift: 0;
  }

  48% {
    --ai-final-red-glow: 1;
    --ai-final-red-lift: 1;
  }

  100% {
    --ai-final-red-glow: 0;
    --ai-final-red-lift: 0;
  }
}

@keyframes aiAppliedFinalGreenGlow {
  0% {
    --ai-final-green-glow: 0;
    --ai-final-green-lift: 0;
  }

  48% {
    --ai-final-green-glow: 1;
    --ai-final-green-lift: 1;
  }

  100% {
    --ai-final-green-glow: 0;
    --ai-final-green-lift: 0;
  }
}

@keyframes onlimeCtaScanV7 {
  0% {
    left: -32%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    left: 116%;
    opacity: 0;
  }
}

@keyframes onlimeArrowPulseV7 {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.20) inset,
      0 8px 18px rgba(46, 219, 255, 0.22),
      0 0 20px rgba(52, 245, 163, 0.14);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.24) inset,
      0 10px 24px rgba(46, 219, 255, 0.30),
      0 0 32px rgba(52, 245, 163, 0.22);
  }
}

@keyframes onlimeOpsContainedHaze {
  0% {
    background-position:
      49% 52%,
      33% 64%,
      69% 39%,
      50% 60%;
    background-size:
      114% 80%,
      88% 70%,
      86% 72%,
      118% 84%;
  }

  50% {
    background-position:
      51% 48%,
      38% 59%,
      63% 43%,
      49% 56%;
    background-size:
      124% 86%,
      96% 76%,
      94% 78%,
      128% 90%;
  }

  100% {
    background-position:
      50% 51%,
      35% 62%,
      67% 40%,
      51% 58%;
    background-size:
      118% 82%,
      92% 72%,
      90% 74%,
      122% 86%;
  }
}

@keyframes footerParticleDrift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(38px, 38px, 0); }
}

@keyframes footerSignalSweep {
  0%, 100% { transform: translateX(-16%); opacity: 0.28; }
  45% { transform: translateX(16%); opacity: 0.88; }
}

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

@keyframes footerOrbit {
  0% { transform: rotate(0deg) translateX(17px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(17px) rotate(-360deg); }
}

@keyframes footerCardShine {
  0%, 60%, 100% { opacity: 0; transform: translateX(-58%); }
  70% { opacity: 0.74; }
  84% { opacity: 0; transform: translateX(58%); }
}

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