/* Public Menedżer Zamówień landing — modular product system, v1. */
body.oma-public-page .public-main {
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: visible;
}

body.oma-public-page .public-footer {
  margin-top: 0;
}

html.oma-lightbox-open,
html.oma-lightbox-open body {
  overflow: hidden;
}

.oma {
  --oma-bg: #edf5ff;
  --oma-surface: #ffffff;
  --oma-panel: #e4f1ff;
  --oma-panel-soft: #f5faff;
  --oma-text: #071942;
  --oma-muted: #526681;
  --oma-line: #cfe1f6;
  --oma-primary: #075ee8;
  --oma-primary-dark: #0448b9;
  --oma-action: #075ee8;
  --oma-action-hover: #0448b9;
  --oma-cyan: #13ade4;
  --oma-success: #0d9d55;
  --oma-shadow: 0 18px 50px rgba(7, 51, 112, .1);
  position: relative;
  width: 100%;
  overflow: clip;
  color: var(--oma-text);
  background: var(--oma-bg);
  font-family: Lato, system-ui, sans-serif;
}

@supports not (overflow: clip) {
  .oma { overflow: hidden; }
}

html[data-lp-theme="dark"] .oma {
  --oma-bg: #061329;
  --oma-surface: #0b1c36;
  --oma-panel: #102b4d;
  --oma-panel-soft: #091a32;
  --oma-text: #f4f8ff;
  --oma-muted: #aac0dc;
  --oma-line: #244565;
  --oma-primary: #4389ff;
  --oma-primary-dark: #75a9ff;
  --oma-action: #075ee8;
  --oma-action-hover: #0448b9;
  --oma-cyan: #35c5ec;
  --oma-success: #43cd84;
  --oma-shadow: 0 20px 58px rgba(0, 0, 0, .3);
}

.oma *,
.oma *::before,
.oma *::after {
  box-sizing: border-box;
}

.oma :where(h1, h2, h3, p, ul, ol, figure) {
  margin: 0;
}

.oma :where(ul, ol) {
  padding: 0;
}

.oma :where(h1, h2, h3) {
  color: var(--oma-text);
  font-family: Ubuntu, Lato, sans-serif;
  text-wrap: balance;
}

.oma :where(p, li) {
  color: var(--oma-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.oma a {
  color: var(--oma-primary);
  text-underline-offset: .2em;
}

.oma svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.oma-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 1280px);
  margin-inline: auto;
}

.oma :where(section[id]) {
  scroll-margin-top: 132px;
}

.oma-section-nav {
  position: sticky;
  z-index: 15;
  top: 76px;
  border-bottom: 1px solid var(--oma-line);
  background: color-mix(in srgb, var(--oma-bg) 88%, transparent);
  backdrop-filter: blur(16px);
}

.oma-section-nav .oma-container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.oma-section-nav .oma-container::-webkit-scrollbar {
  display: none;
}

.oma .oma-section-nav a {
  min-height: 48px;
  flex: 0 0 auto;
  padding: 15px 18px;
  color: var(--oma-muted);
  font-size: .78rem;
  font-weight: 900;
  line-height: 18px;
  text-decoration: none;
  white-space: nowrap;
}

.oma .oma-section-nav a:hover,
.oma .oma-section-nav a:focus-visible {
  color: var(--oma-primary);
}

.oma-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid var(--oma-line);
  border-radius: 8px;
  padding: .78rem 1.25rem;
  background: var(--oma-surface);
  color: var(--oma-text) !important;
  font-family: Ubuntu, Lato, sans-serif;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.oma-button svg {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform .18s ease;
}

.oma-button:hover {
  border-color: color-mix(in srgb, var(--oma-primary) 48%, var(--oma-line));
  color: var(--oma-primary) !important;
  box-shadow: 0 12px 26px rgba(7, 94, 232, .12);
  transform: translateY(-2px);
}

.oma-button:hover svg { transform: translateX(3px); }
.oma-button:active { transform: translateY(0); }

.oma-button--primary {
  border-color: var(--oma-action);
  background: var(--oma-action);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(7, 94, 232, .22);
}

.oma-button--primary:hover {
  border-color: var(--oma-action-hover);
  background: var(--oma-action-hover);
  color: #fff !important;
}

.oma-button--secondary {
  border-color: color-mix(in srgb, var(--oma-primary) 26%, var(--oma-line));
  background: color-mix(in srgb, var(--oma-surface) 94%, var(--oma-panel));
}

.oma :where(a, button, summary):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #075ee8;
}

.oma-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--oma-line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--oma-panel-soft) 82%, var(--oma-bg)), var(--oma-bg));
  padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(4.5rem, 7vw, 6.5rem);
}

.oma-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(520px, 7fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.oma-hero__content {
  min-width: 0;
}

.oma-hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.6rem, 5.2vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -.052em;
  line-height: .98;
}

.oma-hero h2 {
  max-width: 610px;
  margin: 1.35rem 0 0;
  color: var(--oma-primary);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.oma-hero__lead {
  max-width: 650px;
  margin-top: 1.4rem !important;
  color: var(--oma-muted) !important;
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
}

.oma-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}

.oma-free-note {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.25rem !important;
  color: var(--oma-text) !important;
  font-size: .92rem !important;
  line-height: 1.4 !important;
}

.oma-free-note svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--oma-success) 12%, transparent);
  color: var(--oma-success);
  padding: .2rem;
  stroke-width: 2.5;
}

.oma-hero-animation {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--oma-line) 88%, #fff);
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 18%, rgba(37, 211, 232, .2), transparent 30%),
    radial-gradient(circle at 24% 80%, rgba(7, 94, 232, .16), transparent 34%),
    color-mix(in srgb, var(--oma-surface) 94%, var(--oma-panel));
  box-shadow: 0 30px 80px rgba(7, 55, 125, .16);
}

html[data-lp-theme="dark"] .oma-hero-animation {
  border-color: color-mix(in srgb, var(--oma-line) 82%, transparent);
  background:
    radial-gradient(circle at 76% 18%, rgba(37, 211, 232, .17), transparent 30%),
    radial-gradient(circle at 24% 80%, rgba(67, 137, 255, .18), transparent 34%),
    #0a1d38;
  box-shadow: 0 30px 82px rgba(0, 0, 0, .45);
}

.oma-hero-animation__scene {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 760 / 470;
  overflow: hidden;
}

.oma-hero-animation__scene::after {
  position: absolute;
  top: 50%;
  left: 55%;
  z-index: -1;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--oma-primary) 11%, transparent);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.oma-hero-animation__glow {
  position: absolute;
  top: 16%;
  left: 36%;
  z-index: -1;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 30deg, rgba(19, 173, 228, .05), rgba(7, 94, 232, .16), rgba(13, 157, 85, .08), rgba(19, 173, 228, .05));
  filter: blur(22px);
  animation: oma-scene-glow 18s linear infinite;
}

.oma-hero-animation__routes {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  color: var(--oma-primary);
  opacity: .55;
}

.oma-hero-animation__routes path {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 3 10;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  animation: oma-scene-route 3.6s linear infinite;
}

.oma-hero-animation__channels {
  position: absolute;
  top: 26%;
  left: 7%;
  z-index: 2;
  display: grid;
  width: 8.5%;
  gap: clamp(10px, 1.4vw, 18px);
}

.oma-hero-animation__channel {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--oma-primary) 20%, var(--oma-line));
  border-radius: 22%;
  background: var(--oma-surface);
  color: var(--oma-primary);
  box-shadow: 0 12px 30px rgba(7, 55, 125, .13);
  animation: oma-scene-node 4.2s ease-in-out infinite;
}

.oma-hero-animation__channel:nth-child(2) { animation-delay: -.9s; }
.oma-hero-animation__channel:nth-child(3) { animation-delay: -1.8s; }

.oma-hero-animation__channel svg {
  width: 48%;
  height: 48%;
  stroke-width: 1.7;
}

.oma-hero-animation__manager {
  position: absolute;
  top: 42%;
  left: 27%;
  z-index: 3;
  display: flex;
  width: 26%;
  min-height: 17%;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--oma-primary) 30%, var(--oma-line));
  border-radius: 12px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--oma-primary) 9%, var(--oma-surface)), var(--oma-surface));
  padding: 2%;
  box-shadow: 0 16px 36px rgba(7, 55, 125, .16);
  animation: oma-scene-manager 5.8s ease-in-out infinite;
}

.oma-hero-animation__manager b {
  color: var(--oma-text);
  font-family: Ubuntu, Lato, sans-serif;
  font-size: clamp(.5rem, 1.05vw, .9rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.oma-hero-animation__manager::after {
  position: absolute;
  right: 22%;
  bottom: 15%;
  left: 22%;
  height: 3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--oma-success) 65%, var(--oma-panel));
  content: "";
  transform-origin: left;
  animation: oma-scene-manager-progress 2.9s ease-in-out infinite;
}

.oma-hero-animation__documents {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.oma-hero-animation__document {
  position: absolute;
  display: grid;
  width: 13%;
  aspect-ratio: .76;
  align-content: start;
  gap: 8%;
  border: 1px solid color-mix(in srgb, var(--oma-primary) 20%, var(--oma-line));
  border-radius: 10px;
  background: var(--oma-surface);
  padding: 2.2% 1.4%;
  box-shadow: 0 16px 36px rgba(7, 55, 125, .14);
  animation: oma-scene-document 5.2s ease-in-out infinite;
}

.oma-hero-animation__document--label {
  top: 11%;
  left: 47%;
  transform: rotate(-6deg);
}

.oma-hero-animation__document--receipt {
  top: 8%;
  left: 63%;
  transform: rotate(2deg);
  animation-delay: -.8s;
}

.oma-hero-animation__document--invoice {
  top: 12%;
  left: 79%;
  transform: rotate(7deg);
  animation-delay: -1.6s;
}

.oma-hero-animation__document b {
  color: var(--oma-primary);
  font-size: clamp(.45rem, .7vw, .68rem);
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.oma-hero-animation__document > i:not(.oma-hero-animation__barcode) {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--oma-line);
}

.oma-hero-animation__document > i:nth-of-type(2) { width: 78%; }
.oma-hero-animation__document > i:nth-of-type(3) { width: 56%; }

.oma-hero-animation__barcode {
  display: block;
  width: 82%;
  height: 34%;
  justify-self: center;
  background: repeating-linear-gradient(90deg, var(--oma-text) 0 2px, transparent 2px 4px, var(--oma-text) 4px 5px, transparent 5px 8px);
  opacity: .82;
}

.oma-hero-animation__printer {
  position: absolute;
  top: 59%;
  left: 58%;
  z-index: 5;
  width: 20%;
  height: 28%;
  animation: oma-scene-printer 4.5s ease-in-out infinite;
}

.oma-hero-animation__paper {
  position: absolute;
  top: -31%;
  left: 25%;
  display: grid;
  width: 52%;
  height: 50%;
  align-content: center;
  gap: 10%;
  border: 1px solid var(--oma-line);
  border-radius: 7px 7px 2px 2px;
  background: var(--oma-surface);
  padding: 14%;
  box-shadow: 0 8px 18px rgba(7, 55, 125, .1);
  animation: oma-scene-paper 3.8s ease-in-out infinite;
}

.oma-hero-animation__paper i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--oma-primary) 36%, var(--oma-line));
}

.oma-hero-animation__printer-body {
  position: absolute;
  inset: 16% 0 9%;
  border: 1px solid color-mix(in srgb, var(--oma-primary) 24%, var(--oma-line));
  border-radius: 18px;
  background: linear-gradient(145deg, #f8fbff, #d8e8fb);
  box-shadow: 0 18px 34px rgba(7, 55, 125, .2);
}

html[data-lp-theme="dark"] .oma-hero-animation__printer-body {
  background: linear-gradient(145deg, #dcecff, #8eb4dc);
}

.oma-hero-animation__printer-body::before {
  position: absolute;
  inset: 24% 12% auto;
  height: 18%;
  border-radius: 5px;
  background: #173c68;
  content: "";
}

.oma-hero-animation__printer-body i {
  position: absolute;
  top: 17%;
  right: 13%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #27d3e7;
  box-shadow: 0 0 0 4px rgba(39, 211, 231, .15);
  animation: oma-scene-light 1.9s ease-in-out infinite;
}

.oma-hero-animation__printer-tray {
  position: absolute;
  right: 12%;
  bottom: 0;
  left: 12%;
  height: 22%;
  border-radius: 5px 5px 14px 14px;
  background: #c2d9ef;
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, .7);
}

.oma-hero-animation__package {
  position: absolute;
  top: 65%;
  left: 81%;
  z-index: 6;
  width: 15%;
  height: 23%;
  filter: drop-shadow(0 16px 18px rgba(7, 55, 125, .18));
  animation: oma-scene-package 4.8s ease-in-out infinite;
}

.oma-hero-animation__package-side,
.oma-hero-animation__package-top {
  position: absolute;
  display: block;
}

.oma-hero-animation__package-side {
  inset: 23% 4% 0;
  border: 1px solid #c4924f;
  border-radius: 3px 3px 10px 10px;
  background: linear-gradient(135deg, #f5d291, #dca85e);
}

.oma-hero-animation__package-top {
  top: 0;
  right: 4%;
  left: 4%;
  height: 40%;
  border: 1px solid #c4924f;
  background: #f8dda8;
  clip-path: polygon(50% 0, 100% 44%, 50% 100%, 0 44%);
}

.oma-hero-animation__package-tape {
  position: absolute;
  top: 1%;
  left: 43%;
  width: 15%;
  height: 80%;
  background: rgba(255, 247, 212, .78);
  clip-path: polygon(50% 0, 100% 18%, 88% 100%, 12% 100%, 0 18%);
}

.oma-hero-animation__package-check {
  position: absolute;
  right: -8%;
  bottom: -8%;
  display: grid;
  width: 32%;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--oma-surface);
  border-radius: 50%;
  background: var(--oma-success);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 157, 85, .26);
  animation: oma-scene-check 2.4s ease-in-out infinite;
}

.oma-hero-animation__package-check svg {
  width: 60%;
  height: 60%;
  stroke-width: 2.6;
}

@keyframes oma-scene-route {
  to { stroke-dashoffset: -52; }
}

@keyframes oma-scene-glow {
  to { transform: rotate(360deg); }
}

@keyframes oma-scene-node {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes oma-scene-manager {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes oma-scene-manager-progress {
  0%, 100% { opacity: .62; transform: scaleX(.35); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes oma-scene-document {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

@keyframes oma-scene-printer {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@keyframes oma-scene-paper {
  0%, 100% { transform: translateY(4px); }
  50% { transform: translateY(-4px); }
}

@keyframes oma-scene-light {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

@keyframes oma-scene-package {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes oma-scene-check {
  0%, 100% { transform: scale(.94); }
  50% { transform: scale(1.06); }
}

.oma-product-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--oma-primary) 12%, var(--oma-line));
  border-radius: 12px;
  background: var(--oma-surface);
  box-shadow: var(--oma-shadow);
}

.oma-product-shot:focus-within {
  border-color: #075ee8;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #075ee8, var(--oma-shadow);
}

.oma-product-shot--hero {
  box-shadow: 0 30px 80px rgba(7, 55, 125, .16);
}

html[data-lp-theme="dark"] .oma-product-shot--hero {
  box-shadow: 0 30px 82px rgba(0, 0, 0, .45);
}

html[data-lp-theme="dark"] .oma-product-shot:focus-within {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #075ee8, var(--oma-shadow);
}

.oma-product-shot__bar {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid var(--oma-line);
  padding: .55rem .75rem;
  background: color-mix(in srgb, var(--oma-panel-soft) 88%, var(--oma-surface));
}

.oma-product-shot__bar::before {
  width: 2px;
  height: 1rem;
  flex: none;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--oma-primary), var(--oma-cyan));
  content: "";
}

.oma-product-shot__bar b {
  min-width: 0;
  overflow: hidden;
  color: var(--oma-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oma-product-shot__button {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: #f8fbff;
  color: var(--oma-text);
  cursor: zoom-in;
}

.oma-product-shot__button:focus-visible {
  outline: 0;
  box-shadow: none;
}

.oma-product-shot__button::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.oma-product-shot__button:hover::after,
.oma-product-shot__button:focus-visible::after {
  border-color: color-mix(in srgb, var(--oma-cyan) 72%, transparent);
  background: color-mix(in srgb, var(--oma-primary) 2.5%, transparent);
}

.oma-product-shot__button img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #f5f8fc;
  object-fit: cover;
  object-position: top center;
  box-shadow: none;
  transition: filter .18s ease;
}

.oma-product-shot__button img.oma-theme-shot__dark {
  display: none;
}

html[data-lp-theme="dark"] .oma-product-shot__button img.oma-theme-shot__light {
  display: none;
}

html[data-lp-theme="dark"] .oma-product-shot__button img.oma-theme-shot__dark {
  display: block;
}

.oma-product-shot__button:hover img { filter: saturate(1.04); }

.oma-product-shot__zoom {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(4, 23, 57, .84);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  pointer-events: none;
  transition: background-color .18s ease, transform .18s ease;
}

.oma-product-shot__zoom svg {
  width: 1.25rem;
  height: 1.25rem;
}

.oma-product-shot__button:hover .oma-product-shot__zoom {
  background: var(--oma-primary);
  transform: translateY(-2px);
}

.oma-product-shot figcaption {
  border-top: 1px solid var(--oma-line);
  padding: .7rem .9rem;
  color: var(--oma-muted);
  font-size: .78rem;
  line-height: 1.45;
}

.oma-symbolic-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--oma-primary) 14%, var(--oma-line));
  border-radius: 16px;
  background: #f7fbff;
  box-shadow: var(--oma-shadow);
}

.oma-symbolic-art--overview {
  width: min(1100px, 100%);
  margin: 2.7rem auto 0;
}

.oma-symbolic-art__button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #f7fbff;
  cursor: zoom-in;
}

.oma-symbolic-art__button::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.oma-symbolic-art__button:hover::after,
.oma-symbolic-art__button:focus-visible::after {
  border-color: color-mix(in srgb, var(--oma-cyan) 72%, transparent);
  background: color-mix(in srgb, var(--oma-primary) 2.5%, transparent);
}

.oma-symbolic-art__button:focus-visible {
  outline: 0;
  box-shadow: none;
}

.oma-symbolic-art:focus-within {
  border-color: #075ee8;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #075ee8, var(--oma-shadow);
}

.oma-symbolic-art__button img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #f7fbff;
  object-fit: cover;
  box-shadow: none;
  transition: filter .18s ease;
}

.oma-symbolic-art__button:hover img {
  filter: saturate(1.04);
}

.oma-symbolic-art__button:hover .oma-product-shot__zoom {
  background: var(--oma-primary);
  transform: translateY(-2px);
}

.oma-symbolic-art figcaption {
  border-top: 1px solid var(--oma-line);
  background: var(--oma-surface);
  padding: .75rem 1rem;
  color: var(--oma-muted);
  font-size: .82rem;
  line-height: 1.5;
}

.oma-process {
  position: relative;
  border-bottom: 1px solid var(--oma-line);
  background: var(--oma-surface);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.oma-section-heading {
  max-width: 780px;
}

.oma-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.oma-section-heading h2,
.oma-feature-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.oma-section-heading > p:last-child,
.oma-feature-copy > p {
  margin-top: 1.2rem;
  color: var(--oma-muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.oma-section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.oma-section-heading--split > p {
  margin: 0 !important;
}

.oma-process__track {
  height: 44px;
  margin: 2.3rem 7.5% -1.45rem;
}

.oma-process__track svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.oma-process__line,
.oma-process__pulse {
  fill: none;
  stroke-width: 2;
}

.oma-process__line {
  stroke: var(--oma-line);
}

.oma-process__pulse {
  stroke: var(--oma-cyan);
  stroke-dasharray: 10 28;
  stroke-dashoffset: 0;
  opacity: .72;
  animation: oma-flow 9s linear infinite;
}

@keyframes oma-flow {
  to { stroke-dashoffset: -190; }
}

.oma .oma-process__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .65rem;
  list-style: none;
}

.oma-process-step {
  position: relative;
  min-width: 0;
  border: 1px solid var(--oma-line);
  border-radius: 12px;
  background: var(--oma-surface);
  padding: 1.15rem;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.oma-process-step:hover {
  border-color: color-mix(in srgb, var(--oma-primary) 42%, var(--oma-line));
  background: color-mix(in srgb, var(--oma-panel) 42%, var(--oma-surface));
  transform: translateY(-3px);
}

.oma-process-step__number {
  display: block;
  margin-bottom: .75rem;
  color: var(--oma-primary);
  font-family: Ubuntu, Lato, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.oma-process-step__icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid color-mix(in srgb, var(--oma-primary) 18%, var(--oma-line));
  border-radius: 9px;
  background: var(--oma-panel);
  color: var(--oma-primary);
}

.oma-process-step__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.oma-process-step h3 {
  margin: 0 0 .45rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
}

.oma-process-step p {
  color: var(--oma-muted);
  font-size: .84rem;
  line-height: 1.55;
}

.oma-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.oma-section--surface,
.oma-section--documents,
.oma-section--faq {
  border-top: 1px solid var(--oma-line);
  border-bottom: 1px solid var(--oma-line);
  background: var(--oma-surface);
}

.oma-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.oma-module {
  position: relative;
  min-width: 0;
  border: 1px solid var(--oma-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--oma-panel-soft) 64%, var(--oma-surface));
  padding: 1.5rem;
}

.oma-module::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, var(--oma-primary), var(--oma-cyan));
  content: "";
  opacity: .8;
}

.oma-module__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 9px;
  background: var(--oma-panel);
  color: var(--oma-primary);
}

.oma-module__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.oma-module h3 {
  margin: 0 0 .6rem;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.oma-module > p:last-child {
  color: var(--oma-muted);
  font-size: .92rem;
  line-height: 1.65;
}

.oma-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.oma-feature-row--editor {
  margin-top: clamp(4.5rem, 7vw, 7rem);
}

.oma-feature-row--actions {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.oma-feature-copy {
  min-width: 0;
}

.oma .oma-check-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.5rem;
  list-style: none;
}

.oma-check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--oma-text);
  font-size: .95rem;
  line-height: 1.5;
}

.oma-check-list li::before {
  position: absolute;
  top: .13rem;
  left: 0;
  display: grid;
  width: 1.2rem;
  height: 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--oma-success) 14%, transparent);
  color: var(--oma-success);
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
}

.oma-action-list {
  display: grid;
  gap: 0;
  margin-top: 1.6rem;
  border-top: 1px solid var(--oma-line);
}

.oma-action-list article {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: .9rem;
  border-bottom: 1px solid var(--oma-line);
  padding: 1rem 0;
}

.oma-action-list article > span {
  padding-top: .12rem;
  color: var(--oma-primary);
  font-family: Ubuntu, Lato, sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.oma-action-list h3 {
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.oma-action-list p {
  color: var(--oma-muted);
  font-size: .88rem;
  line-height: 1.55;
}

.oma-section--packing {
  border-top: 1px solid var(--oma-line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--oma-panel) 72%, transparent), transparent 58%),
    var(--oma-bg);
}

.oma-packing-flow {
  display: grid;
  grid-template-columns: auto minmax(24px, 48px) auto minmax(24px, 48px) auto;
  align-items: center;
  gap: .45rem;
  margin-top: 1.7rem;
}

.oma-packing-flow span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--oma-line);
  border-radius: 8px;
  background: var(--oma-surface);
  color: var(--oma-text);
  padding: .5rem .7rem;
  font-family: Ubuntu, Lato, sans-serif;
  font-size: .8rem;
  font-weight: 700;
}

.oma-packing-flow svg {
  width: 100%;
  color: var(--oma-primary);
}

.oma-document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.7rem;
}

.oma-document-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--oma-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--oma-panel-soft) 66%, var(--oma-surface));
  padding: 1.6rem;
  transition: border-color .18s ease, transform .18s ease;
}

.oma-document-card:hover {
  border-color: color-mix(in srgb, var(--oma-primary) 42%, var(--oma-line));
  transform: translateY(-3px);
}

.oma-document-card__icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  margin: 0 0 1.1rem;
  border-radius: 9px;
  background: var(--oma-primary);
  color: #fff;
}

.oma-document-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.oma-document-card h3 {
  margin: 0 0 .6rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
}

.oma-document-card p {
  color: var(--oma-muted);
  font-size: .94rem;
  line-height: 1.62;
}

.oma-document-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .35rem;
  margin-top: .8rem;
  font-weight: 700;
}

.oma-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.7rem;
}

.oma-index-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--oma-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--oma-panel-soft) 58%, var(--oma-surface));
  padding: clamp(1.35rem, 3vw, 1.8rem);
}

.oma-index-card h3 {
  margin: 0 0 1.1rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.oma .oma-index-list {
  display: grid;
  gap: .65rem;
  list-style: none;
}

.oma-index-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--oma-muted);
  font-size: .91rem;
  line-height: 1.55;
}

.oma-index-list li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oma-primary), var(--oma-cyan));
  content: "";
}

.oma-section--free {
  background: var(--oma-bg);
}

.oma-free-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--oma-action) 76%, #fff);
  border-radius: 12px;
  background: var(--oma-action);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 24px 64px rgba(7, 94, 232, .23);
}

.oma-free-panel::after {
  position: absolute;
  top: -9rem;
  right: -7rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 173, 228, .32), transparent 67%);
  content: "";
  pointer-events: none;
}

.oma-free-panel > * {
  position: relative;
  z-index: 1;
}

.oma-free-panel h2,
.oma-free-panel p {
  color: #fff !important;
}

.oma-free-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.oma-free-panel p:last-child {
  max-width: 720px;
  margin-top: .9rem;
  color: #fff !important;
  font-size: .98rem;
}

.oma-free-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem;
}

.oma-free-panel .oma-button--primary {
  border-color: #fff;
  background: #fff;
  color: #064bb9 !important;
  box-shadow: none;
}

.oma-free-panel .oma-button--primary:hover {
  background: #edf5ff;
  color: #043e9d !important;
}

.oma-free-panel .oma-button--secondary {
  border-color: rgba(255, 255, 255, .68);
  background: transparent;
  color: #fff !important;
}

.oma-free-panel .oma-button--secondary:hover {
  border-color: #fff;
  background: rgba(0, 0, 0, .12);
  color: #fff !important;
}

.oma-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.oma-faq {
  display: grid;
  gap: .75rem;
}

.oma-faq__item {
  overflow: hidden;
  border: 1px solid var(--oma-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--oma-panel-soft) 58%, var(--oma-surface));
  transition: border-color .18s ease, background-color .18s ease;
}

.oma-faq__item:focus-within {
  border-color: #075ee8;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #075ee8;
}

.oma-faq__item h3 button:focus-visible {
  outline: 0;
  box-shadow: none;
}

.oma-faq__item.is-open {
  border-color: color-mix(in srgb, var(--oma-primary) 42%, var(--oma-line));
  background: var(--oma-surface);
}

.oma-faq__item h3 {
  margin: 0;
  font-size: 1rem;
}

.oma-faq__item h3 button {
  display: grid;
  width: 100%;
  min-height: 70px;
  grid-template-columns: minmax(0, 1fr) 2.25rem;
  align-items: center;
  gap: 1rem;
  border: 0;
  padding: 1rem 1rem 1rem 1.25rem;
  background: transparent;
  color: var(--oma-text);
  font-family: Ubuntu, Lato, sans-serif;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.oma-faq__item h3 button svg {
  width: 1.25rem;
  height: 1.25rem;
  justify-self: center;
  color: var(--oma-primary);
  transition: transform .24s ease;
}

.oma-faq__item h3 button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.oma-faq__panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height .27s ease, opacity .22s ease;
}

.oma-faq__panel[hidden] {
  display: none;
}

.oma-faq__item.is-open .oma-faq__panel {
  opacity: 1;
}

.oma-faq__panel > div {
  border-top: 1px solid var(--oma-line);
  padding: 1.05rem 1.25rem 1.3rem;
}

.oma-faq__panel p,
.oma-faq__panel li {
  color: var(--oma-muted);
  font-size: .94rem;
  line-height: 1.65;
}

.oma-faq__panel ol {
  display: grid;
  gap: .55rem;
  padding-left: 1.25rem;
}

.oma-contact {
  background: var(--oma-bg);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.oma-contact__panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--oma-line);
  border-radius: 12px;
  background: var(--oma-surface);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.oma-contact__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 10px;
  background: var(--oma-panel);
  color: var(--oma-primary);
}

.oma-contact__icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.oma-contact h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.oma-contact h2 a {
  color: var(--oma-primary);
}

.oma-lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  padding: clamp(.75rem, 3vw, 2rem);
  background: transparent;
  color: #fff;
}

.oma-lightbox[open] {
  display: grid;
  place-items: center;
  animation: oma-lightbox-in .24s ease both;
}

.oma-lightbox::backdrop {
  background: rgba(1, 8, 22, .88);
  backdrop-filter: blur(10px);
}

@keyframes oma-lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.oma-lightbox__frame {
  position: relative;
  width: min(1500px, 100%);
  max-height: calc(100svh - 1.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: #061329;
  box-shadow: 0 36px 110px rgba(0, 0, 0, .62);
}

.oma-lightbox__frame figure {
  display: grid;
  justify-items: center;
}

.oma-lightbox__frame img {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 6.5rem);
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  object-fit: contain;
  box-shadow: none;
}

.oma-lightbox__frame figcaption {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding: .75rem 4rem .8rem 1rem;
  color: rgba(255, 255, 255, .86);
  font-size: .84rem;
  line-height: 1.4;
  text-align: center;
}

.oma-lightbox__close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  background: rgba(3, 12, 30, .85);
  color: #fff;
  cursor: pointer;
}

.oma-lightbox__close:hover {
  background: var(--oma-primary);
}

.oma-lightbox__close svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 2;
}

.oma-motion-ready [data-oma-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.oma-motion-ready [data-oma-reveal] {
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.oma-motion-ready [data-oma-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .oma-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 1.1fr);
    gap: 2.5rem;
  }

  .oma-hero h1 {
    font-size: clamp(3rem, 5vw, 3.7rem);
  }

  .oma .oma-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oma-process__track { display: none; }
}

@media (max-width: 920px) {
  body.oma-public-page .lpn-nav-partner {
    display: none;
  }

  .oma-hero {
    min-height: 0;
    padding-top: 4.5rem;
  }

  .oma-hero__grid,
  .oma-feature-row,
  .oma-feature-row--actions,
  .oma-section-heading--split,
  .oma-faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .oma-hero__content {
    max-width: 720px;
  }

  .oma-hero h1 {
    max-width: none;
    font-size: clamp(3.2rem, 9vw, 4.4rem);
  }

  .oma-product-shot--hero,
  .oma-hero-animation {
    width: 100%;
  }

  .oma-section-heading--split {
    gap: 1.25rem;
  }

  .oma-feature-row--actions .oma-feature-copy {
    order: -1;
  }

  .oma-module-grid,
  .oma-document-grid,
  .oma-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oma-module-grid > :last-child:nth-child(odd),
  .oma-document-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .oma-free-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .oma-free-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .oma-container {
    width: min(calc(100% - 1.5rem), 1280px);
  }

  .oma-section-nav {
    top: 70px;
  }

  .oma-section-nav .oma-container {
    width: 100%;
    padding-inline: 7px;
  }

  .oma .oma-section-nav a {
    padding: 13px 11px;
  }

  .oma-hero {
    padding: 3.75rem 0 4rem;
  }

  .oma-hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.5rem);
    letter-spacing: -.048em;
  }

  .oma-hero h2 {
    margin-top: 1rem;
    font-size: 1.18rem;
  }

  .oma-hero__lead {
    margin-top: 1.1rem !important;
    font-size: 1rem !important;
  }

  .oma-hero__actions,
  .oma-free-panel__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .oma-button {
    width: 100%;
  }

  .oma-product-shot__bar {
    min-height: 34px;
  }

  .oma-product-shot__zoom {
    right: .55rem;
    bottom: .55rem;
    width: 2.4rem;
    height: 2.4rem;
  }

  .oma-process,
  .oma-section {
    padding: 4rem 0;
  }

  .oma-section-heading h2,
  .oma-feature-copy h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .oma .oma-process__steps,
  .oma-module-grid,
  .oma-document-grid,
  .oma-index-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .oma-module-grid > :last-child:nth-child(odd),
  .oma-document-grid > :last-child:nth-child(odd) {
    grid-column: auto;
  }

  .oma-process-step {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: .1rem .9rem;
    padding: 1rem;
  }

  .oma-process-step__number {
    grid-column: 1 / -1;
    margin-bottom: .5rem;
  }

  .oma-process-step__icon {
    grid-row: span 2;
    margin: 0;
  }

  .oma-process-step h3 {
    align-self: end;
  }

  .oma-process-step p {
    align-self: start;
  }

  .oma-feature-row,
  .oma-feature-row--actions {
    gap: 2.5rem;
  }

  .oma-feature-row--editor {
    margin-top: 4rem;
  }

  .oma-packing-flow {
    grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr);
    gap: .25rem;
  }

  .oma-packing-flow span {
    padding: .4rem .25rem;
    font-size: .7rem;
  }

  .oma-free-panel {
    padding: 1.5rem;
  }

  .oma-free-panel h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .oma-faq__item h3 button {
    min-height: 64px;
    padding: .9rem .8rem .9rem 1rem;
    font-size: .92rem;
  }

  .oma-contact__panel {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
  }

  .oma-contact__panel > .oma-button {
    grid-column: 1 / -1;
  }

  .oma-contact__icon {
    width: 3rem;
    height: 3rem;
  }

  .oma-contact h2 {
    font-size: 1.4rem;
  }

  .oma-lightbox {
    padding: .5rem;
  }

  .oma-lightbox__frame {
    max-height: calc(100svh - 1rem);
    border-radius: 8px;
  }

  .oma-lightbox__frame img {
    max-height: calc(100svh - 6.2rem);
  }
}

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

  .oma-motion-ready [data-oma-reveal]:not(.is-visible),
  .oma-motion-ready [data-oma-reveal] {
    opacity: 1;
    transform: none;
  }

  .oma-process__pulse {
    stroke-dashoffset: 0;
  }
}
