:root,
html[data-theme="light"] {
  --site-bg: #f4f6f4;
  --site-surface: #ffffff;
  --site-soft: #e9eeeb;
  --site-ink: #18231f;
  --site-muted: #5e6b65;
  --site-subtle: #7b8781;
  --site-line: #ced7d2;
  --site-line-strong: #aebbb4;
  --site-accent: #08767b;
  --site-accent-end: #0d8d91;
  --site-accent-hover: #06666b;
  --site-accent-soft: #dceeed;
  --site-primary-gradient: linear-gradient(135deg, #08767b, #0d8d91);
  --site-primary-gradient-hover: linear-gradient(135deg, #06666b, #0b7c80);
  --site-button-text: #ffffff;
  --site-warm: #bd5a3d;
  --site-warm-end: #d0784c;
  --site-secondary-gradient: linear-gradient(135deg, #bd5a3d, #d0784c);
  --site-contrast: #17211f;
  --site-contrast-text: #f2f5f2;
  --site-contrast-muted: #b9c5bf;
  --site-header: rgba(244, 246, 244, 0.94);
  --black: var(--site-bg);
  --blue: var(--site-accent);
  --green: #287453;
  --theme-bg: var(--site-bg);
  --theme-surface: var(--site-surface);
  --theme-surface-soft: var(--site-soft);
  --theme-text: var(--site-ink);
  --theme-text-muted: var(--site-muted);
  --theme-text-subtle: var(--site-subtle);
  --theme-border: var(--site-line);
  color-scheme: light;
}

html[data-theme="dark"] {
  --site-bg: #0f1513;
  --site-surface: #151d1a;
  --site-soft: #1c2622;
  --site-ink: #f0f4f1;
  --site-muted: #abb7b1;
  --site-subtle: #829089;
  --site-line: #2d3a34;
  --site-line-strong: #46564e;
  --site-accent: #55b9ba;
  --site-accent-end: #78c7bc;
  --site-accent-hover: #70c7c7;
  --site-accent-soft: #183334;
  --site-primary-gradient: linear-gradient(135deg, #55b9ba, #78c7bc);
  --site-primary-gradient-hover: linear-gradient(135deg, #74c5c6, #91d1c8);
  --site-button-text: #0f1513;
  --site-warm: #dc795a;
  --site-warm-end: #f09a70;
  --site-secondary-gradient: linear-gradient(135deg, #dc795a, #f09a70);
  --site-contrast: #090e0c;
  --site-contrast-text: #f2f5f2;
  --site-contrast-muted: #a9b6b0;
  --site-header: rgba(15, 21, 19, 0.94);
  --black: var(--site-bg);
  --blue: var(--site-accent);
  --green: #70ba91;
  --theme-bg: var(--site-bg);
  --theme-surface: var(--site-surface);
  --theme-surface-soft: var(--site-soft);
  --theme-text: var(--site-ink);
  --theme-text-muted: var(--site-muted);
  --theme-text-subtle: var(--site-subtle);
  --theme-border: var(--site-line);
  color-scheme: dark;
}

html {
  scroll-padding-top: 6rem;
}

body,
.content,
.site-main {
  background: var(--site-bg);
  color: var(--site-ink);
}

body {
  overflow-x: clip;
  letter-spacing: 0;
}

body * {
  letter-spacing: 0;
}

::selection {
  background: var(--site-accent);
  color: var(--site-button-text);
}

:focus-visible {
  outline: 0.125rem solid var(--site-accent) !important;
  outline-offset: 0.1875rem !important;
}

.site-main {
  min-height: 60vh;
}

.site-shell {
  width: min(82.5rem, calc(100% - 4rem));
  margin-inline: auto;
}

.site-section {
  position: relative;
  padding-block: 7.5rem;
}

.site-section--soft {
  background: var(--site-soft);
}

.site-section--contrast {
  background: var(--site-contrast);
  color: var(--site-contrast-text);
}

.site-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: var(--site-accent);
  font-family: LexendExa, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-eyebrow::before {
  width: 1.75rem;
  height: 0.0625rem;
  background: currentColor;
  content: "";
}

.site-section--contrast .site-eyebrow,
.service-pricing .site-eyebrow {
  color: #6fc8c8;
}

.site-section-heading {
  max-width: 49rem;
}

.site-section-heading h2,
.home-pricing h2,
.home-faq h2,
.service-overview h2,
.service-pricing h2,
.service-faq h2,
.service-cta h2,
.workflow-intro h2 {
  width: auto;
  margin: 0;
  color: inherit;
  font-family: Lexend, sans-serif;
  font-size: 3.5rem;
  font-weight: 650;
  line-height: 1.08;
  text-align: left;
}

.site-section-heading > p:last-child,
.workflow-intro > p:last-child {
  max-width: 43rem;
  margin-top: 1.5rem;
  color: var(--site-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.site-section--contrast .site-section-heading > p:last-child {
  color: var(--site-contrast-muted);
}

.site-button {
  display: inline-flex;
  min-height: 3.125rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  box-sizing: border-box;
  border: 0.0625rem solid var(--site-accent);
  border-radius: 0.25rem;
  background: var(--site-primary-gradient);
  color: var(--site-button-text) !important;
  padding: 0.75rem 1.35rem;
  font-family: Lexend, sans-serif;
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-button:hover {
  border-color: var(--site-accent-hover);
  background: var(--site-primary-gradient-hover);
  transform: translateY(-0.125rem);
}

.site-button--secondary {
  border-color: var(--site-line-strong);
  background: transparent;
  color: var(--site-ink) !important;
}

.site-button--secondary:hover {
  border-color: var(--site-accent);
  background: var(--site-accent-soft);
}

.site-section--contrast .site-button--secondary,
.service-pricing .site-button--secondary,
.site-footer .site-button--secondary {
  border-color: #50605a;
  color: var(--site-contrast-text) !important;
}

.site-section--contrast .site-button--secondary:hover,
.service-pricing .site-button--secondary:hover {
  border-color: #6fc8c8;
  background: #20302b;
}

.info-tooltip {
  position: relative;
  z-index: 30;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  vertical-align: middle;
}

.info-tooltip__trigger {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 50%;
  background: var(--site-surface);
  box-shadow: 0 0.0625rem 0 color-mix(in srgb, var(--site-ink) 8%, transparent);
  color: var(--site-muted);
  cursor: pointer;
  padding: 0;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.info-tooltip__trigger:hover,
.info-tooltip[data-state="open"] .info-tooltip__trigger {
  border-color: var(--site-accent);
  background: var(--site-accent-soft);
  color: var(--site-accent);
  transform: translateY(-0.0625rem);
}

.info-tooltip__trigger:focus-visible {
  border-color: var(--site-accent);
  color: var(--site-accent);
}

.info-tooltip__popover {
  position: absolute;
  z-index: 50;
  right: -0.25rem;
  bottom: calc(100% + 0.75rem);
  display: block;
  width: min(17.5rem, calc(100vw - 2rem));
  box-sizing: border-box;
  transform-origin: right bottom;
  border: 0.0625rem solid var(--site-line-strong);
  border-top: 0.125rem solid var(--site-accent);
  border-radius: 0.5rem;
  background: var(--site-surface);
  box-shadow: 0 1rem 2.5rem color-mix(in srgb, var(--site-ink) 16%, transparent);
  color: var(--site-ink);
  padding: 0.875rem 1rem;
  font-family: Lexend, sans-serif;
  font-size: 0.8125rem;
  font-weight: 450;
  line-height: 1.55;
  pointer-events: none;
  text-align: left;
}

html[data-theme="dark"] .info-tooltip__popover {
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.38);
}

.info-tooltip__text {
  display: block;
  white-space: normal;
}

.info-tooltip__arrow {
  position: absolute;
  right: 0.625rem;
  bottom: -0.375rem;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 0.0625rem solid var(--site-line-strong);
  border-bottom: 0.0625rem solid var(--site-line-strong);
  background: var(--site-surface);
  transform: rotate(45deg);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 0.0625rem solid color-mix(in srgb, var(--site-line) 78%, transparent);
  background: var(--site-header);
  color: var(--site-ink);
  backdrop-filter: blur(0.875rem);
}

html[data-theme="light"] header.site-header,
html[data-theme="dark"] header.site-header {
  border-bottom: 0.0625rem solid color-mix(in srgb, var(--site-line) 78%, transparent);
  background: var(--site-header);
}

.site-header__inner {
  display: grid;
  min-height: 5.5rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
}

.site-header__brand img {
  display: block;
  width: 8.7rem;
  height: auto;
}

html[data-theme="dark"] .site-header__brand img {
  filter: invert(1);
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.site-nav-link,
.site-header__nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: auto;
  border: 0;
  background: transparent;
  color: var(--site-ink) !important;
  padding: 0.7rem 0;
  font-family: Lexend, sans-serif;
  font-size: 0.75rem;
  font-weight: 550;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav-link::after,
.site-header__nav > a::after {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 0.0625rem;
  background: var(--site-primary-gradient);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav-link:hover::after,
.site-header__nav > a:hover::after,
.site-services-menu:focus-within .site-services-menu__trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-services-menu {
  position: relative;
}

.site-services-menu__trigger svg,
.site-language__trigger > svg {
  transition: transform 180ms ease;
}

.site-services-menu__trigger svg.is-open,
.site-language__trigger > svg.is-open,
.site-mobile-services > button svg.is-open {
  transform: rotate(180deg);
}

.site-services-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: min(50rem, calc(100vw - 3rem));
  border: 0.0625rem solid var(--site-line);
  border-radius: 0.25rem;
  background: var(--site-surface);
  box-shadow: 0 1.25rem 3.5rem rgba(12, 24, 19, 0.14);
  color: var(--site-ink);
  padding: 1.25rem;
}

.site-services-panel::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 1rem;
  content: "";
}

.site-services-panel__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 0.0625rem solid var(--site-line);
  padding: 0.3rem 0 1rem;
}

.site-services-panel__heading span {
  font-size: 1.125rem;
  font-weight: 650;
}

.site-services-panel__heading p {
  color: var(--site-muted);
  font-size: 0.75rem;
}

.site-services-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-services-panel__grid > a {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.8rem 2.25rem minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.65rem;
  border-bottom: 0.0625rem solid var(--site-line);
  color: var(--site-ink) !important;
  padding: 1rem 0.75rem;
  transition: background-color 160ms ease;
}

.site-services-panel__grid > a:nth-child(odd) {
  border-right: 0.0625rem solid var(--site-line);
}

.site-services-panel__grid > a:hover,
.site-services-panel__grid > a:focus-visible {
  background: var(--site-soft);
}

.site-services-panel__index {
  color: var(--site-subtle);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.site-services-panel__icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  color: var(--site-accent);
}

.site-services-panel strong,
.site-services-panel small {
  display: block;
}

.site-services-panel strong {
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.35;
}

.site-services-panel small {
  margin-top: 0.35rem;
  color: var(--site-muted);
  font-size: 0.6875rem;
  line-height: 1.5;
}

.site-services-panel__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
}

.site-services-panel__footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--site-ink) !important;
  font-size: 0.75rem;
  font-weight: 650;
}

.site-header__actions,
.site-header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-button--header {
  min-width: 10.5rem;
  min-height: 2.75rem;
  padding-block: 0.6rem;
}

.site-theme-toggle,
.site-menu-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid var(--site-line);
  border-radius: 0.25rem;
  background: transparent;
  color: var(--site-ink);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.site-theme-toggle:hover,
.site-menu-toggle:hover {
  border-color: var(--site-accent);
  background: var(--site-accent-soft);
}

.site-language {
  position: relative;
}

.site-language__trigger {
  display: inline-flex;
  min-width: 5.3rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0.0625rem solid var(--site-line);
  border-radius: 0.25rem;
  background: transparent;
  color: var(--site-ink);
  font-size: 0.75rem;
  font-weight: 600;
}

.site-language__trigger img,
.site-language__menu img {
  width: 1.25rem;
  height: auto;
}

.site-language__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 11rem;
  overflow: hidden;
  border: 0.0625rem solid var(--site-line);
  border-radius: 0.25rem;
  background: var(--site-surface);
  box-shadow: 0 1rem 2rem rgba(12, 24, 19, 0.13);
  padding: 0.35rem;
}

.site-language__menu a {
  display: grid;
  grid-template-columns: 1.5rem 1fr auto;
  align-items: center;
  gap: 0.6rem;
  color: var(--site-ink) !important;
  padding: 0.7rem;
  font-size: 0.75rem;
}

.site-language__menu a:hover,
.site-language__menu a.is-active {
  background: var(--site-soft);
}

.site-language__menu small {
  color: var(--site-subtle);
  font-size: 0.625rem;
}

.site-header__mobile-actions,
.site-mobile-menu {
  display: none;
}

/* Media placeholders */
.media-placeholder {
  margin-block: 0;
}

.media-placeholder__frame {
  position: relative;
  aspect-ratio: var(--media-placeholder-ratio);
  overflow: hidden;
  border: 0.0625rem dashed var(--site-line-strong);
  border-radius: 0.5rem;
  background: var(--site-surface);
}

.media-placeholder__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: transform 180ms ease;
}

.media-placeholder--filled .media-placeholder__frame {
  border-style: solid;
  border-color: var(--site-line);
}

.media-placeholder--filled .media-placeholder__image {
  opacity: 1;
}

.media-placeholder__open {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: zoom-in;
  padding: 0;
}

.media-placeholder__open:hover .media-placeholder__image {
  transform: scale(1.015);
}

.media-placeholder__expand {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 0.0625rem solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(9, 14, 12, 0.68);
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(0.25rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.media-placeholder__open:is(:hover, :focus-visible) .media-placeholder__expand {
  opacity: 1;
  transform: translateY(0);
}

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

.media-lightbox {
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  background: transparent;
  color: #f4f7f5;
  padding: 0;
}

.media-lightbox::backdrop {
  background: rgba(5, 8, 7, 0.94);
  backdrop-filter: blur(0.4rem);
}

.media-lightbox__content {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 2rem);
}

.media-lightbox__image {
  display: block;
  width: min(96vw, calc(92dvh * 1.333333));
  max-width: none;
  height: auto;
  max-height: 92dvh;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  object-fit: contain;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.45);
}

.media-lightbox__close {
  position: fixed;
  z-index: 1;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0.0625rem solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(9, 14, 12, 0.78);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.media-lightbox__close:hover {
  border-color: #72c9c8;
  background: rgba(18, 34, 29, 0.96);
  transform: scale(1.04);
}

.media-lightbox__caption {
  position: fixed;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 50%;
  max-width: 64rem;
  margin: 0;
  border-radius: 0.25rem;
  background: rgba(5, 8, 7, 0.76);
  color: rgba(244, 247, 245, 0.78);
  padding: 0.5rem 0.75rem;
  font-family: Lexend, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
}

.media-placeholder__caption {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--site-ink);
  padding: clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

.media-placeholder__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 0.0625rem solid var(--site-accent);
  border-radius: 50%;
  background: var(--site-surface);
  color: var(--site-accent);
}

.media-placeholder__label {
  margin-top: 1rem;
  color: var(--site-accent);
  font-family: LexendExa, sans-serif;
  font-size: 0.6875rem;
  font-weight: 650;
  text-transform: uppercase;
}

.media-placeholder__caption strong {
  margin-top: 0.45rem;
  font-size: 1.5rem;
  font-weight: 650;
}

.media-placeholder__caption small {
  margin-top: 0.15rem;
  color: var(--site-subtle);
  font-size: 0.6875rem;
}

.media-placeholder__caption p {
  max-width: 48rem;
  margin-top: 1.25rem;
  color: var(--site-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

html[data-theme="dark"] .media-placeholder__image {
  filter: grayscale(1) invert(0.82);
  opacity: 0.12;
}

html[data-theme="dark"] .media-placeholder--filled .media-placeholder__image {
  filter: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .media-placeholder__image,
  .media-placeholder__expand,
  .media-lightbox__close {
    transition: none;
  }
}

/* Home hero */
.home-hero {
  position: relative;
  display: flex;
  min-height: 52rem;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 0.0625rem solid var(--site-line);
  background: var(--site-bg);
  overflow: hidden;
  padding-top: 8.5rem;
}

.home-hero__grid {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(calc(100% - 5rem), 118rem);
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  padding-bottom: 4.5rem;
}

.home-hero__content {
  position: relative;
  z-index: 6;
  max-width: 43rem;
  margin-left: calc(
    max(2rem, (100vw - 82.5rem) / 2) - max(2.5rem, (100vw - 118rem) / 2)
  );
}

.home-hero h1,
.service-hero h1,
.info-hero h1 {
  width: auto;
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 4.75rem;
  font-weight: 680;
  line-height: 1.03;
  text-align: left;
}

.home-hero h1 span {
  display: block;
  width: fit-content;
  background: var(--site-primary-gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero__description {
  max-width: 39rem;
  margin-top: 2rem;
  color: var(--site-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.home-hero__actions,
.service-hero__actions,
.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.home-spline {
  position: absolute;
  display: flex;
  z-index: 1;
  inset: 38% -50% -12% -45%;
  width: auto;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  isolation: auto;
}

.home-spline__scene,
.home-spline canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.home-spline__scene {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  transition: filter 220ms ease;
  will-change: filter;
}

.cookie-consent {
  position: fixed;
  z-index: 95;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
  display: grid;
  width: min(58rem, calc(100vw - 6.5rem));
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 0.5rem;
  background: var(--site-surface);
  box-shadow: 0 1.25rem 3.5rem rgba(16, 25, 22, 0.2);
  padding: 1rem;
  animation: cookie-consent-enter 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.125rem;
  background: var(--site-primary-gradient);
  content: "";
}

.cookie-consent__icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 0.0625rem solid var(--site-line);
  border-radius: 0.5rem;
  background: var(--site-soft);
  color: var(--site-accent);
}

.cookie-consent__copy h2 {
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.3;
}

.cookie-consent__copy p {
  max-width: 58ch;
  margin: 0.3rem 0 0;
  color: var(--site-muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.cookie-consent__copy a {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--site-accent);
  font-size: 0.6875rem;
  font-weight: 650;
  text-underline-offset: 0.2rem;
}

.cookie-consent__actions {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.cookie-consent__actions button {
  min-height: 2.75rem;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 0.375rem;
  padding: 0.65rem 0.9rem;
  font-family: Lexend, sans-serif;
  font-size: 0.6875rem;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cookie-consent__essential {
  background: transparent;
  color: var(--site-ink);
}

.cookie-consent__essential:hover {
  border-color: var(--site-accent);
  background: var(--site-soft);
}

.cookie-consent__accept {
  border-color: var(--site-accent) !important;
  background: var(--site-primary-gradient);
  color: var(--site-button-text);
}

html[data-theme="light"] .cookie-consent__accept {
  color: #ffffff;
}

.cookie-consent__accept:hover {
  border-color: var(--site-accent-hover) !important;
  background: var(--site-primary-gradient-hover);
}

.cookie-consent__actions button:hover {
  transform: translateY(-0.0625rem);
}

.cookie-consent__actions button:focus-visible,
.cookie-consent__copy a:focus-visible {
  outline: 0.125rem solid var(--site-accent);
  outline-offset: 0.125rem;
}

@keyframes cookie-consent-enter {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

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

@media (max-width: 760px) {
  .cookie-consent {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: max(0.75rem, env(safe-area-inset-left));
    width: auto;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.875rem;
  }

  .cookie-consent__actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__actions button {
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .cookie-consent__icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .cookie-consent__copy p {
    font-size: 0.6875rem;
  }
}

.home-hero-chat-widget {
  position: fixed;
  z-index: 80;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: grid;
  justify-items: end;
}

.home-hero-chat {
  display: grid;
  width: min(23rem, calc(100vw - 2rem));
  height: min(31rem, calc(100svh - 2rem));
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border: 0.0625rem solid var(--site-line-strong);
  border-top: 0.125rem solid var(--site-accent);
  border-radius: 0.75rem;
  background: var(--site-surface);
  box-shadow: 0 1rem 3rem rgba(24, 35, 31, 0.16);
  animation: samian-chat-enter 220ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom right;
}

.home-hero-chat__launcher {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  border: 0.0625rem solid var(--site-accent);
  border-radius: 50%;
  background: var(--site-primary-gradient);
  box-shadow: 0 0.75rem 2rem rgba(24, 35, 31, 0.2);
  color: var(--site-button-text);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-hero-chat__launcher:hover {
  background: var(--site-primary-gradient-hover);
  box-shadow: 0 1rem 2.25rem rgba(24, 35, 31, 0.24);
  transform: translateY(-0.125rem);
}

@keyframes samian-chat-enter {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.98);
  }

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

@media (min-width: 901px) {
  .home-spline {
    z-index: 1;
    grid-row: 1;
    grid-column: 1 / -1;
    inset: -6rem -19rem -6rem 41%;
    width: auto;
    height: auto;
    min-height: 0;
    max-width: none;
    aspect-ratio: auto;
    overflow: visible;
    transform: none;
  }

  .home-spline__scene {
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

@media (min-width: 901px) and (max-width: 1599px) {
  .home-spline {
    z-index: 1;
  }
}

@media (min-width: 1600px) {
  .home-spline {
    z-index: 1;
    inset: -7rem -24rem -7rem 42%;
  }

}

.home-hero-chat__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 0.0625rem solid var(--site-line);
  background: var(--site-surface);
  padding: 0.85rem 1rem;
}

.home-hero-chat__avatar {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border: 0.0625rem solid var(--site-accent);
  border-radius: 0.25rem;
  background: var(--site-primary-gradient);
  color: var(--site-button-text);
}

.home-hero-chat__header-copy {
  display: grid;
  gap: 0.15rem;
}

.home-hero-chat__close {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-left: auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--site-muted);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.home-hero-chat__close:hover {
  background: var(--site-soft);
  color: var(--site-ink);
}

.home-hero-chat__header strong {
  color: var(--site-ink);
  font-size: 0.875rem;
  font-weight: 680;
}

.home-hero-chat__header small {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--site-muted);
  font-size: 0.6875rem;
}

.home-hero-chat__header small i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--site-primary-gradient);
  box-shadow: none;
}

.home-hero-chat__messages {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  background: var(--site-bg);
  padding: 0.9rem;
  scrollbar-color: var(--site-line-strong) transparent;
  scrollbar-width: thin;
}

.home-hero-chat__message {
  display: flex;
  max-width: 88%;
  align-items: flex-end;
  gap: 0.5rem;
}

.home-hero-chat__message p {
  margin: 0;
  border: 0.0625rem solid var(--site-line);
  border-radius: 0.25rem 0.5rem 0.5rem 0.5rem;
  background: var(--site-surface);
  color: var(--site-ink);
  padding: 0.7rem 0.8rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.home-hero-chat__message.is-user {
  align-self: flex-end;
  justify-content: flex-end;
}

.home-hero-chat__message.is-user p {
  border-color: var(--site-accent);
  border-radius: 0.5rem 0.25rem 0.5rem 0.5rem;
  background: var(--site-primary-gradient);
  color: var(--site-button-text);
}

.home-hero-chat__bubble-avatar {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 0.0625rem solid var(--site-line);
  border-radius: 50%;
  background: var(--site-surface);
  color: var(--site-accent);
}

.home-hero-chat__thinking {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--site-muted);
  font-size: 0.6875rem;
}

.home-hero-chat__thinking svg,
.home-hero-chat__form .is-spinning {
  animation: samian-spin 850ms linear infinite;
}

@keyframes samian-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-hero-chat__error {
  margin: 0;
  color: var(--site-warm);
  padding: 0 1rem 0.7rem;
  font-size: 0.6875rem;
  line-height: 1.4;
}

.home-hero-chat__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.5rem;
  gap: 0.5rem;
  border-top: 0.0625rem solid var(--site-line);
  background: var(--site-surface);
  padding: 0.7rem;
}

.home-hero-chat__form input {
  min-width: 0;
  height: 2.5rem;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 0.5rem;
  background: var(--site-surface);
  color: var(--site-ink);
  padding: 0 0.75rem;
  font: inherit;
  font-size: 0.75rem;
}

.home-hero-chat__form input::placeholder {
  color: var(--site-subtle);
}

.home-hero-chat__form button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 0.0625rem solid var(--site-accent);
  border-radius: 0.5rem;
  background: var(--site-primary-gradient);
  color: var(--site-button-text);
  cursor: pointer;
}

.home-hero-chat__form button:hover:not(:disabled) {
  background: var(--site-primary-gradient-hover);
}

.home-hero-chat__form button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.spline-scene__loader {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.spline-scene__loader-mark {
  width: 4.5rem;
  height: 0.125rem;
  background: var(--site-line-strong);
  overflow: hidden;
}

.spline-scene__loader-mark::after {
  display: block;
  width: 45%;
  height: 100%;
  animation: spline-loader 1.1s ease-in-out infinite alternate;
  background: var(--site-primary-gradient);
  content: "";
}

@keyframes spline-loader {
  to {
    transform: translateX(125%);
  }
}

/* Homepage sections */
.home-trust {
  background: var(--site-surface);
}

.home-trust__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 6rem;
}

.home-trust__intro {
  position: sticky;
  top: 8.5rem;
}

.home-trust__signal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  border-top: 0.0625rem solid var(--site-line);
  border-bottom: 0.0625rem solid var(--site-line);
  padding: 1.15rem 0;
  color: var(--site-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.home-trust__signal span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
}

.home-trust__list {
  border-top: 0.0625rem solid var(--site-line);
}

.home-trust__list article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  border-bottom: 0.0625rem solid var(--site-line);
  padding: 2rem 0;
}

.home-trust__list article > span {
  color: var(--site-accent);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.home-trust__list article > svg {
  color: var(--site-accent);
}

.home-trust__list h3 {
  width: auto;
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 1.375rem;
  font-weight: 650;
  line-height: 1.3;
}

.home-trust__list p {
  max-width: 41rem;
  margin-top: 0.75rem;
  color: var(--site-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.home-services {
  scroll-margin-top: 5.5rem;
}

.home-services .site-section-heading {
  margin-bottom: 4.5rem;
}

.home-services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0.0625rem solid #3a4943;
}

.home-services__list > div {
  border-bottom: 0.0625rem solid #3a4943;
}

.home-services__list > div:nth-child(odd) {
  border-right: 0.0625rem solid #3a4943;
}

.home-services__list a {
  display: grid;
  min-height: 7.5rem;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  box-sizing: border-box;
  color: var(--site-contrast-text) !important;
  padding: 1.25rem 1.5rem;
  transition: background-color 180ms ease;
}

.home-services__list > div:nth-child(odd) a {
  padding-left: 0;
}

.home-services__list a:hover {
  background: rgba(255, 255, 255, 0.035);
}

.home-services__index {
  color: #77c9c7;
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.home-services__copy strong,
.home-services__copy small {
  display: block;
}

.home-services__copy strong {
  font-size: 1.25rem;
  font-weight: 620;
  line-height: 1.3;
  transition: transform 180ms ease;
}

.home-services__list a:hover strong {
  transform: translateX(0.35rem);
}

.home-services__copy small {
  max-width: 31rem;
  margin-top: 0.45rem;
  color: var(--site-contrast-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* Workflow */
.horizontal-workflow {
  position: relative;
  height: var(--workflow-height);
  background: var(--site-surface);
  color: var(--site-ink);
  scroll-margin-top: 5.5rem;
}

.horizontal-workflow__sticky {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  padding: 7.5rem 0 3.5rem;
}

.horizontal-workflow__backdrop {
  position: absolute;
  z-index: 0;
  right: 2rem;
  bottom: clamp(0.25rem, 1.5vh, 1.25rem);
  left: 2rem;
  display: grid;
  overflow: visible;
  padding-top: 0.12em;
  color: color-mix(in srgb, var(--site-ink) 7%, transparent);
  font-family: Lexend, sans-serif;
  font-size: clamp(5rem, 10.5vw, 11rem);
  font-weight: 700;
  line-height: 0.92;
  pointer-events: none;
  text-transform: uppercase;
  user-select: none;
  white-space: nowrap;
}

.horizontal-workflow__backdrop > span {
  grid-area: 1 / 1;
  width: max-content;
  justify-self: center;
}

.horizontal-workflow__backdrop-fill {
  color: color-mix(in srgb, var(--site-accent) 34%, transparent);
}

.horizontal-workflow__header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  align-items: end;
  gap: 4rem;
}

.workflow-intro > p:last-child {
  margin-bottom: 0;
}

.workflow-progress > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--site-subtle);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.workflow-progress__line {
  position: relative;
  display: block;
  height: 0.125rem;
  overflow: hidden;
  background: var(--site-line);
}

.workflow-progress__line > span {
  position: absolute;
  inset: 0;
  background: var(--site-primary-gradient);
  transform-origin: left;
}

.horizontal-workflow__viewport {
  position: relative;
  z-index: 2;
  width: min(82.5rem, calc(100% - 4rem));
  min-height: 0;
  flex: 1;
  margin: 3.5rem auto 0;
  overflow: hidden;
}

.horizontal-workflow__viewport > div {
  width: max-content;
}

.workflow-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 3rem;
  padding-right: 10rem;
}

.workflow-step {
  display: flex;
  width: 26rem;
  min-height: 14rem;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  border-left: 0.0625rem solid var(--site-line-strong);
  padding: 0.5rem 2.5rem 0.5rem 1.5rem;
  transform-origin: left center;
}

.workflow-step[data-workflow-state="active"] {
  border-left-color: var(--site-accent);
}

.workflow-step__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--site-subtle);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.workflow-step__meta > span {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid var(--site-line);
  border-radius: 50%;
}

.workflow-step[data-workflow-state="active"] .workflow-step__meta > span,
.workflow-step[data-workflow-state="complete"] .workflow-step__meta > span {
  border-color: var(--site-accent);
  color: var(--site-accent);
}

.workflow-step h3 {
  width: auto;
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 1.75rem;
  font-weight: 650;
  line-height: 1.22;
}

.workflow-step p {
  margin-top: 0.9rem;
  color: var(--site-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.horizontal-workflow--showcase .workflow-track {
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.horizontal-workflow--showcase .workflow-step {
  position: relative;
  width: 25rem;
  min-height: 14.5rem;
  overflow: hidden;
  border: 0.0625rem solid var(--site-line);
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--site-surface) 96%, var(--site-accent) 4%);
  box-shadow: 0 0.75rem 2rem color-mix(in srgb, var(--site-ink) 8%, transparent);
  padding: 1.35rem 1.5rem;
  transition:
    background-color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.horizontal-workflow--showcase .workflow-step::before {
  position: absolute;
  top: -0.0625rem;
  right: 1.5rem;
  left: 1.5rem;
  height: 0.25rem;
  border-radius: 0 0 0.25rem 0.25rem;
  background: var(--site-primary-gradient);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.horizontal-workflow--showcase .workflow-step[data-workflow-state="complete"] {
  border-color: color-mix(in srgb, var(--site-accent) 45%, var(--site-line));
  background: color-mix(in srgb, var(--site-surface) 92%, var(--site-accent) 8%);
}

.horizontal-workflow--showcase .workflow-step[data-workflow-state="active"] {
  border-color: var(--site-accent);
  background: color-mix(in srgb, var(--site-surface) 84%, var(--site-accent) 16%);
  box-shadow: 0 1rem 3rem color-mix(in srgb, var(--site-accent) 22%, transparent);
}

.horizontal-workflow--showcase
  .workflow-step:is([data-workflow-state="active"], [data-workflow-state="complete"])::before {
  transform: scaleX(1);
}

.horizontal-workflow--showcase
  .workflow-step[data-workflow-state="complete"]::before {
  transform: scaleX(0.35);
}

.horizontal-workflow--showcase
  .workflow-step[data-workflow-state="active"]
  .workflow-step__meta
  > span {
  border-color: var(--site-accent);
  background: var(--site-primary-gradient);
  box-shadow: 0 0.5rem 1.25rem color-mix(in srgb, var(--site-accent) 28%, transparent);
  color: var(--site-button-text);
}

.horizontal-workflow--showcase
  .workflow-step[data-workflow-state="active"]
  .workflow-step__meta
  small,
.horizontal-workflow--showcase .workflow-step[data-workflow-state="active"] h3 {
  color: var(--site-accent);
}

.workflow-static-title {
  margin-top: 3rem;
  color: color-mix(in srgb, var(--site-accent) 36%, transparent);
  font-family: Lexend, sans-serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 700;
  line-height: 0.85;
  text-transform: uppercase;
}

.horizontal-workflow__mobile {
  display: none;
}

.horizontal-workflow--static {
  height: auto;
  background: var(--site-surface);
}

.horizontal-workflow--static .workflow-mobile-list {
  margin-top: 3.5rem;
}

/* Pricing and FAQ */
.home-pricing {
  scroll-margin-top: 5.5rem;
  border-top: 0.0625rem solid var(--site-line);
  border-bottom: 0.0625rem solid var(--site-line);
  background: var(--site-soft);
}

.home-pricing__layout,
.service-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 6rem;
}

.home-pricing__details > p,
.service-cta__layout > div:last-child > p {
  color: var(--site-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.home-pricing__details > small,
.service-cta__layout > div:last-child > small {
  display: block;
  margin-top: 1rem;
  color: var(--site-subtle);
  font-size: 0.75rem;
  line-height: 1.65;
}

.home-pricing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.home-faq {
  background: var(--site-surface);
}

.home-faq__layout,
.service-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 6rem;
}

.home-faq__intro,
.service-faq__layout > div:first-child {
  position: sticky;
  top: 8.5rem;
}

.home-faq__intro > p:not(.site-eyebrow) {
  max-width: 26rem;
  margin-top: 1.4rem;
  color: var(--site-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.home-faq__intro > span,
.service-faq__layout > div:first-child > span {
  display: block;
  margin-top: 2.5rem;
  border-top: 0.0625rem solid var(--site-line);
  padding-top: 1rem;
  color: var(--site-accent);
  font-family: LexendExa, sans-serif;
  font-size: 0.75rem;
}

.site-faq-list {
  border-top: 0.0625rem solid var(--site-line-strong);
}

.site-faq-list article {
  border-bottom: 0.0625rem solid var(--site-line);
}

.site-faq-list h3 {
  width: auto;
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
}

.site-faq-list h3 button {
  display: grid;
  width: 100%;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 1.5rem 0;
  font: inherit;
  text-align: left;
}

.site-faq-list__number {
  padding-top: 0.25rem;
  color: var(--site-subtle);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.site-faq-list article.is-open .site-faq-list__number {
  color: var(--site-accent);
}

.site-faq-list__icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid var(--site-line);
  border-radius: 50%;
  color: var(--site-muted);
}

.site-faq-list article.is-open .site-faq-list__icon {
  border-color: var(--site-accent);
  color: var(--site-accent);
}

.site-faq-list__answer {
  overflow: hidden;
}

.site-faq-list__answer p {
  max-width: 45rem;
  margin: 0 3rem 1.75rem 3.5rem;
  color: var(--site-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* Pricing page */
.pricing-page-hero {
  --pricing-energy-color: var(--site-accent);
  --pricing-energy-core: var(--site-accent);
  --pricing-energy-glow: var(--site-accent);
  --pricing-energy-fade: var(--site-bg);
  border-bottom: 0.0625rem solid var(--site-line);
  background: var(--site-bg);
  padding: 11rem 0 6.5rem;
}

html[data-theme="dark"] .pricing-page-hero {
  --pricing-energy-color: var(--site-accent);
  --pricing-energy-core: color-mix(in srgb, var(--site-accent) 25%, #7dffff);
  --pricing-energy-glow: var(--site-accent);
}

.pricing-page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  align-items: center;
  gap: 7rem;
}

.pricing-page-hero h1 {
  max-width: 55rem;
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: clamp(3.75rem, 5.5vw, 5.25rem);
  font-weight: 650;
  line-height: 1.02;
}

.pricing-page-hero__intro {
  max-width: 49rem;
  margin-top: 2rem;
  color: var(--site-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.pricing-page-hero__note {
  max-width: 46rem;
  margin-top: 1rem;
  color: var(--site-subtle);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.pricing-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.pricing-page-hero__facts-wrap {
  position: relative;
  width: 100%;
  align-self: center;
}

.pricing-page-hero__facts {
  width: 100%;
}

.pricing-page-hero__energy {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 4.5rem;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.pricing-page-hero__facts > div {
  --pricing-border-energy: 0%;
  position: relative;
  display: grid;
  min-height: 4.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 0.0625rem solid
    color-mix(
      in srgb,
      var(--site-line),
      var(--pricing-energy-color) var(--pricing-border-energy)
    );
  box-sizing: border-box;
  padding: 1.15rem 0 1.15rem 4rem;
  will-change: border-color;
}

.pricing-page-hero__facts > div:last-child {
  border-bottom: 0;
}

.pricing-page-hero__facts dt {
  --pricing-fact-energy: 0%;
  color: color-mix(
    in srgb,
    var(--site-subtle),
    var(--pricing-energy-color) var(--pricing-fact-energy)
  );
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  will-change: color;
}

.pricing-page-hero__facts dd {
  margin: 0;
  color: var(--site-ink);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: right;
}

.pricing-catalog {
  background: var(--site-surface);
}

.pricing-catalog__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: end;
  gap: 6rem;
}

.pricing-catalog__heading h2,
.pricing-flexibility h2 {
  margin: 0;
  color: inherit;
  font-family: Lexend, sans-serif;
  font-size: 3.5rem;
  font-weight: 650;
  line-height: 1.08;
}

.pricing-catalog__heading > p {
  color: var(--site-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.pricing-list {
  margin-top: 4.5rem;
  border-top: 0.0625rem solid var(--site-line-strong);
}

.pricing-list__row {
  border-bottom: 0.0625rem solid var(--site-line);
  transition: background-color 180ms ease;
}

.pricing-list__row.is-open {
  background: var(--site-accent-soft);
}

.pricing-list__trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 2.5rem minmax(0, 1fr) minmax(13rem, 0.48fr) 2.75rem;
  align-items: center;
  gap: 1.5rem;
  border: 0;
  background: transparent;
  color: var(--site-ink);
  padding: 1.4rem 0.75rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.pricing-list__trigger:hover {
  background: var(--site-accent-soft);
}

.pricing-list__index {
  color: var(--site-subtle);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.pricing-list__service {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.pricing-list__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  box-sizing: border-box;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 0.25rem;
  color: var(--site-accent);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.pricing-list__row:is(:hover, .is-open) .pricing-list__icon {
  border-color: var(--site-accent);
  background: var(--site-surface);
}

.pricing-list__service strong {
  display: block;
}

.pricing-list__service strong {
  color: var(--site-ink);
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.35;
}

.pricing-list__description > small,
.pricing-list__scope small,
.pricing-list__price small {
  display: block;
  color: var(--site-subtle);
  font-family: LexendExa, sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-list__description p {
  max-width: 46rem;
  margin-top: 0.75rem;
  color: var(--site-muted);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.pricing-list__description p:first-of-type {
  color: var(--site-ink);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
}

.pricing-list__scope > strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--site-ink);
  font-size: 0.8125rem;
  font-weight: 600;
}

.pricing-list__scope ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.5rem;
  margin-top: 0.85rem;
  list-style: none;
}

.pricing-list__scope li {
  position: relative;
  color: var(--site-muted);
  padding-left: 0.9rem;
  font-size: 0.6875rem;
  line-height: 1.45;
}

.pricing-list__scope li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--site-primary-gradient);
  content: "";
}

.pricing-list__price > strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--site-ink);
  font-size: 1.125rem;
  font-weight: 680;
  line-height: 1.35;
}

.pricing-list__price > span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  color: var(--site-muted);
  font-size: 0.6875rem;
  line-height: 1.45;
}

.pricing-list__toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 50%;
  color: var(--site-accent);
}

.pricing-list__row.is-open .pricing-list__toggle {
  border-color: var(--site-accent);
  background: var(--site-surface);
}

.pricing-list__action-label {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.pricing-list__panel {
  overflow: hidden;
}

.pricing-list__panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(17rem, 0.88fr);
  gap: 2rem 4rem;
  border-top: 0.0625rem solid color-mix(in srgb, var(--site-accent) 28%, var(--site-line));
  margin-inline: 5.75rem 4.25rem;
  padding: 2rem 0 2.25rem;
}

.pricing-list__panel-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pricing-list__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 0.25rem;
  color: var(--site-ink) !important;
  padding: 0.65rem 0.8rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.pricing-list__link:hover {
  border-color: var(--site-accent);
  background: var(--site-surface);
}

.pricing-list__link.is-primary {
  border-color: var(--site-accent);
  background: var(--site-primary-gradient);
  color: var(--site-button-text) !important;
}

.pricing-list__link.is-primary:hover {
  border-color: var(--site-accent-hover);
  background: var(--site-primary-gradient-hover);
}

.pricing-catalog__disclaimer {
  max-width: 50rem;
  margin-top: 1.25rem;
  color: var(--site-subtle);
  font-size: 0.6875rem;
  line-height: 1.65;
}

.pricing-flexibility__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 6rem;
}

.pricing-flexibility h2 {
  max-width: 35rem;
}

.pricing-flexibility__layout > div:first-child > p:last-child {
  max-width: 36rem;
  margin-top: 1.5rem;
  color: var(--site-contrast-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.pricing-flexibility__details ul {
  border-top: 0.0625rem solid #40504a;
  list-style: none;
}

.pricing-flexibility__details li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.8rem;
  border-bottom: 0.0625rem solid #33413c;
  padding: 1rem 0;
  color: var(--site-contrast-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pricing-flexibility__details li svg {
  margin-top: 0.2rem;
  color: #72c9c8;
}

.pricing-flexibility__details > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Service pages */
.service-hero {
  min-height: 46rem;
  box-sizing: border-box;
  border-bottom: 0.0625rem solid var(--site-line);
  padding: 8rem 0 6rem;
}

.service-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--site-muted) !important;
  font-size: 0.75rem;
  font-weight: 550;
}

.service-back-link:hover {
  color: var(--site-accent) !important;
}

.service-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.72fr);
  align-items: center;
  gap: 6rem;
  margin-top: 4rem;
}

.service-hero h1 {
  font-size: 4.25rem;
}

.service-hero__intro {
  max-width: 46rem;
  margin-top: 1.75rem;
  color: var(--site-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.service-hero__note {
  max-width: 42rem;
  margin-top: 1.1rem;
  color: var(--site-subtle);
  font-size: 0.8125rem;
  line-height: 1.65;
}

.service-hero__visual {
  --service-hero-price-gap: 1.75rem;
  position: relative;
  display: grid;
  width: min(100%, 34rem);
  align-self: center;
  justify-self: end;
}

.service-hero__media {
  position: relative;
  z-index: 2;
  width: 100%;
}

.service-art {
  --art-accent: var(--site-accent);
  --art-accent-gradient: var(--site-primary-gradient);
  --art-warm: var(--site-warm);
  --art-warm-gradient: var(--site-secondary-gradient);
  --art-positive: var(--green);
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-sizing: border-box;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 0.5rem;
  background: var(--site-surface);
  isolation: isolate;
  animation: service-art-reveal 700ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

.service-art__grid,
.service-art__grid-columns,
.service-art__grid-rows,
.service-art__composition {
  position: absolute;
  inset: 0;
}

.service-art__grid {
  color: color-mix(in srgb, var(--site-line) 72%, transparent);
  opacity: 0.72;
}

.service-art__grid-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.service-art__grid-rows {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.service-art__grid-columns span {
  border-right: 0.0625rem solid currentColor;
}

.service-art__grid-rows span {
  border-bottom: 0.0625rem solid currentColor;
}

.service-art__registration {
  position: absolute;
  z-index: 4;
  width: 1rem;
  height: 1rem;
  border-color: var(--art-accent);
  opacity: 0.75;
}

.service-art__registration--top {
  top: 0.75rem;
  left: 0.75rem;
  border-top: 0.0625rem solid;
  border-left: 0.0625rem solid;
}

.service-art__registration--bottom {
  right: 0.75rem;
  bottom: 0.75rem;
  border-right: 0.0625rem solid;
  border-bottom: 0.0625rem solid;
}

.service-art__composition {
  z-index: 2;
}

.service-art__icon-node,
.art-shop__product,
.art-shop__checkout,
.art-apps__notice,
.art-apps__calendar,
.art-automation__input,
.art-automation__output,
.art-automation__code,
.art-erp__module,
.art-rnd__satellite,
.art-design__tool {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  border: 0.0625rem solid var(--site-line-strong);
  background: var(--site-surface);
  color: var(--site-ink);
}

.service-art svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-art__icon-node {
  width: 3.5rem;
  height: 3.5rem;
  border-color: var(--art-accent);
  border-radius: 50%;
  color: var(--art-accent);
}

/* Websites: one responsive publishing surface, expanding into every screen. */
.service-art--web {
  --art-web-master-cycle: 20s;
  --art-accent: var(--site-accent);
  --art-accent-gradient: var(--site-primary-gradient);
}

.art-web__orbit {
  position: absolute;
  top: 8%;
  right: 3%;
  width: 59%;
  aspect-ratio: 1;
  border: 0.0625rem dashed color-mix(in srgb, var(--art-accent) 58%, transparent);
  border-radius: 50%;
  animation: service-art-rotate 22s linear infinite;
}

.art-web__browser {
  position: absolute;
  top: 17%;
  left: 9%;
  width: 70%;
  height: 59%;
  overflow: hidden;
  border: 0.125rem solid var(--site-ink);
  border-radius: 0.4rem;
  background: var(--site-surface);
  transform: rotate(-2deg);
  animation: service-art-web-frame-swap-browser var(--art-web-master-cycle) linear infinite;
  will-change: top, left;
}

.art-web__bar {
  display: flex;
  height: 15%;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 0.0625rem solid var(--site-line-strong);
  padding-inline: 0.75rem;
}

.art-web__bar > span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--site-line-strong);
}

.art-web__bar > span:first-child {
  background: var(--art-warm-gradient);
}

.art-web__bar > i {
  width: 43%;
  height: 0.32rem;
  margin-left: 0.5rem;
  border-radius: 1rem;
  background: var(--site-soft);
}

.art-web__body {
  display: grid;
  height: 85%;
  grid-template-columns: 18% 1fr;
  animation: service-art-web-drawer-layout var(--art-web-master-cycle) linear infinite;
}

.art-web__sidebar {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 0.65rem;
  overflow: hidden;
  border-right: 0.0625rem solid var(--site-line);
  background: color-mix(in srgb, var(--site-soft) 74%, var(--site-surface));
  padding: 1rem 0.65rem;
  animation: service-art-web-drawer-content var(--art-web-master-cycle) linear infinite;
}

.art-web__sidebar span {
  height: 0.28rem;
  border-radius: 1rem;
  background: var(--site-line-strong);
}

.art-web__sidebar span:first-child {
  width: 55%;
  height: 1.4rem;
  border-radius: 0.2rem;
  background: var(--art-accent-gradient);
}

.art-web__page {
  min-width: 0;
  padding: 1.15rem;
}

.art-web__page > strong {
  display: block;
  width: 58%;
  height: 1.65rem;
  background: var(--site-ink);
}

.art-web__page > i {
  display: block;
  width: 78%;
  height: 0.25rem;
  margin-top: 0.55rem;
  background: var(--site-line-strong);
  transform-origin: left center;
  animation-duration: 9.9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.art-web__page > i:nth-of-type(1) {
  animation-name: service-art-web-copy-line-one;
}

.art-web__page > i:nth-of-type(2) {
  width: 65%;
  animation-name: service-art-web-copy-line-two;
}

.art-web__page > i:nth-of-type(3) {
  width: 48%;
  animation-name: service-art-web-copy-line-three;
}

.art-web__page > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.art-web__page > div span {
  aspect-ratio: 1.28;
  border: 0.0625rem solid var(--site-line-strong);
  background: var(--site-soft);
  animation: service-art-web-panel-focus 6s linear infinite;
}

.art-web__page > div span:nth-child(1) {
  animation-delay: 4s;
}

.art-web__page > div span:nth-child(2) {
  border-color: var(--art-accent);
  background: var(--site-accent-soft);
}

.art-web__page > div span:nth-child(3) {
  animation-delay: 2s;
}

.art-web__phone {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 8%;
  width: 24%;
  height: 48%;
  overflow: hidden;
  isolation: isolate;
  border: 0.125rem solid var(--site-ink);
  border-radius: 1.25rem;
  background: var(--site-surface);
  padding: 0.8rem 0.65rem;
  animation:
    service-art-float 5s ease-in-out infinite,
    service-art-web-frame-swap-phone var(--art-web-master-cycle) linear infinite;
  will-change: right, bottom, transform;
}

.art-web__phone > span {
  display: block;
  width: 35%;
  height: 0.22rem;
  margin: 0 auto 0.85rem;
  border-radius: 1rem;
  background: var(--site-line-strong);
}

.art-web__phone > i {
  display: block;
  width: 78%;
  height: 0.3rem;
  margin-top: 0.48rem;
  background: var(--site-line-strong);
}

.art-web__phone > i:first-of-type {
  width: 88%;
  height: 2.4rem;
  background: var(--art-accent-gradient);
}

.art-web__phone > div {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.art-web__phone b {
  --phone-panel-fullscreen-x: -2.5%;
  position: relative;
  aspect-ratio: 1;
  border: 0.0625rem solid var(--site-line);
  background: var(--site-soft);
  transform-origin: top left;
  animation-name: service-art-web-phone-fullscreen;
  animation-duration: 20.8s;
  animation-timing-function: linear;
  animation-delay: 6s;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
  will-change: transform;
}

.art-web__phone b:nth-child(2) {
  --phone-panel-fullscreen-x: -115%;
  animation-delay: 16.4s;
}

.art-web__pointer {
  position: absolute;
  z-index: 4;
  top: 44%;
  right: 27%;
  color: var(--art-warm);
  filter: drop-shadow(0.15rem 0.18rem 0 var(--site-surface));
  transform-origin: 20% 18%;
  animation: service-art-web-pointer-action var(--art-web-master-cycle) linear infinite;
  will-change: top, right, transform;
}

.art-web__pointer > svg {
  display: block;
  animation: service-art-web-pointer-idle var(--art-web-master-cycle) ease-in-out infinite;
}

.art-web__signal {
  position: absolute;
  height: 0.125rem;
  background: var(--art-accent-gradient);
  transform-origin: left;
  animation: service-art-signal 3s ease-in-out infinite;
}

.art-web__signal--one {
  top: 14%;
  left: 14%;
  width: 14%;
}

.art-web__signal--two {
  right: 12%;
  bottom: 18%;
  width: 12%;
  animation-delay: -1.5s;
}

/* E-commerce: products travel through one clear purchase and fulfilment loop. */
.service-art--shop {
  --art-accent: var(--site-warm);
  --art-accent-gradient: var(--site-secondary-gradient);
}

.art-shop__story-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.art-shop__track {
  position: absolute;
  left: 12%;
  width: 76%;
  height: 30%;
  border-color: color-mix(in srgb, var(--art-accent) 68%, var(--site-line));
  border-style: solid;
  border-width: 0.0625rem;
  border-radius: 50%;
}

.art-shop__track--top {
  top: 24%;
  border-bottom-color: transparent;
}

.art-shop__track--bottom {
  bottom: 22%;
  border-top-color: transparent;
}

.service-art .art-shop__wire {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.art-shop__wire-path {
  fill: none;
  stroke: var(--art-accent);
  stroke-width: 0.42;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  opacity: 0;
  filter: drop-shadow(0 0 0.55rem color-mix(in srgb, var(--art-accent) 72%, transparent));
}

.art-shop__payment-wire-path {
  fill: none;
  stroke: var(--art-positive);
  stroke-width: 0.42;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  opacity: 0;
  filter: drop-shadow(0 0 0.55rem color-mix(in srgb, var(--art-positive) 64%, transparent));
  animation: service-art-shop-payment-wire 2.55s linear 10s 1 both;
}

.art-shop__wire-impulse {
  opacity: 0;
  filter: drop-shadow(0 0 0.65rem var(--art-accent));
}

.art-shop__wire-impulse-glow {
  fill: var(--art-accent);
  opacity: 0.42;
}

.art-shop__wire-impulse-core {
  fill: color-mix(in srgb, var(--art-accent) 48%, #fff);
}

.art-shop__delivery-flight {
  position: absolute;
  z-index: 1;
  top: calc(49.667% - 0.375rem);
  left: calc(50% - 0.45rem);
  width: 0.9rem;
  height: 0.75rem;
  border: 0.0625rem solid var(--art-positive);
  border-radius: 0.12rem;
  background: var(--site-surface);
  opacity: 0;
  filter: drop-shadow(0 0 0.45rem color-mix(in srgb, var(--art-positive) 58%, transparent));
  animation: service-art-shop-delivery-flight 2.9s linear 12.5s 1 both;
  will-change: top, left, opacity;
}

.art-shop__delivery-flight::before,
.art-shop__delivery-flight::after {
  position: absolute;
  content: "";
  background: var(--art-positive);
}

.art-shop__delivery-flight::before {
  top: 32%;
  left: 0;
  width: 100%;
  height: 0.0625rem;
}

.art-shop__delivery-flight::after {
  top: 0;
  left: calc(50% - 0.03125rem);
  width: 0.0625rem;
  height: 100%;
}

.art-shop__core {
  position: absolute;
  z-index: 2;
  top: 31%;
  left: 36%;
  display: grid;
  width: 28%;
  aspect-ratio: 1;
  place-items: center;
  border: 0.125rem solid var(--site-ink);
  border-radius: 50%;
  background: var(--site-surface);
  color: var(--site-ink);
}

.art-shop__core > svg {
  width: 42%;
  height: 42%;
}

.art-shop__core-ring {
  position: absolute;
  inset: 12%;
  border: 0.0625rem dashed var(--art-accent);
  border-radius: 50%;
  animation: service-art-rotate 12s linear infinite reverse;
}

.art-shop__core-receive {
  position: absolute;
  z-index: 3;
  inset: -0.125rem;
  border: 0.125rem solid transparent;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: service-art-shop-cart-receive 600ms cubic-bezier(0.2, 0.75, 0.25, 1) 9.6s 1 both;
}

.art-shop__product,
.art-shop__checkout {
  position: absolute;
  z-index: 2;
  width: 14%;
  aspect-ratio: 1;
  border-radius: 0.3rem;
  color: var(--art-accent);
  animation: service-art-float 4.5s ease-in-out infinite;
}

.art-shop__product--one {
  top: 13%;
  left: 11%;
}

.art-shop__product--two {
  top: 10%;
  right: 16%;
  animation-delay: -1.5s;
}

.art-shop__product--three {
  bottom: 10%;
  left: 18%;
  animation: service-art-float 4.5s ease-in-out -3s infinite;
}

.art-shop__delivery-confirm,
.art-shop__payment-confirm {
  position: absolute;
  z-index: 3;
  inset: -0.0625rem;
  display: grid;
  place-items: center;
  border: 0.0625rem solid var(--art-positive);
  border-radius: inherit;
  background: color-mix(in srgb, var(--art-positive) 28%, var(--site-surface));
  color: var(--art-positive);
  opacity: 0;
  pointer-events: none;
}

.art-shop__delivery-confirm {
  animation: service-art-shop-delivery-confirm 1.05s cubic-bezier(0.2, 0.75, 0.25, 1) 15.4s 1 both;
}

.art-shop__payment-confirm {
  animation: service-art-shop-payment-confirm 1.45s cubic-bezier(0.4, 0, 0.2, 1) 10.55s 1 forwards;
}

.art-shop__delivery-check {
  position: absolute;
  z-index: 5;
  bottom: calc(10% - 0.35rem);
  left: calc(32% - 0.75rem);
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border: 0.0625rem solid var(--art-positive);
  border-radius: 50%;
  background: var(--site-surface);
  color: var(--art-positive);
  opacity: 0;
  transform: scale(0.55);
  animation: service-art-shop-delivery-check 900ms cubic-bezier(0.2, 0.75, 0.25, 1) 15.4s 1 both;
}

.art-shop__delivery-check svg {
  width: 0.85rem;
  height: 0.85rem;
}

.art-shop__product-flight {
  z-index: 4;
  top: 13%;
  left: 11%;
  opacity: 0;
  transform-origin: center;
  animation: service-art-shop-product-flight 1.4s linear 6s 1 both;
  will-change: opacity, transform;
}

.art-shop__product-flight--two {
  animation-delay: 6.5s;
}

.art-shop__tag-flight {
  position: absolute;
  z-index: 4;
  top: calc(19.333% - 1.2rem);
  left: calc(77% - 0.75rem);
  color: var(--art-accent);
  opacity: 0;
  filter: drop-shadow(0 0 0.4rem color-mix(in srgb, var(--art-accent) 58%, transparent));
  transform-origin: center;
  animation: service-art-shop-tag-flight 1.1s linear 8.5s 1 both;
  will-change: top, left, opacity, transform;
}

.art-shop__checkout {
  right: 9%;
  bottom: 12%;
  border-color: var(--art-accent);
  background: color-mix(in srgb, var(--art-accent) 12%, var(--site-surface));
  animation: service-art-float 4.5s ease-in-out infinite;
}

.art-shop__value {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 45%;
}

.art-shop__parcel {
  position: absolute;
  z-index: 3;
  width: 1rem;
  height: 1rem;
  border: 0.0625rem solid var(--site-surface);
  background: var(--art-accent-gradient);
  transform: rotate(45deg);
  animation: service-art-packet 3.6s ease-in-out infinite;
}

.art-shop__parcel--one {
  top: 31%;
  left: 27%;
}

.art-shop__parcel--two {
  top: 48%;
  right: 24%;
  animation-delay: -1.2s;
}

.art-shop__parcel--three {
  bottom: 27%;
  left: 34%;
  animation-delay: -2.4s;
}

.art-shop__route-dot {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--art-positive);
  animation: service-art-pulse 2.4s ease-in-out infinite;
}

.art-shop__route-dot--one {
  top: 24%;
  left: 31%;
}

.art-shop__route-dot--two {
  top: 40%;
  right: 13%;
  animation-delay: -0.8s;
}

.art-shop__route-dot--three {
  right: 32%;
  bottom: 22%;
  animation-delay: -1.6s;
}

/* Applications: the same live product expressed across connected devices. */
.service-art--apps {
  --art-accent: var(--green);
  --art-accent-gradient: linear-gradient(135deg, var(--green), var(--green));
}

.art-apps__desktop {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 65%;
  height: 63%;
  overflow: hidden;
  border: 0.125rem solid var(--site-ink);
  border-radius: 0.45rem;
  background: var(--site-surface);
}

.art-apps__desktop-bar {
  display: flex;
  height: 13%;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 0.0625rem solid var(--site-line);
  padding-inline: 0.7rem;
}

.art-apps__desktop-bar span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--site-line-strong);
}

.art-apps__desktop-bar span:first-child {
  background: var(--art-accent-gradient);
}

.art-apps__desktop-grid {
  display: grid;
  height: 87%;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  box-sizing: border-box;
  padding: 0.8rem;
}

.art-apps__desktop-grid > span,
.art-apps__primary {
  border: 0.0625rem solid var(--site-line);
  background: var(--site-soft);
}

.art-apps__desktop-grid > span:nth-of-type(1) {
  background: color-mix(in srgb, var(--art-accent) 18%, var(--site-surface));
}

.art-apps__primary {
  position: relative;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  overflow: hidden;
  color: var(--art-accent);
  animation:
    service-art-apps-desktop-activate 1s cubic-bezier(0.2, 0.75, 0.25, 1) 1s 1 both,
    service-art-apps-desktop-confirm 1.2s cubic-bezier(0.2, 0.75, 0.25, 1) 7.8s 1 forwards;
}

.art-apps__primary svg {
  width: 36%;
  height: 36%;
}

.art-apps__primary-confirm {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  display: grid;
  width: 1.4rem;
  height: 1.4rem;
  place-items: center;
  border: 0.0625rem solid var(--art-positive);
  border-radius: 50%;
  background: var(--site-surface);
  color: var(--art-positive);
  opacity: 0;
  animation: service-art-apps-primary-check 900ms cubic-bezier(0.2, 0.75, 0.25, 1) 7.95s 1 both;
}

.art-apps__primary-confirm svg {
  width: 0.8rem;
  height: 0.8rem;
}

.art-apps__mobile {
  position: absolute;
  z-index: 3;
  top: 27%;
  right: 8%;
  display: grid;
  width: 25%;
  height: 57%;
  place-items: center;
  border: 0.125rem solid var(--site-ink);
  border-radius: 1.4rem;
  background: var(--site-surface);
  animation: service-art-float 5.5s ease-in-out infinite;
}

.art-apps__mobile > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  color: var(--site-ink);
}

.art-apps__mobile > div {
  position: relative;
  display: grid;
  width: 54%;
  gap: 0.45rem;
}

.art-apps__mobile span {
  display: block;
  height: 0.55rem;
  background: var(--site-line-strong);
}

.art-apps__mobile span:first-child {
  height: 2.2rem;
  background: var(--art-accent-gradient);
}

.art-apps__mobile-primary {
  transform-origin: center;
  animation:
    service-art-apps-mobile-update 1.2s cubic-bezier(0.2, 0.75, 0.25, 1) 3.3s 1 both,
    service-art-apps-mobile-tap 550ms cubic-bezier(0.2, 0.75, 0.25, 1) 5.5s 1 forwards;
}

.art-apps__mobile-confirm {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 2.2rem;
  place-items: center;
  color: var(--site-surface);
  opacity: 0;
  animation: service-art-apps-mobile-confirm 650ms cubic-bezier(0.2, 0.75, 0.25, 1) 5.65s 1 both;
}

.art-apps__mobile-confirm svg {
  width: 1rem;
  height: 1rem;
}

.art-apps__sync {
  position: absolute;
  z-index: 5;
  right: 34%;
  bottom: 8%;
  animation: service-art-apps-sync-idle 3.6s ease-in-out infinite;
}

.art-apps__sync-success {
  position: absolute;
  z-index: 2;
  inset: 0.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--site-surface);
  color: var(--art-positive);
  opacity: 0;
  animation: service-art-apps-sync-success 1.5s cubic-bezier(0.4, 0, 0.2, 1) 8.5s 1 both;
}

.art-apps__notice,
.art-apps__calendar {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 0.3rem;
  color: var(--art-accent);
}

.art-apps__notice {
  top: calc(14% - 0.75rem);
  right: calc(18% + 4.25rem);
  transform-origin: center;
  animation: service-art-apps-notice 900ms ease-in-out 4s 1 both;
}

.art-apps__notice-badge {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 0.125rem solid var(--site-surface);
  border-radius: 50%;
  background: var(--art-warm-gradient);
  opacity: 0;
  animation: service-art-apps-notice-badge 2s cubic-bezier(0.2, 0.75, 0.25, 1) 4s 1 both;
}

.art-apps__calendar {
  bottom: 7%;
  left: 13%;
  animation: service-art-apps-calendar-confirm 1.2s cubic-bezier(0.2, 0.75, 0.25, 1) 7.8s 1 both;
}

.art-apps__bridge {
  position: absolute;
  z-index: 2;
  top: 54%;
  left: 61%;
  width: 22%;
  border-top: 0.125rem dashed var(--art-accent);
}

.art-apps__story-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.art-apps__packet {
  position: absolute;
  z-index: 4;
  top: 52.8%;
  left: 61%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--art-accent-gradient);
  opacity: 0;
}

.art-apps__packet--out-one {
  animation: service-art-apps-packet-out 1.1s cubic-bezier(0.4, 0, 0.2, 1) 2s 1 both;
}

.art-apps__packet--out-two {
  animation: service-art-apps-packet-out 1.1s cubic-bezier(0.4, 0, 0.2, 1) 2.18s 1 both;
}

.art-apps__packet--out-three {
  animation: service-art-apps-packet-out 1.1s cubic-bezier(0.4, 0, 0.2, 1) 2.36s 1 both;
}

.art-apps__packet--return {
  left: 82%;
  background: var(--art-positive);
  animation: service-art-apps-packet-return 1.1s cubic-bezier(0.4, 0, 0.2, 1) 6.4s 1 both;
}

@keyframes service-art-apps-desktop-activate {
  0%,
  100% {
    border-color: var(--site-line);
    background: var(--site-soft);
    box-shadow: none;
    transform: scale(1);
  }

  42%,
  68% {
    border-color: var(--art-accent);
    background: color-mix(in srgb, var(--art-accent) 22%, var(--site-surface));
    box-shadow: inset 0 0 0 0.08rem color-mix(in srgb, var(--art-accent) 20%, transparent);
    transform: scale(1.025);
  }
}

@keyframes service-art-apps-desktop-confirm {
  0%,
  100% {
    border-color: var(--site-line);
    background: var(--site-soft);
    box-shadow: none;
    color: var(--art-accent);
  }

  32%,
  68% {
    border-color: var(--art-positive);
    background: color-mix(in srgb, var(--art-positive) 22%, var(--site-surface));
    box-shadow: inset 0 0 0 0.08rem color-mix(in srgb, var(--art-positive) 20%, transparent);
    color: var(--art-positive);
  }
}

@keyframes service-art-apps-primary-check {
  0%,
  100% { opacity: 0; transform: scale(0.6); }
  35%,
  68% { opacity: 1; transform: scale(1); }
}

@keyframes service-art-apps-mobile-update {
  0%,
  100% {
    background: var(--art-accent-gradient);
    box-shadow: none;
    transform: scale(1);
  }

  42%,
  68% {
    background: color-mix(in srgb, var(--art-accent) 72%, var(--art-positive));
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-accent) 22%, transparent);
    transform: scale(1.08, 1.12);
  }
}

@keyframes service-art-apps-mobile-tap {
  0%,
  100% { transform: scale(1); }
  42% { transform: scale(0.88); }
  72% { transform: scale(1.04); }
}

@keyframes service-art-apps-mobile-confirm {
  0%,
  100% { opacity: 0; transform: scale(0.6); }
  28%,
  70% { opacity: 1; transform: scale(1); }
}

@keyframes service-art-apps-notice {
  0%,
  100% { transform: rotate(0) scale(1); }
  22% { transform: rotate(-10deg) scale(1.04); }
  42% { transform: rotate(9deg) scale(1.04); }
  62% { transform: rotate(-6deg) scale(1.02); }
  80% { transform: rotate(3deg) scale(1.01); }
}

@keyframes service-art-apps-notice-badge {
  0%,
  100% { opacity: 0; transform: scale(0.4); }
  12%,
  95% {
    opacity: 1;
    transform: scale(1);
    animation-timing-function: linear;
  }
}

@keyframes service-art-apps-calendar-confirm {
  0%,
  100% {
    border-color: var(--site-line-strong);
    background: var(--site-surface);
    box-shadow: none;
    color: var(--art-accent);
  }

  32%,
  68% {
    border-color: var(--art-positive);
    background: color-mix(in srgb, var(--art-positive) 24%, var(--site-surface));
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-positive) 20%, transparent);
    color: var(--art-positive);
  }
}

@keyframes service-art-apps-sync-idle {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes service-art-apps-sync-success {
  0% { opacity: 0; transform: rotate(0) scale(0.92); }
  10% { opacity: 1; transform: rotate(0) scale(1); }
  78% { opacity: 1; transform: rotate(360deg) scale(1.05); }
  100% { opacity: 0; transform: rotate(360deg) scale(1); }
}

@keyframes service-art-apps-packet-out {
  0% { left: 61%; opacity: 0; transform: scale(0.7); }
  14% { opacity: 1; transform: scale(1); }
  84% { opacity: 1; transform: scale(1); }
  100% { left: 82%; opacity: 0; transform: scale(0.7); }
}

@keyframes service-art-apps-packet-return {
  0% { left: 82%; opacity: 0; transform: scale(0.7); }
  14% { opacity: 1; transform: scale(1); }
  84% { opacity: 1; transform: scale(1); }
  100% { left: 61%; opacity: 0; transform: scale(0.7); }
}

/* Automation and AI: inputs are interpreted, routed, and returned as action. */
.service-art--automation {
  --art-accent: var(--site-accent);
  --art-accent-gradient: var(--site-primary-gradient);
  --art-alert: #cf6200;
}

html[data-theme="dark"] .service-art--automation {
  --art-alert: #ffe04f;
}

.art-automation__story-cycle {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-art .art-automation__document-route {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.art-automation__document-route-path {
  fill: none;
  stroke: var(--art-accent);
  stroke-width: 0.46;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: drop-shadow(0 0 0.45rem color-mix(in srgb, var(--art-accent) 58%, transparent));
}

.art-automation__update-route-path {
  fill: none;
  stroke: var(--art-accent);
  stroke-width: 0.46;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: drop-shadow(0 0 0.4rem color-mix(in srgb, var(--art-accent) 54%, transparent));
  animation: service-art-automation-update-route 4.5s linear 5.6s 1 both;
}

@keyframes service-art-automation-update-route {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  16.667% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: linear;
  }

  85.556% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  100% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
}

.art-automation__data-route,
.art-automation__data-packet {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
}

.art-automation__data-route {
  stroke-width: 0.42;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
}

.art-automation__data-route--in {
  stroke: var(--art-accent);
  filter: drop-shadow(0 0 0.36rem color-mix(in srgb, var(--art-accent) 46%, transparent));
  animation: service-art-automation-data-route-in 2.35s linear 9.05s 1 both;
}

.art-automation__data-route--out {
  stroke: var(--art-positive);
  filter: drop-shadow(0 0 0.36rem color-mix(in srgb, var(--art-positive) 46%, transparent));
  animation: service-art-automation-data-route-out 2.28s linear 10.8s 1 both;
}

.art-automation__data-packet--in {
  stroke: color-mix(in srgb, var(--art-accent) 72%, white);
  stroke-width: 0.82;
  stroke-dasharray: 0.035 2;
  stroke-dashoffset: 0;
  filter:
    drop-shadow(0 0 0.08rem color-mix(in srgb, var(--art-accent) 96%, transparent))
    drop-shadow(0 0 0.2rem color-mix(in srgb, var(--art-accent) 58%, transparent));
}

.art-automation__data-packet--in-1 {
  animation: service-art-automation-data-in 0.82s linear 9.68s 1 both;
}

.art-automation__data-packet--in-2 {
  animation: service-art-automation-data-in 0.82s linear 9.88s 1 both;
}

.art-automation__data-packet--in-3 {
  animation: service-art-automation-data-in 0.82s linear 10.08s 1 both;
}

.art-automation__data-packet--out {
  stroke: color-mix(in srgb, var(--art-positive) 62%, white);
  stroke-width: 0.68;
  stroke-dasharray: 0.08 0.06 0.08 2;
  stroke-dashoffset: 0;
  filter:
    drop-shadow(0 0 0.09rem color-mix(in srgb, var(--art-positive) 96%, transparent))
    drop-shadow(0 0 0.24rem color-mix(in srgb, var(--art-positive) 62%, transparent));
}

.art-automation__data-packet--out-1 {
  animation: service-art-automation-data-out 0.9s linear 11.43s 1 both;
}

.art-automation__data-packet--out-2 {
  animation: service-art-automation-data-out 0.9s linear 11.67s 1 both;
}

.art-automation__output-route {
  fill: none;
  stroke: var(--art-positive);
  stroke-width: 0.46;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: drop-shadow(0 0 0.4rem color-mix(in srgb, var(--art-positive) 54%, transparent));
  animation: service-art-automation-output-route 2.35s linear 16.9s 1 both;
}

.art-automation__output-packet {
  opacity: 0;
  filter:
    drop-shadow(0 0 0.08rem color-mix(in srgb, var(--art-positive) 96%, transparent))
    drop-shadow(0 0 0.24rem color-mix(in srgb, var(--art-positive) 62%, transparent));
}

.art-automation__output-packet-glow {
  fill: color-mix(in srgb, var(--art-positive) 24%, transparent);
}

.art-automation__output-packet-core {
  fill: color-mix(in srgb, var(--art-positive) 72%, white);
  stroke: var(--art-positive);
  stroke-width: 0.12;
}

@keyframes service-art-automation-output-route {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  23.4% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: linear;
  }

  78.7% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  100% {
    stroke-dashoffset: -1;
    opacity: 0;
  }
}

@keyframes service-art-automation-data-route-in {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  25.532% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: linear;
  }

  80.851% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  100% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
}

@keyframes service-art-automation-data-route-out {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  26.316% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: linear;
  }

  80.263% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  100% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
}

@keyframes service-art-automation-data-in {
  0% { opacity: 0; stroke-dashoffset: 0; }
  8% { opacity: 1; }
  88% { opacity: 1; }
  100% { opacity: 0; stroke-dashoffset: -1.035; }
}

@keyframes service-art-automation-data-out {
  0% { opacity: 0; stroke-dashoffset: 0; }
  8% { opacity: 1; }
  88% { opacity: 1; }
  100% { opacity: 0; stroke-dashoffset: -1.22; }
}

@keyframes service-art-automation-data-transform {
  0%,
  100% {
    border-color: var(--site-line-strong);
    background: var(--site-surface);
    box-shadow: none;
  }

  28%,
  76% {
    border-color: var(--art-warm);
    background: color-mix(in srgb, var(--art-warm) 13%, var(--site-surface));
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-warm) 24%, transparent);
  }
}

.art-automation__document-copy {
  opacity: 0;
  filter: drop-shadow(0 0 0.35rem color-mix(in srgb, var(--art-accent) 48%, transparent));
}

.art-automation__document-copy rect {
  fill: var(--site-surface);
  stroke: var(--art-accent);
  stroke-width: 0.3;
}

.art-automation__document-copy path {
  fill: none;
  stroke: var(--art-accent);
  stroke-width: 0.24;
  stroke-linecap: round;
}

.art-automation__rail {
  position: absolute;
  top: 49.8%;
  left: 7%;
  display: flex;
  width: 86%;
  align-items: center;
  justify-content: space-between;
  border-top: 0.125rem solid var(--site-line-strong);
}

.art-automation__rail span {
  width: 0.72rem;
  height: 0.72rem;
  border: 0.125rem solid var(--site-surface);
  border-radius: 50%;
  background: var(--site-line-strong);
}

.art-automation__rail span:nth-child(3),
.art-automation__rail span:last-child {
  background: var(--art-accent-gradient);
}

.art-automation__input,
.art-automation__output,
.art-automation__code {
  position: absolute;
  z-index: 3;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.35rem;
}

.art-automation__input--file {
  top: 19%;
  left: 8%;
}

.art-automation__input--flow {
  bottom: 17%;
  left: 15%;
  color: var(--art-warm);
  animation: service-art-automation-data-transform 1.1s ease-in-out 10.45s 1 both;
}

.art-automation__core {
  position: absolute;
  z-index: 3;
  top: 28%;
  left: 37%;
  display: grid;
  width: 27%;
  aspect-ratio: 1;
  place-items: center;
  color: var(--site-ink);
}

.art-automation__core-shape {
  position: absolute;
  inset: 7%;
  border: 0.125rem solid var(--site-ink);
  border-radius: 1.4rem;
  background: color-mix(in srgb, var(--art-accent) 15%, var(--site-surface));
  transform: rotate(45deg);
}

.art-automation__core > .art-automation__mlp {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: 15%;
  width: 70%;
  height: 72%;
  overflow: visible;
}

.art-automation__core > .art-automation__core-bot {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 43%;
  width: 14%;
  height: 14%;
  color: var(--art-accent);
  transform: scale(1.5);
  transform-origin: center;
}

.art-automation__mlp-weights line {
  stroke: color-mix(in srgb, var(--art-accent) 58%, var(--site-line-strong));
  stroke-width: 0.42;
  opacity: 0.72;
}

.art-automation__mlp-firings > g {
  opacity: 0;
  filter:
    drop-shadow(0 0 0.1rem color-mix(in srgb, var(--art-accent) 96%, transparent))
    drop-shadow(0 0 0.24rem color-mix(in srgb, var(--art-accent) 54%, transparent));
}

.art-automation__mlp-firing-trail {
  fill: none;
  stroke: url("#automation-mlp-impulse-trail");
  stroke-width: 0.38;
  stroke-linecap: round;
  animation: service-art-mlp-electric-trail 0.18s ease-in-out infinite alternate;
}

.art-automation__mlp-trail-stop--start {
  stop-color: var(--art-accent);
  stop-opacity: 0;
}

.art-automation__mlp-trail-stop--mid {
  stop-color: color-mix(in srgb, var(--art-accent) 72%, white);
  stop-opacity: 0.52;
}

.art-automation__mlp-trail-stop--end {
  stop-color: color-mix(in srgb, var(--art-accent) 38%, white);
  stop-opacity: 0.96;
}

.art-automation__mlp-firing-halo {
  fill: color-mix(in srgb, var(--art-accent) 22%, transparent);
  animation: service-art-mlp-electric-glow 0.2s ease-in-out infinite alternate;
}

.art-automation__mlp-firing-core {
  fill: url("#automation-mlp-impulse-core");
  stroke: color-mix(in srgb, var(--art-accent) 76%, white);
  stroke-width: 0.12;
}

.art-automation__mlp-feedback-line {
  stroke: color-mix(in srgb, var(--art-accent) 70%, white);
  stroke-width: 0.55;
  stroke-dasharray: 0.12 2;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  opacity: 0;
  filter:
    drop-shadow(0 0 0.08rem color-mix(in srgb, var(--art-accent) 94%, transparent))
    drop-shadow(0 0 0.2rem color-mix(in srgb, var(--art-accent) 54%, transparent));
}

.art-automation__mlp-feedback-line--phase-one-output {
  animation: service-art-automation-feedback-pulse 0.55s linear 6.35s 1 both;
}

.art-automation__mlp-feedback-line--phase-one-hidden {
  animation: service-art-automation-feedback-pulse 0.55s linear 6.94s 1 both;
}

.art-automation__mlp-feedback-line--phase-two-output {
  animation: service-art-automation-feedback-pulse 0.55s linear 7.67s 1 both;
}

.art-automation__mlp-feedback-line--phase-two-hidden {
  animation: service-art-automation-feedback-pulse 0.55s linear 8.26s 1 both;
}

.art-automation__mlp-energy-firings > g {
  filter:
    drop-shadow(0 0 0.1rem color-mix(in srgb, var(--art-alert) 100%, transparent))
    drop-shadow(0 0 0.25rem color-mix(in srgb, var(--art-alert) 66%, transparent));
}

.art-automation__mlp-energy-firing-trail {
  stroke: color-mix(in srgb, var(--art-alert) 82%, white);
  animation-duration: 0.11s;
}

.art-automation__mlp-energy-firing-halo {
  fill: color-mix(in srgb, var(--art-alert) 34%, transparent);
  animation-duration: 0.12s;
}

.art-automation__mlp-energy-firing-core {
  fill: color-mix(in srgb, var(--art-alert) 82%, white);
  stroke: var(--art-alert);
}

@keyframes service-art-automation-feedback-pulse {
  0% { opacity: 0; stroke-dashoffset: 0; }
  8% { opacity: 1; }
  88% { opacity: 1; }
  100% { opacity: 0; stroke-dashoffset: -1.12; }
}

.art-automation__mlp-core-stop--hot {
  stop-color: white;
}

.art-automation__mlp-core-stop--mid {
  stop-color: color-mix(in srgb, var(--art-accent) 24%, white);
}

.art-automation__mlp-core-stop--edge {
  stop-color: var(--art-accent);
}

:root:not([data-theme="dark"]) .art-automation__mlp-firings > g,
html[data-theme="light"] .art-automation__mlp-firings > g {
  filter:
    drop-shadow(0 0 0.08rem color-mix(in srgb, var(--site-accent) 100%, transparent))
    drop-shadow(0 0 0.22rem color-mix(in srgb, var(--site-accent) 72%, transparent));
}

:root:not([data-theme="dark"]) .art-automation__mlp-trail-stop--start,
html[data-theme="light"] .art-automation__mlp-trail-stop--start {
  stop-color: var(--site-accent-hover);
}

:root:not([data-theme="dark"]) .art-automation__mlp-trail-stop--mid,
html[data-theme="light"] .art-automation__mlp-trail-stop--mid {
  stop-color: var(--site-accent);
  stop-opacity: 0.82;
}

:root:not([data-theme="dark"]) .art-automation__mlp-trail-stop--end,
html[data-theme="light"] .art-automation__mlp-trail-stop--end {
  stop-color: color-mix(in srgb, var(--site-accent) 24%, white);
  stop-opacity: 1;
}

:root:not([data-theme="dark"]) .art-automation__mlp-firing-halo,
html[data-theme="light"] .art-automation__mlp-firing-halo {
  fill: color-mix(in srgb, var(--site-accent) 42%, transparent);
}

:root:not([data-theme="dark"]) .art-automation__mlp-firing-core,
html[data-theme="light"] .art-automation__mlp-firing-core {
  stroke: var(--site-accent-hover);
  stroke-width: 0.18;
}

:root:not([data-theme="dark"]) .art-automation__mlp-feedback-line,
html[data-theme="light"] .art-automation__mlp-feedback-line {
  stroke: color-mix(in srgb, var(--site-accent) 88%, white);
  filter:
    drop-shadow(0 0 0.06rem color-mix(in srgb, var(--site-accent) 100%, transparent))
    drop-shadow(0 0 0.16rem color-mix(in srgb, var(--site-accent) 76%, transparent));
}

:root:not([data-theme="dark"]) .art-automation__mlp-firings.art-automation__mlp-energy-firings > g,
html[data-theme="light"] .art-automation__mlp-firings.art-automation__mlp-energy-firings > g {
  filter:
    drop-shadow(0 0 0.1rem color-mix(in srgb, var(--art-alert) 100%, transparent))
    drop-shadow(0 0 0.25rem color-mix(in srgb, var(--art-alert) 66%, transparent));
}

:root:not([data-theme="dark"]) .art-automation__mlp-energy-firing-halo,
html[data-theme="light"] .art-automation__mlp-energy-firing-halo {
  fill: color-mix(in srgb, var(--art-alert) 34%, transparent);
}

:root:not([data-theme="dark"]) .art-automation__mlp-energy-firing-core,
html[data-theme="light"] .art-automation__mlp-energy-firing-core {
  stroke: var(--art-alert);
  stroke-width: 0.12;
}

:root:not([data-theme="dark"]) .art-automation__data-packet--in,
html[data-theme="light"] .art-automation__data-packet--in {
  stroke: var(--site-accent-hover);
}

:root:not([data-theme="dark"]) .art-automation__data-packet--out,
html[data-theme="light"] .art-automation__data-packet--out {
  stroke: color-mix(in srgb, var(--art-positive) 86%, white);
}

:root:not([data-theme="dark"]) .art-automation__mlp-core-stop--mid,
html[data-theme="light"] .art-automation__mlp-core-stop--mid {
  stop-color: color-mix(in srgb, var(--site-accent) 42%, white);
}

:root:not([data-theme="dark"]) .art-automation__mlp-core-stop--edge,
html[data-theme="light"] .art-automation__mlp-core-stop--edge {
  stop-color: var(--site-accent-hover);
}

@keyframes service-art-mlp-electric-trail {
  from { opacity: 0.48; }
  to { opacity: 0.94; }
}

@keyframes service-art-mlp-electric-glow {
  from { opacity: 0.48; }
  to { opacity: 0.86; }
}

.art-automation__mlp-neuron {
  fill: var(--site-surface);
  stroke: var(--art-accent);
  stroke-width: 0.65;
}

html[data-theme="dark"] .art-automation__mlp-neuron--input {
  fill: color-mix(in srgb, white 82%, var(--site-surface));
}

.art-automation__mlp-neuron--hidden {
  fill: color-mix(in srgb, var(--art-accent) 22%, var(--site-surface));
}

.art-automation__mlp-neuron--output {
  fill: color-mix(in srgb, var(--art-positive) 22%, var(--site-surface));
  stroke: var(--art-positive);
}

.art-automation__mlp-neuron--output-1 {
  animation: service-art-automation-neuron-fire 0.34s ease-out 6.35s 1 both;
}

.art-automation__mlp-neuron--output-2 {
  animation: service-art-automation-neuron-fire 0.34s ease-out 7.67s 1 both;
}

.art-automation__mlp-neuron--hidden {
  animation: service-art-automation-neuron-fire-twice 1.68s linear 6.76s 1 both;
}

.art-automation__mlp-neuron--input {
  animation: service-art-automation-neuron-fire-twice 1.67s linear 7.32s 1 both;
}

@keyframes service-art-automation-neuron-fire {
  0%,
  100% {
    stroke-width: 0.65;
    filter: drop-shadow(0 0 0 transparent);
  }

  48% {
    stroke-width: 1.05;
    filter: drop-shadow(0 0 0.18rem color-mix(in srgb, var(--art-accent) 88%, transparent));
  }
}

@keyframes service-art-automation-neuron-fire-twice {
  0%,
  21%,
  79%,
  100% {
    stroke-width: 0.65;
    filter: drop-shadow(0 0 0 transparent);
  }

  10%,
  89% {
    stroke-width: 1.05;
    filter: drop-shadow(0 0 0.18rem color-mix(in srgb, var(--art-accent) 88%, transparent));
  }
}

.art-automation__core > i {
  position: absolute;
  z-index: 4;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--art-accent-gradient);
  animation: service-art-pulse 2s ease-in-out infinite;
}

.art-automation__core > i:nth-of-type(1) { top: 7%; left: 48%; }
.art-automation__core > i:nth-of-type(2) { right: 7%; bottom: 24%; animation-delay: -0.65s; }
.art-automation__core > i:nth-of-type(3) { bottom: 11%; left: 19%; animation-delay: -1.3s; }

.art-automation__output {
  top: 41%;
  right: 8%;
  border-color: var(--art-positive);
  color: var(--art-positive);
  transform-origin: center;
  animation: service-art-automation-output-confirm 1s cubic-bezier(0.4, 0, 0.2, 1) 18.6s 1;
}

.art-automation__output > svg {
  transform-origin: center;
  animation: service-art-automation-output-check 1s cubic-bezier(0.4, 0, 0.2, 1) 18.6s 1;
}

@keyframes service-art-automation-output-confirm {
  0%,
  100% {
    background: var(--site-surface);
    box-shadow: none;
    transform: scale(1);
  }

  28% {
    background: color-mix(in srgb, var(--art-positive) 14%, var(--site-surface));
    box-shadow:
      0 0 0 0.16rem color-mix(in srgb, var(--art-positive) 28%, transparent),
      0 0 0.72rem color-mix(in srgb, var(--art-positive) 42%, transparent);
    transform: scale(1.14);
  }

  52% {
    background: color-mix(in srgb, var(--art-positive) 10%, var(--site-surface));
    box-shadow: 0 0 0 0.32rem color-mix(in srgb, var(--art-positive) 8%, transparent);
    transform: scale(0.98);
  }

  72% { transform: scale(1.06); }
}

@keyframes service-art-automation-output-check {
  0%,
  100% { opacity: 1; transform: scale(1) rotate(0); }
  16% { opacity: 0.38; transform: scale(0.68) rotate(-8deg); }
  40% { opacity: 1; transform: scale(1.22) rotate(2deg); }
  62% { transform: scale(0.94) rotate(0); }
  78% { transform: scale(1.08) rotate(0); }
}

.art-automation__zap {
  position: absolute;
  top: 7%;
  left: 46%;
  transform-origin: center;
  animation:
    service-art-automation-zap-alert 1.85s linear 13.3s 1 forwards,
    service-art-automation-zap-alert-decay 1.65s linear 15.15s 1 forwards;
}

.art-automation__code {
  right: 21%;
  bottom: 9%;
  color: var(--art-accent);
}

.art-automation__code > svg:first-child {
  animation: service-art-automation-code-update 3s ease-in-out 6.45s 1 both;
}

.art-automation__code > .art-automation__update-gear {
  position: absolute;
  width: 1.55rem;
  height: 1.55rem;
  opacity: 0;
  color: var(--art-accent);
  animation: service-art-automation-update-gear 3s ease-in-out 6.45s 1 both;
}

@keyframes service-art-automation-code-update {
  0%,
  100% { opacity: 1; transform: scale(1); }
  12%,
  88% { opacity: 0; transform: scale(0.72); }
}

@keyframes service-art-automation-update-gear {
  0% { opacity: 0; transform: rotate(-35deg) scale(0.68); }
  12% { opacity: 1; transform: rotate(0) scale(1); }
  86% { opacity: 1; transform: rotate(670deg) scale(1); }
  100% { opacity: 0; transform: rotate(720deg) scale(0.72); }
}

.art-automation__orbit {
  position: absolute;
  top: 16%;
  left: 27%;
  width: 47%;
  aspect-ratio: 1;
  border: 0.0625rem dashed color-mix(in srgb, var(--art-accent) 65%, transparent);
  border-radius: 50%;
  animation:
    service-art-rotate 20s linear infinite,
    service-art-automation-orbit-alert 1.85s linear 13.3s 1 forwards,
    service-art-automation-orbit-alert-decay 1.65s linear 15.15s 1 forwards;
}

@keyframes service-art-automation-zap-alert {
  0% {
    border-color: var(--art-accent);
    background: var(--site-surface);
    box-shadow: none;
    color: var(--art-accent);
    transform: translateX(0) rotate(0);
  }

  10.8% {
    border-color: var(--art-alert);
    background: color-mix(in srgb, var(--art-alert) 13%, var(--site-surface));
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-alert) 24%, transparent);
    color: var(--art-alert);
    transform: translateX(0.02rem) rotate(0.7deg);
  }

  27.8% { transform: translateX(-0.04rem) rotate(-1.4deg); }
  43.4% { transform: translateX(0.065rem) rotate(2.2deg); }
  57.6% { transform: translateX(-0.09rem) rotate(-3deg); }
  70.3% { transform: translateX(0.115rem) rotate(3.8deg); }
  81.6% { transform: translateX(-0.135rem) rotate(-4.5deg); }
  91.5% { transform: translateX(0.15rem) rotate(5deg); }

  100% {
    border-color: var(--art-alert);
    background: color-mix(in srgb, var(--art-alert) 13%, var(--site-surface));
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-alert) 24%, transparent);
    color: var(--art-alert);
    transform: translateX(-0.15rem) rotate(-5deg);
  }
}

@keyframes service-art-automation-orbit-alert {
  0% {
    border-color: color-mix(in srgb, var(--art-accent) 65%, transparent);
    filter: none;
    opacity: 1;
  }

  27.8%,
  57.6%,
  81.6% {
    border-color: var(--art-alert);
    filter: drop-shadow(0 0 0.28rem color-mix(in srgb, var(--art-alert) 72%, transparent));
    opacity: 1;
  }

  10.8%,
  43.4%,
  70.3%,
  91.5% {
    border-color: var(--art-alert);
    filter: none;
    opacity: 0.14;
  }

  100% {
    border-color: var(--art-alert);
    filter: drop-shadow(0 0 0.28rem color-mix(in srgb, var(--art-alert) 72%, transparent));
    opacity: 1;
  }
}

@keyframes service-art-automation-zap-alert-decay {
  0% {
    border-color: var(--art-alert);
    background: color-mix(in srgb, var(--art-alert) 13%, var(--site-surface));
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-alert) 24%, transparent);
    color: var(--art-alert);
    transform: translateX(-0.15rem) rotate(-5deg);
  }

  10% { transform: translateX(0.14rem) rotate(4.6deg); }
  23% { transform: translateX(-0.12rem) rotate(-4deg); }

  40% {
    border-color: color-mix(in srgb, var(--art-alert) 72%, var(--art-accent));
    background: color-mix(in srgb, var(--art-alert) 9%, var(--site-surface));
    box-shadow: 0 0 0 0.08rem color-mix(in srgb, var(--art-alert) 18%, transparent);
    color: color-mix(in srgb, var(--art-alert) 72%, var(--art-accent));
    transform: translateX(0.09rem) rotate(3deg);
  }

  64% {
    border-color: color-mix(in srgb, var(--art-alert) 38%, var(--art-accent));
    background: color-mix(in srgb, var(--art-alert) 5%, var(--site-surface));
    box-shadow: 0 0 0 0.04rem color-mix(in srgb, var(--art-alert) 10%, transparent);
    color: color-mix(in srgb, var(--art-alert) 38%, var(--art-accent));
    transform: translateX(-0.05rem) rotate(-1.7deg);
  }

  100% {
    border-color: var(--art-accent);
    background: var(--site-surface);
    box-shadow: none;
    color: var(--art-accent);
    transform: translateX(0) rotate(0);
  }
}

@keyframes service-art-automation-orbit-alert-decay {
  0% {
    border-color: var(--art-alert);
    filter: drop-shadow(0 0 0.28rem color-mix(in srgb, var(--art-alert) 72%, transparent));
    opacity: 1;
  }

  10% {
    border-color: var(--art-alert);
    filter: none;
    opacity: 0.14;
  }

  23% {
    border-color: color-mix(in srgb, var(--art-alert) 88%, var(--art-accent));
    filter: drop-shadow(0 0 0.2rem color-mix(in srgb, var(--art-alert) 56%, transparent));
    opacity: 1;
  }

  40% {
    border-color: color-mix(in srgb, var(--art-alert) 68%, var(--art-accent));
    filter: none;
    opacity: 0.42;
  }

  64% {
    border-color: color-mix(in srgb, var(--art-alert) 38%, var(--art-accent));
    filter: drop-shadow(0 0 0.1rem color-mix(in srgb, var(--art-alert) 26%, transparent));
    opacity: 0.86;
  }

  100% {
    border-color: color-mix(in srgb, var(--art-accent) 65%, transparent);
    filter: none;
    opacity: 1;
  }
}

.art-automation__pulse {
  position: absolute;
  top: 49%;
  width: 1rem;
  height: 0.2rem;
  background: var(--art-accent-gradient);
  animation: service-art-data-flow 2.7s ease-in-out infinite;
}

.art-automation__pulse--one { left: 25%; }
.art-automation__pulse--two { right: 20%; animation-delay: -1.35s; }

/* ERP: one operational core keeps every department in sync. */
.service-art--erp {
  --art-accent: var(--green);
  --art-accent-gradient: linear-gradient(135deg, var(--green), var(--green));
}

.art-erp__bus {
  position: absolute;
  background: var(--site-line-strong);
}

.art-erp__bus--horizontal {
  top: 49.8%;
  left: 10%;
  width: 80%;
  height: 0.125rem;
}

.art-erp__bus--vertical {
  top: 10%;
  left: 49.8%;
  width: 0.125rem;
  height: 80%;
}

.art-erp__database {
  position: absolute;
  z-index: 3;
  top: 28%;
  left: 38%;
  display: grid;
  width: 24%;
  height: 44%;
  place-items: center;
  border: 0.125rem solid var(--site-ink);
  border-radius: 50% / 14%;
  background: var(--site-surface);
  color: var(--art-accent);
}

.art-erp__database > svg {
  z-index: 2;
  width: 34%;
  height: 34%;
}

.art-erp__database > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 18%;
  border-top: 0.0625rem solid var(--site-line-strong);
  border-radius: 50%;
}

.art-erp__database > span:nth-child(1) { top: 24%; }
.art-erp__database > span:nth-child(2) { top: 49%; }
.art-erp__database > span:nth-child(3) { top: 74%; }

.art-erp__module {
  position: absolute;
  z-index: 3;
  width: 14%;
  aspect-ratio: 1;
  border-radius: 0.3rem;
  color: var(--art-accent);
  animation: service-art-module-breathe 4s ease-in-out infinite;
}

.art-erp__module--people { top: 10%; left: 12%; }
.art-erp__module--stock { top: 11%; right: 11%; animation-delay: -1s; }
.art-erp__module--orders { bottom: 10%; left: 12%; animation-delay: -2s; }
.art-erp__module--insight { right: 11%; bottom: 9%; animation-delay: -3s; }

.art-erp__node {
  position: absolute;
  z-index: 2;
  width: 0.65rem;
  height: 0.65rem;
  border: 0.125rem solid var(--site-surface);
  border-radius: 50%;
  background: var(--art-accent-gradient);
}

.art-erp__node--a { top: 48.7%; left: 21%; }
.art-erp__node--b { top: 48.7%; right: 21%; }
.art-erp__node--c { top: 20%; left: 48.8%; }
.art-erp__node--d { bottom: 20%; left: 48.8%; }
.art-erp__node--e { top: 48.7%; left: 9%; }
.art-erp__node--f { top: 48.7%; right: 9%; }

.art-erp__scan {
  position: absolute;
  z-index: 4;
  top: 29%;
  left: 40%;
  width: 20%;
  height: 0.125rem;
  background: var(--art-accent-gradient);
  animation: service-art-scan 3.8s ease-in-out infinite;
}

/* Custom software: purpose-built modules lock into one bespoke machine. */
.service-art--custom {
  --art-accent: var(--site-warm);
  --art-accent-gradient: var(--site-secondary-gradient);
}

.art-custom__machine {
  position: absolute;
  top: 18%;
  left: 25%;
  display: grid;
  width: 53%;
  height: 64%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  transform: rotate(-3deg);
}

.art-custom__module {
  display: grid;
  place-items: center;
  border: 0.125rem solid var(--site-ink);
  background: var(--site-surface);
  color: var(--site-ink);
}

.art-custom__module--blocks {
  border-radius: 2rem 0.35rem 0.35rem;
  background: color-mix(in srgb, var(--art-accent) 16%, var(--site-surface));
  color: var(--art-accent);
}

.art-custom__module--wrench {
  border-radius: 0.35rem 2rem 0.35rem 0.35rem;
}

.art-custom__module--sliders {
  border-radius: 0.35rem 0.35rem 0.35rem 2rem;
}

.art-custom__module--logic {
  border-radius: 0.35rem 0.35rem 2rem;
  background: var(--site-ink);
  color: var(--site-surface);
}

.art-custom__module svg {
  width: 30%;
  height: 30%;
}

.art-custom__gear {
  position: absolute;
  z-index: 4;
  top: calc(50% - 1.7rem);
  left: calc(50% - 1.7rem);
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 0.125rem solid var(--site-surface);
  border-radius: 50%;
  background: var(--art-accent-gradient);
  color: var(--site-surface);
  animation: service-art-rotate 10s linear infinite;
}

.art-custom__cable {
  position: absolute;
  height: 0.125rem;
  background: var(--site-line-strong);
  transform-origin: left;
}

.art-custom__cable--one { top: 31%; left: 7%; width: 27%; transform: rotate(8deg); }
.art-custom__cable--two { top: 67%; left: 8%; width: 24%; transform: rotate(-8deg); }
.art-custom__cable--three { top: 49%; right: 5%; width: 27%; transform: rotate(-4deg); }

.art-custom__port {
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  box-sizing: border-box;
  border: 0.25rem solid var(--site-surface);
  border-radius: 50%;
  background: var(--art-accent-gradient);
  animation: service-art-pulse 2.4s ease-in-out infinite;
}

.art-custom__port--one { top: 27%; left: 6%; }
.art-custom__port--two { bottom: 26%; left: 7%; animation-delay: -0.8s; }
.art-custom__port--three { top: 45%; right: 5%; animation-delay: -1.6s; }

.art-custom__output {
  position: absolute;
  top: 38%;
  right: 4%;
  display: grid;
  width: 4.25rem;
  gap: 0.4rem;
  border: 0.0625rem solid var(--art-accent);
  background: var(--site-surface);
  padding: 0.75rem;
}

.art-custom__output i {
  display: block;
  height: 0.25rem;
  background: var(--art-accent-gradient);
}

.art-custom__output i:nth-child(2) { width: 72%; }
.art-custom__output i:nth-child(3) { width: 45%; }

.art-custom__measure {
  position: absolute;
  border-color: var(--art-accent);
  border-style: solid;
  opacity: 0.62;
}

.art-custom__measure--x {
  top: 10%;
  left: 25%;
  width: 53%;
  border-width: 0.0625rem 0;
}

.art-custom__measure--y {
  top: 18%;
  left: 17%;
  height: 64%;
  border-width: 0 0.0625rem;
}

/* R&D: hypotheses orbit a live experiment until one earns its launch. */
.service-art--rnd {
  --art-accent: var(--site-warm);
  --art-accent-gradient: var(--site-secondary-gradient);
}

.art-rnd__orbit {
  position: absolute;
  border-radius: 50%;
}

.art-rnd__orbit--outer {
  top: 11%;
  left: 16%;
  width: 68%;
  aspect-ratio: 1;
  border: 0.0625rem dashed var(--site-line-strong);
  animation: service-art-rotate 26s linear infinite;
}

.art-rnd__orbit--inner {
  top: 24%;
  left: 29%;
  width: 42%;
  aspect-ratio: 1;
  border: 0.125rem solid color-mix(in srgb, var(--art-accent) 60%, transparent);
  animation: service-art-rotate 17s linear infinite reverse;
}

.art-rnd__core {
  position: absolute;
  z-index: 3;
  top: 31%;
  left: 39%;
  display: grid;
  width: 22%;
  aspect-ratio: 1;
  place-items: center;
  border: 0.125rem solid var(--site-ink);
  border-radius: 50%;
  background: color-mix(in srgb, var(--art-accent) 13%, var(--site-surface));
  color: var(--art-accent);
  animation: service-art-float 5s ease-in-out infinite;
}

.art-rnd__core > svg {
  width: 36%;
  height: 36%;
}

.art-rnd__core > span {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--art-accent-gradient);
  animation: service-art-pulse 1.8s ease-in-out infinite;
}

.art-rnd__core > span:nth-of-type(1) { top: 27%; right: 23%; }
.art-rnd__core > span:nth-of-type(2) { bottom: 24%; left: 27%; animation-delay: -0.6s; }
.art-rnd__core > span:nth-of-type(3) { right: 18%; bottom: 20%; animation-delay: -1.2s; }

.art-rnd__satellite {
  position: absolute;
  z-index: 3;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: var(--art-accent);
}

.art-rnd__satellite--atom { top: 8%; left: 43%; }
.art-rnd__satellite--idea { top: 36%; right: 7%; }
.art-rnd__satellite--scan { bottom: 9%; left: 43%; }
.art-rnd__satellite--launch { top: 38%; left: 7%; }

.art-rnd__spark {
  position: absolute;
  top: 12%;
  right: 13%;
  color: var(--art-warm);
  animation: service-art-pulse 2.4s ease-in-out infinite;
}

.art-rnd__particle {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--art-positive);
  animation: service-art-pulse 2.2s ease-in-out infinite;
}

.art-rnd__particle--one { top: 18%; left: 27%; }
.art-rnd__particle--two { top: 25%; right: 25%; animation-delay: -0.55s; }
.art-rnd__particle--three { right: 23%; bottom: 21%; animation-delay: -1.1s; }
.art-rnd__particle--four { bottom: 17%; left: 25%; animation-delay: -1.65s; }

.art-rnd__result {
  position: absolute;
  right: 7%;
  bottom: 7%;
  display: flex;
  height: 2.3rem;
  align-items: end;
  gap: 0.25rem;
  border-bottom: 0.0625rem solid var(--site-line-strong);
  padding-inline: 0.35rem;
}

.art-rnd__result span {
  width: 0.32rem;
  background: var(--art-accent-gradient);
  animation: service-art-bars 2.4s ease-in-out infinite;
}

.art-rnd__result span:nth-child(1) { height: 35%; }
.art-rnd__result span:nth-child(2) { height: 68%; animation-delay: -0.6s; }
.art-rnd__result span:nth-child(3) { height: 48%; animation-delay: -1.2s; }
.art-rnd__result span:nth-child(4) { height: 90%; animation-delay: -1.8s; }

/* Design: proportion, curves, layers, and colour resolve into one composition. */
.service-art--design {
  --art-accent: var(--site-warm);
  --art-accent-gradient: var(--site-secondary-gradient);
}

.art-design__shape {
  position: absolute;
  box-sizing: border-box;
}

.art-design__shape--circle {
  top: 12%;
  left: 8%;
  width: 36%;
  aspect-ratio: 1;
  border: 0.125rem solid var(--art-accent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--art-accent) 9%, transparent);
}

.art-design__shape--square {
  right: 10%;
  bottom: 10%;
  width: 31%;
  aspect-ratio: 1;
  border: 0.125rem solid var(--art-positive);
  transform: rotate(12deg);
}

.art-design__shape--triangle {
  right: 4%;
  top: 9%;
  width: 0;
  height: 0;
  border-right: 3.3rem solid transparent;
  border-bottom: 5.6rem solid color-mix(in srgb, var(--art-accent) 68%, var(--site-surface));
  border-left: 3.3rem solid transparent;
  transform: rotate(18deg);
}

.art-design__shape--line {
  bottom: 14%;
  left: 8%;
  width: 34%;
  height: 0.125rem;
  background: var(--site-ink);
  transform: rotate(-18deg);
}

.art-design__canvas {
  position: absolute;
  z-index: 3;
  top: 21%;
  left: 27%;
  width: 48%;
  height: 56%;
  border: 0.125rem solid var(--site-ink);
  background: color-mix(in srgb, var(--site-surface) 92%, transparent);
  transform: rotate(-3deg);
}

.art-design__canvas > svg {
  position: absolute;
  top: 38%;
  left: 42%;
  width: 24%;
  height: 24%;
  color: var(--art-accent);
}

.art-design__curve {
  position: absolute;
  top: 24%;
  left: 16%;
  width: 68%;
  height: 48%;
  border-top: 0.125rem solid var(--art-accent);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.art-design__control {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  box-sizing: border-box;
  border: 0.125rem solid var(--art-accent);
  background: var(--site-surface);
}

.art-design__control--one { top: 23%; left: 15%; }
.art-design__control--two { top: 41%; left: 46%; }
.art-design__control--three { top: 61%; right: 14%; }

.art-design__tool {
  position: absolute;
  z-index: 5;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.35rem;
  color: var(--art-accent);
  animation: service-art-float 5s ease-in-out infinite;
}

.art-design__tool--palette { top: 8%; left: 41%; }
.art-design__tool--layers { right: 8%; bottom: 9%; animation-delay: -2.5s; }

.art-design__cursor {
  position: absolute;
  z-index: 6;
  right: 26%;
  bottom: 24%;
  color: var(--site-ink);
  animation: service-art-pointer 4.5s ease-in-out infinite;
}

.art-design__swatches {
  position: absolute;
  z-index: 4;
  bottom: 8%;
  left: 8%;
  display: flex;
  gap: 0.4rem;
  border: 0.0625rem solid var(--site-line-strong);
  background: var(--site-surface);
  padding: 0.55rem;
}

.art-design__swatches span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--art-accent-gradient);
}

.art-design__swatches span:nth-child(2) { background: var(--art-positive); }
.art-design__swatches span:nth-child(3) { background: var(--site-primary-gradient); }
.art-design__swatches span:nth-child(4) { background: var(--site-ink); }

.art-design__baseline {
  position: absolute;
  z-index: 4;
  height: 0.0625rem;
  background: var(--art-accent-gradient);
  transform-origin: left;
  animation: service-art-signal 3.5s ease-in-out infinite;
}

.art-design__baseline--one { top: 14%; left: 18%; width: 19%; }
.art-design__baseline--two { right: 14%; bottom: 18%; width: 16%; animation-delay: -1.75s; }

@keyframes service-art-shop-tag-flight {
  0% {
    top: calc(19.333% - 1.2rem);
    left: calc(77% - 0.75rem);
    opacity: 0;
    transform: rotate(0) scale(0.82);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  8% {
    top: calc(21.76% - 1.164rem);
    left: calc(74.84% - 0.75rem);
    opacity: 1;
    transform: rotate(-4deg) scale(1);
  }

  82% {
    top: calc(44.21% - 0.831rem);
    left: calc(54.86% - 0.75rem);
    opacity: 1;
    transform: rotate(7deg) scale(0.78);
  }

  100% {
    top: calc(49.667% - 0.75rem);
    left: calc(50% - 0.75rem);
    opacity: 0;
    transform: rotate(12deg) scale(0.28);
  }
}

@keyframes service-art-shop-cart-receive {
  0%,
  100% {
    border-color: transparent;
    box-shadow: none;
    opacity: 0;
    transform: scale(1);
  }

  42% {
    border-color: var(--art-accent);
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-accent) 24%, transparent);
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes service-art-shop-payment-wire {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }

  0.1% {
    stroke-dashoffset: 1;
    opacity: 1;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  25.49% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: linear;
  }

  78.43% {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  100% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
}

@keyframes service-art-shop-payment-confirm {
  0%,
  71.5% {
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-positive) 24%, transparent);
    opacity: 1;
  }

  100% {
    box-shadow: none;
    opacity: 0;
  }
}

@keyframes service-art-shop-delivery-flight {
  0% {
    top: calc(49.667% - 0.375rem);
    left: calc(50% - 0.45rem);
    opacity: 0;
  }

  10% {
    top: calc(54.237% - 0.375rem);
    left: calc(48.31% - 0.45rem);
    opacity: 1;
  }

  25% {
    top: calc(60.479% - 0.375rem);
    left: calc(45.438% - 0.45rem);
    opacity: 1;
  }

  50% {
    top: calc(69.25% - 0.375rem);
    left: calc(39.75% - 0.45rem);
    opacity: 1;
  }

  75% {
    top: calc(75.979% - 0.375rem);
    left: calc(32.938% - 0.45rem);
    opacity: 1;
  }

  84% {
    top: calc(77.902% - 0.375rem);
    left: calc(30.21% - 0.45rem);
    opacity: 1;
  }

  100% {
    top: calc(80.667% - 0.375rem);
    left: calc(25% - 0.45rem);
    opacity: 0;
  }
}

@keyframes service-art-shop-delivery-confirm {
  0%,
  100% {
    box-shadow: none;
    opacity: 0;
    transform: scale(0.98);
  }

  38%,
  62% {
    box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--art-positive) 22%, transparent);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes service-art-shop-delivery-check {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }

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

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

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

@keyframes service-art-shop-product-flight {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0) scale(0.9);
    animation-timing-function: cubic-bezier(0.2, 0.72, 0.24, 1);
  }

  8% {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
  }

  55% {
    opacity: 1;
    transform: translate(125%, 35%) rotate(-7deg) scale(0.92);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  82% {
    opacity: 0.9;
    transform: translate(205%, 110%) rotate(7deg) scale(0.68);
  }

  100% {
    opacity: 0;
    transform: translate(232%, 150%) rotate(12deg) scale(0.3);
  }
}

@keyframes service-art-web-frame-swap-browser {
  0% {
    top: 17%;
    left: 9%;
  }

  46% {
    top: 17%;
    left: 9%;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }

  50% {
    top: calc(33% - 0.25rem);
    left: calc(21% - 0.25rem);
  }

  96% {
    top: calc(33% - 0.25rem);
    left: calc(21% - 0.25rem);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }

  100% {
    top: 17%;
    left: 9%;
  }
}

@keyframes service-art-web-frame-swap-phone {
  0% {
    right: 8%;
    bottom: 8%;
  }

  46% {
    right: 8%;
    bottom: 8%;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }

  50% {
    right: calc(67% - 1.55rem);
    bottom: calc(44% - 1.85rem);
  }

  96% {
    right: calc(67% - 1.55rem);
    bottom: calc(44% - 1.85rem);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }

  100% {
    right: 8%;
    bottom: 8%;
  }
}

@keyframes service-art-web-phone-fullscreen {
  0% {
    z-index: 0;
    border-color: var(--site-line);
    transform: translate(0, 0) scale(1);
  }

  0.001% {
    z-index: 2;
    border-color: var(--site-line);
    transform: translate(0, 0) scale(1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }

  3.365% {
    z-index: 2;
    border-color: color-mix(in srgb, var(--art-accent) 45%, var(--site-line));
    transform: translate(var(--phone-panel-fullscreen-x), -5.23rem) scale(2.18, 3.33);
  }

  17.788% {
    z-index: 2;
    border-color: color-mix(in srgb, var(--art-accent) 45%, var(--site-line));
    transform: translate(var(--phone-panel-fullscreen-x), -5.23rem) scale(2.18, 3.33);
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }

  21.154% {
    z-index: 2;
    border-color: var(--site-line);
    transform: translate(0, 0) scale(1);
  }

  21.155%,
  100% {
    z-index: 0;
    border-color: var(--site-line);
    transform: translate(0, 0) scale(1);
  }
}

@keyframes service-art-web-pointer-action {
  0% {
    top: 44%;
    right: 27%;
    transform: rotate(-8deg) scale(1);
  }

  31% {
    top: 44%;
    right: 27%;
    transform: rotate(-8deg) scale(1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  33.5% {
    top: 28%;
    right: 75%;
    transform: rotate(-8deg) scale(1);
    animation-timing-function: ease-in;
  }

  35% {
    top: 28%;
    right: 75%;
    transform: rotate(-8deg) scale(0.76);
    animation-timing-function: ease-out;
  }

  35.75% {
    top: 28%;
    right: 75%;
    transform: rotate(-8deg) scale(1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  38.25%,
  100% {
    top: 44%;
    right: 27%;
    transform: rotate(-8deg) scale(1);
  }
}

@keyframes service-art-web-pointer-idle {
  0% {
    transform: translate(0.65rem, -0.55rem);
  }

  10.333% {
    transform: translate(0, 0);
  }

  20.667% {
    transform: translate(0.65rem, -0.55rem);
  }

  31%,
  38.25% {
    transform: translate(0, 0);
  }

  47.071% {
    transform: translate(0.65rem, -0.55rem);
  }

  55.893% {
    transform: translate(0, 0);
  }

  64.714% {
    transform: translate(0.65rem, -0.55rem);
  }

  73.536% {
    transform: translate(0, 0);
  }

  82.357% {
    transform: translate(0.65rem, -0.55rem);
  }

  91.179% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0.65rem, -0.55rem);
  }
}

@keyframes service-art-web-drawer-layout {
  0% {
    grid-template-columns: 18% 1fr;
  }

  35% {
    grid-template-columns: 18% 1fr;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }

  40.5% {
    grid-template-columns: 0% 1fr;
  }

  60.5% {
    grid-template-columns: 0% 1fr;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }

  66%,
  100% {
    grid-template-columns: 18% 1fr;
  }
}

@keyframes service-art-web-drawer-content {
  0% {
    opacity: 1;
  }

  35% {
    opacity: 1;
    animation-timing-function: ease-in;
  }

  40.5% {
    opacity: 0;
  }

  60.5% {
    opacity: 0;
    animation-timing-function: ease-out;
  }

  66%,
  100% {
    opacity: 1;
  }
}

@keyframes service-art-web-copy-line-one {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  10.101% {
    opacity: 0;
    transform: scaleX(0);
    animation-timing-function: ease-in;
  }

  16.667% {
    opacity: 1;
    transform: scaleX(1);
  }

  93.434% {
    opacity: 1;
    transform: scaleX(1);
    animation-timing-function: ease-out;
  }

  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes service-art-web-copy-line-two {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  16.667% {
    opacity: 0;
    transform: scaleX(0);
    animation-timing-function: ease-in;
  }

  23.232% {
    opacity: 1;
    transform: scaleX(1);
  }

  86.869% {
    opacity: 1;
    transform: scaleX(1);
    animation-timing-function: ease-out;
  }

  93.434%,
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes service-art-web-copy-line-three {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  23.232% {
    opacity: 0;
    transform: scaleX(0);
    animation-timing-function: ease-in;
  }

  29.798% {
    opacity: 1;
    transform: scaleX(1);
  }

  80.303% {
    opacity: 1;
    transform: scaleX(1);
    animation-timing-function: ease-out;
  }

  86.869%,
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes service-art-web-panel-focus {
  0%,
  28% {
    border-color: var(--art-accent);
    background: var(--site-accent-soft);
    box-shadow: inset 0 0 0 0.0625rem color-mix(in srgb, var(--art-accent) 35%, transparent);
    transform: translateY(-0.125rem);
  }

  33.333%,
  95% {
    border-color: var(--site-line-strong);
    background: var(--site-soft);
    box-shadow: none;
    transform: translateY(0);
  }

  100% {
    border-color: var(--art-accent);
    background: var(--site-accent-soft);
    box-shadow: inset 0 0 0 0.0625rem color-mix(in srgb, var(--art-accent) 35%, transparent);
    transform: translateY(-0.125rem);
  }
}

@keyframes service-art-reveal {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes service-art-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.45rem); }
}

@keyframes service-art-rotate {
  to { transform: rotate(360deg); }
}

@keyframes service-art-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes service-art-pointer {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(0.65rem, -0.55rem) rotate(-8deg); }
}

@keyframes service-art-signal {
  0%, 100% { opacity: 0.35; transform: scaleX(0.28); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes service-art-packet {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) translate(0, 0); }
  50% { opacity: 1; transform: rotate(45deg) translate(0.35rem, -0.35rem); }
}

@keyframes service-art-data-flow {
  0%, 100% { opacity: 0.25; transform: translateX(-0.3rem); }
  50% { opacity: 1; transform: translateX(0.3rem); }
}

@keyframes service-art-module-breathe {
  0%, 100% { border-color: var(--site-line-strong); background: var(--site-surface); }
  50% { border-color: var(--art-accent); background: color-mix(in srgb, var(--art-accent) 12%, var(--site-surface)); }
}

@keyframes service-art-scan {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(7.5rem); }
}

@keyframes service-art-bars {
  0%, 100% { transform: scaleY(0.55); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
}

.service-hero__price {
  position: relative;
  z-index: 1;
  display: grid;
  width: 84%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.4rem 1rem;
  box-sizing: border-box;
  margin: var(--service-hero-price-gap) auto 0;
  border: 0.0625rem solid var(--site-line-strong);
  border-radius: 0.25rem;
  background: var(--site-accent-soft);
  padding: 1rem;
  animation: service-hero-price-drop 1.8s linear 1s both;
  will-change: transform;
}

.service-hero__chain {
  position: absolute;
  bottom: 100%;
  display: flex;
  width: 0.75rem;
  height: var(--service-hero-price-gap);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: color-mix(in srgb, var(--site-muted) 72%, var(--site-line-strong));
  filter: drop-shadow(0 0.0625rem 0 color-mix(in srgb, var(--site-bg) 60%, transparent));
  pointer-events: none;
}

.service-hero__chain--left {
  left: 1.35rem;
}

.service-hero__chain--right {
  right: 1.35rem;
}

.service-hero__chain > span {
  display: block;
  width: 0.3rem;
  height: 0.42rem;
  flex: 0 0 auto;
  box-sizing: border-box;
  border: 0.0625rem solid currentColor;
  border-radius: 50%;
  transform: rotate(26deg);
}

.service-hero__chain > span:nth-child(even) {
  transform: rotate(-26deg);
}

@keyframes service-hero-price-drop {
  0% {
    transform: translateY(calc(-100% - var(--service-hero-price-gap)));
    animation-timing-function: cubic-bezier(0.45, 0, 0.82, 0.42);
  }

  45% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.12, 0.62, 0.32, 1);
  }

  59% {
    transform: translateY(-1.125rem);
    animation-timing-function: cubic-bezier(0.58, 0, 0.88, 0.42);
  }

  70% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.12, 0.62, 0.32, 1);
  }

  79% {
    transform: translateY(-0.5625rem);
    animation-timing-function: cubic-bezier(0.58, 0, 0.88, 0.42);
  }

  87% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.12, 0.62, 0.32, 1);
  }

  93% {
    transform: translateY(-0.1875rem);
    animation-timing-function: cubic-bezier(0.58, 0, 0.88, 0.42);
  }

  98%,
  100% {
    transform: translateY(0);
  }
}

.service-hero__price-label {
  color: var(--site-muted);
  font-size: 0.6875rem;
}

.service-hero__price strong {
  font-size: 1rem;
  font-weight: 650;
}

.service-hero__price small {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 0.45rem;
  color: var(--site-muted);
  font-size: 0.6875rem;
}

.service-overview__layout,
.service-use-cases__layout,
.service-pricing__layout,
.service-package__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 6rem;
}

.service-overview__copy {
  border-top: 0.0625rem solid var(--site-line-strong);
}

.service-overview__copy p {
  border-bottom: 0.0625rem solid var(--site-line);
  padding: 1.4rem 0;
  color: var(--site-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.service-overview__media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4.5rem;
}

.service-overview__media-item .media-placeholder__caption {
  padding: clamp(0.9rem, 1.6vw, 1.5rem);
}

.service-overview__media-item .media-placeholder__icon {
  width: 2.75rem;
  height: 2.75rem;
}

.service-overview__media-item .media-placeholder__label {
  margin-top: 0.7rem;
  font-size: 0.625rem;
}

.service-overview__media-item .media-placeholder__caption strong {
  margin-top: 0.3rem;
  font-size: 1.125rem;
}

.service-overview__media-item .media-placeholder__caption p {
  display: -webkit-box;
  margin-top: 0.75rem;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.service-use-cases {
  background: var(--site-surface);
}

.service-use-cases__intro {
  position: sticky;
  top: 8.5rem;
}

.service-use-cases__intro h2 {
  width: auto;
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 3.5rem;
  font-weight: 650;
  line-height: 1.08;
  text-align: left;
}

.service-use-cases__list {
  border-top: 0.0625rem solid var(--site-line-strong);
}

.service-use-cases__list article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 0.0625rem solid var(--site-line);
  padding: 1.75rem 0;
}

.service-use-cases__number {
  padding-top: 0.55rem;
  color: var(--site-accent);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.service-use-cases__list h3 {
  width: auto;
  margin: 0;
  transform-origin: left center;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 2.9rem;
  font-weight: 650;
  line-height: 1.1;
  text-align: left;
}

.service-use-cases__description {
  overflow: hidden;
}

.service-use-cases__description p {
  max-width: 47rem;
  margin-top: 1.2rem;
  color: var(--site-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.service-experience {
  overflow: clip;
}

.service-experience .site-section-heading {
  max-width: 56rem;
}

.service-experience__list {
  margin-top: 4.5rem;
  border-top: 0.0625rem solid var(--site-line-strong);
}

.service-experience__list article {
  display: grid;
  grid-template-columns: 3rem minmax(15rem, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  border-bottom: 0.0625rem solid var(--site-line);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.service-experience__number {
  align-self: start;
  padding-top: 0.45rem;
  color: var(--site-accent);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
}

.service-experience__content h3 {
  width: auto;
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 650;
  line-height: 1.12;
  text-align: left;
}

.service-experience__content p {
  max-width: 39rem;
  margin-top: 1.25rem;
  color: var(--site-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.service-experience__list article.is-text-only .service-experience__content {
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: minmax(15rem, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4.5rem);
}

.service-experience__list article.is-text-only .service-experience__content p {
  margin-top: 0.25rem;
}

.service-experience__media {
  display: grid;
  min-width: 0;
  perspective: 62.5rem;
}

.service-experience__media.has-multiple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-experience__image {
  --experience-shift-x: -0.45rem;
  --experience-tilt-y: 14deg;
  --experience-tilt-x: 5deg;
  position: relative;
  z-index: 1;
  transform: perspective(62.5rem) rotateX(0deg) rotateY(0deg) translate3d(0, 0, 0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.22, 0.72, 0.24, 1), filter 0.5s ease;
  will-change: transform;
}

.service-experience__image--right {
  --experience-shift-x: 0.45rem;
  --experience-tilt-y: -14deg;
}

.service-experience__image .media-placeholder__frame {
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1.75rem color-mix(in srgb, var(--site-ink) 9%, transparent);
  transition: box-shadow 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-experience__image:is(:hover, :focus-within) {
    z-index: 2;
    filter: saturate(1.04);
    transform: translate3d(var(--experience-shift-x), -0.45rem, 0) perspective(62.5rem)
      rotateY(var(--experience-tilt-y)) rotateX(var(--experience-tilt-x)) scale(1.015);
  }

  .service-experience__image:is(:hover, :focus-within) .media-placeholder__frame {
    box-shadow: 0 2.1rem 4.5rem -2rem color-mix(in srgb, var(--site-ink) 32%, transparent),
      0 1rem 2.5rem -1.6rem color-mix(in srgb, var(--site-accent) 22%, transparent);
  }
}

.service-pricing {
  color: var(--site-contrast-text);
}

.service-pricing__layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.62fr);
}

.service-pricing__title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-pricing__layout > div:first-child > p:last-child {
  max-width: 45rem;
  margin-top: 1.5rem;
  color: var(--site-contrast-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-pricing__amount {
  border-left: 0.0625rem solid #46554f;
  padding-left: 2.5rem;
}

.service-pricing__amount > span,
.service-pricing__amount > strong,
.service-pricing__amount > small {
  display: block;
}

.service-pricing__amount > span {
  color: var(--site-contrast-muted);
  font-size: 0.75rem;
}

.service-pricing__amount > strong {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 650;
  line-height: 1.15;
}

.service-pricing__amount > small {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.85rem 0 1.75rem;
  color: var(--site-contrast-muted);
  font-size: 0.75rem;
}

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

.service-package__layout > div:last-child {
  border-left: 0.0625rem solid var(--site-line);
  padding-left: 4rem;
}

.service-package-list h2 {
  width: auto;
  margin: 0 0 2rem;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 2rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: left;
}

.service-package-list ul {
  list-style: none;
}

.service-package-list li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.7rem;
  border-top: 0.0625rem solid var(--site-line);
  padding: 0.9rem 0;
  color: var(--site-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.service-package-list li:last-child {
  border-bottom: 0.0625rem solid var(--site-line);
}

.service-package-list li svg {
  margin-top: 0.15rem;
  color: var(--site-accent);
}

.service-package__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  color: var(--site-ink) !important;
  font-size: 0.8125rem;
  font-weight: 650;
}

.service-faq__layout > div:first-child h2 {
  margin-top: 0;
}

.service-cta {
  border-top: 0.0625rem solid var(--site-line);
  background: var(--site-surface);
}

/* Information pages */
.info-hero {
  border-bottom: 0.0625rem solid var(--site-line);
  padding: 11rem 0 6rem;
}

.info-hero h1 {
  max-width: 58rem;
  font-size: 4rem;
}

.info-hero > .site-shell > p:not(.site-eyebrow) {
  max-width: 49rem;
  margin-top: 1.75rem;
  color: var(--site-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.info-hero small {
  display: block;
  margin-top: 2rem;
  color: var(--site-subtle);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
}

.info-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: start;
  column-gap: clamp(3rem, 6vw, 6rem);
}

.info-hero__layout > :not(.info-hero__media) {
  grid-column: 1;
}

.info-hero__media {
  grid-column: 2;
  grid-row: 1 / 6;
  align-self: center;
}

.info-content__inner {
  max-width: 68rem;
}

.info-content article {
  display: grid;
  grid-template-columns: 4rem minmax(12rem, 0.5fr) minmax(0, 1fr);
  gap: 2rem;
  border-bottom: 0.0625rem solid var(--site-line);
  padding: 2.5rem 0;
}

.info-content article:first-child {
  padding-top: 0;
}

.info-content article > span {
  color: var(--site-accent);
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
}

.info-content article h2 {
  width: auto;
  margin: 0;
  color: var(--site-ink);
  font-family: Lexend, sans-serif;
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
}

.info-content article div {
  display: grid;
  gap: 0.9rem;
}

.info-content article p {
  color: var(--site-muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.info-content .site-button {
  margin-top: 2.5rem;
}

/* Footer */
.site-footer {
  scroll-margin-top: 0;
  overflow: hidden;
  background: #0c1210;
  color: #f1f5f2;
  padding: 7.5rem 0 2rem;
}

.site-footer__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(32rem, 1.28fr);
  align-items: start;
  gap: 6rem;
}

.site-footer .site-eyebrow {
  color: #72c9c8;
}

.site-footer__intro {
  position: sticky;
  top: 8rem;
}

.site-footer__intro h2 {
  width: auto;
  margin: 0;
  color: #f1f5f2;
  font-family: Lexend, sans-serif;
  font-size: 4rem;
  font-weight: 650;
  line-height: 1.05;
  text-align: left;
}

.site-footer__lead {
  margin-top: 1.75rem;
  color: #f1f5f2;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.site-footer__copy {
  margin-top: 0.8rem;
  color: #aab8b1;
  font-size: 0.875rem;
  line-height: 1.7;
}

.site-footer__direct {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 0.0625rem solid #33413b;
}

.site-footer__direct a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 0.0625rem solid #33413b;
  color: #f1f5f2;
  padding: 1rem 0;
  font-size: 0.8125rem;
}

.site-footer__direct a:hover {
  color: #72c9c8;
}

.site-contact-form {
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 2rem 0 0;
}

html[data-theme="light"] .site-footer .site-contact-form,
html[data-theme="dark"] .site-footer .site-contact-form {
  border: 0 !important;
  background: transparent;
  box-shadow: none;
}

.site-footer__form-wrap {
  min-width: 0;
}

.site-contact-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.site-contact-form__fields .site-field:last-child {
  grid-column: 1 / -1;
}

.site-field {
  position: relative;
  display: grid;
  gap: 0.35rem;
}

.site-contact-form label,
.site-contact-form legend {
  color: #aab8b1;
  font-family: LexendExa, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

html[data-theme="light"] .site-footer .site-contact-form label,
html[data-theme="light"] .site-footer .site-contact-form legend,
html[data-theme="dark"] .site-footer .site-contact-form label,
html[data-theme="dark"] .site-footer .site-contact-form legend {
  color: #aab8b1;
}

.site-contact-form .required {
  color: #72c9c8;
  margin-right: 0.2rem;
}

.site-contact-form input[type="text"],
.site-contact-form input[type="email"],
.site-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 0.0625rem solid #46564f;
  border-radius: 0;
  background: transparent;
  color: #f1f5f2;
  padding: 0.65rem 0;
  font-family: Lexend, sans-serif;
  font-size: 0.9375rem;
  transition: border-color 160ms ease, background-color 160ms ease;
  user-select: text;
}

html[data-theme="light"] .site-footer .site-contact-form input[type="text"],
html[data-theme="light"] .site-footer .site-contact-form input[type="email"],
html[data-theme="light"] .site-footer .site-contact-form textarea,
html[data-theme="dark"] .site-footer .site-contact-form input[type="text"],
html[data-theme="dark"] .site-footer .site-contact-form input[type="email"],
html[data-theme="dark"] .site-footer .site-contact-form textarea {
  border-color: #46564f;
  background: transparent;
  color: #f1f5f2;
}

.site-contact-form input[type="text"],
.site-contact-form input[type="email"] {
  height: 3.25rem;
}

.site-contact-form textarea {
  min-height: 7.5rem;
  border: 0.0625rem solid #46564f;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.018);
  padding: 0.9rem 1rem;
  resize: vertical;
  line-height: 1.6;
}

.site-contact-form input:focus,
.site-contact-form textarea:focus {
  border-color: #72c9c8;
  background: rgba(114, 201, 200, 0.035);
}

html[data-theme] .site-footer .site-contact-form input[type="text"]:focus,
html[data-theme] .site-footer .site-contact-form input[type="email"]:focus {
  border-bottom-color: #72c9c8 !important;
  background: transparent;
  box-shadow: 0 0.125rem 0 -0.0625rem #72c9c8;
}

html[data-theme] .site-footer .site-contact-form textarea:focus {
  border-color: #72c9c8 !important;
  background: rgba(114, 201, 200, 0.035);
}

html[data-theme] .site-footer .site-contact-form input[type="text"]:focus-visible,
html[data-theme] .site-footer .site-contact-form input[type="email"]:focus-visible,
html[data-theme] .site-footer .site-contact-form textarea:focus-visible {
  outline: 0 !important;
  outline-offset: 0 !important;
}

.site-contact-form__services,
.site-contact-form .client-problem {
  margin-top: 2.25rem;
  border: 0;
  padding: 0;
}

.site-contact-form__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.125rem 2rem;
  margin-top: 0.65rem;
}

.site-check-option {
  position: relative;
}

.site-check-option input {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  opacity: 0;
}

.site-check-option label {
  position: relative;
  display: flex;
  min-height: 2rem;
  align-items: center;
  box-sizing: border-box;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  padding: 0.25rem 0 0.25rem 1.75rem;
  color: #bec9c3;
  font-family: Lexend, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-check-option label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  border: 0.0625rem solid #617069;
  background: transparent;
  content: "";
  transform: translateY(-50%);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.site-check-option label::after {
  position: absolute;
  top: 50%;
  left: 0.35rem;
  width: 0.25rem;
  height: 0.5rem;
  border: solid #0c1210;
  border-width: 0 0.125rem 0.125rem 0;
  content: "";
  opacity: 0;
  transform: translateY(-65%) rotate(45deg) scale(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-check-option input:checked + label {
  border-color: #72c9c8;
  color: #eef6f3;
}

.site-check-option input:checked + label::before {
  border-color: #72c9c8;
  background: #72c9c8;
}

.site-check-option input:checked + label::after {
  opacity: 1;
  transform: translateY(-65%) rotate(45deg) scale(1);
}

html[data-theme="light"] .site-footer .site-check-option label,
html[data-theme="dark"] .site-footer .site-check-option label {
  border-color: #33413b;
  background: transparent;
  color: #bec9c3;
}

html[data-theme="light"] .site-footer .site-check-option input:checked + label,
html[data-theme="dark"] .site-footer .site-check-option input:checked + label {
  border-color: #72c9c8;
  background: transparent;
  color: #eef6f3;
}

html[data-theme="light"] .site-footer .site-contact-form__options .site-check-option:is(:hover, :focus-within) label,
html[data-theme="dark"] .site-footer .site-contact-form__options .site-check-option:is(:hover, :focus-within) label {
  color: #72c9c8;
}

html[data-theme="light"] .site-footer .site-contact-form__options .site-check-option:is(:hover, :focus-within) label::before,
html[data-theme="dark"] .site-footer .site-contact-form__options .site-check-option:is(:hover, :focus-within) label::before {
  border-color: #72c9c8;
}

.site-check-option input:focus-visible + label {
  outline: 0.125rem solid #72c9c8 !important;
  outline-offset: 0.125rem !important;
}

.site-contact-form__submit {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 1.5rem;
  border: 0.0625rem solid #72c9c8;
  border-radius: 0.25rem;
  background: #72c9c8;
  color: #0c1210;
  padding-inline: 1.35rem;
  font-family: Lexend, sans-serif;
  font-size: 0.875rem;
  font-weight: 650;
  transition: background-color 160ms ease, transform 160ms ease;
}

.site-contact-form__submit:hover {
  background: #8bd3d1;
  transform: translateY(-0.125rem);
}

.site-contact-form__submit svg {
  transition: transform 160ms ease;
}

.site-contact-form__submit:hover svg {
  transform: translate(0.15rem, -0.15rem);
}

.site-contact-form__captcha {
  display: flex;
  min-height: 4.0625rem;
  align-items: center;
  margin-top: 1.25rem;
  overflow: hidden;
}

.site-contact-form .form-captcha-msg,
.site-contact-form .form-msg {
  margin-top: 0.75rem;
  color: #aab8b1;
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-contact-form .formSuccess {
  color: #7fd5a2;
}

.site-contact-form .formError {
  color: #f4a494;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  margin-top: 5rem;
  border-top: 0.0625rem solid #33413b;
  padding-top: 2rem;
}

.site-footer__brand img {
  display: block;
  width: 8.5rem;
  filter: none !important;
}

.footer-subpage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
}

.footer-subpage-links a,
.footer-subpage-links button {
  border: 0;
  background: transparent;
  color: #aab8b1;
  font-size: 0.6875rem;
  line-height: inherit;
  padding: 0;
  cursor: pointer;
}

.footer-subpage-links a:hover,
.footer-subpage-links button:hover {
  color: #72c9c8;
}

.site-footer__company {
  display: flex;
  gap: 2.5rem;
  color: #82918a;
  font-size: 0.625rem;
  line-height: 1.75;
}

/* Configurator refinement */
.configurator-page {
  padding-top: 5.5rem;
}

#konfigurator {
  background: var(--site-bg) !important;
  color: var(--site-ink);
  padding-top: 5rem !important;
}

#konfigurator > div {
  max-width: 76rem !important;
  background: transparent !important;
}

#konfigurator > div > div {
  padding-inline: 2rem !important;
}

#konfigurator h2 {
  color: var(--site-ink) !important;
  font-size: 3.5rem !important;
  font-weight: 650 !important;
  line-height: 1.08 !important;
}

#konfigurator h3,
#konfigurator [class*="text-[36px]"] {
  color: var(--site-ink) !important;
}

#konfigurator [class*="bg-[#161616]"],
#konfigurator [class*="bg-[rgba(22,22,22"],
#konfigurator [class*="bg-[rgba(30,30,30"] {
  background: var(--site-surface) !important;
}

#konfigurator [class*="bg-[#313131]"] {
  background: var(--site-soft) !important;
}

#konfigurator [class*="border-[#313131]"],
#konfigurator [class*="border-[#5a5a5a]"],
#konfigurator [class*="border-[#a0a0a0]"] {
  border-color: var(--site-line) !important;
}

#konfigurator [role="button"][aria-pressed] {
  border-color: var(--site-line) !important;
  border-radius: 0.375rem !important;
  background: var(--site-surface) !important;
  box-shadow: none !important;
}

#konfigurator [role="button"][aria-pressed="true"] {
  border-color: var(--site-accent) !important;
  background: var(--site-accent-soft) !important;
}

#konfigurator aside {
  border-color: var(--site-accent) !important;
  border-radius: 0.375rem !important;
  background: var(--site-surface) !important;
  box-shadow: none !important;
}

#konfigurator button {
  border-radius: 0.25rem !important;
}

#konfigurator [class*="rounded-[14px]"],
#konfigurator [class*="rounded-[20px]"],
#konfigurator [class*="rounded-2xl"] {
  border-radius: 0.375rem !important;
}

#konfigurator [class*="bg-gradient-to"] {
  background: var(--site-primary-gradient) !important;
}

#konfigurator [class*="bg-clip-text"] {
  background: var(--site-primary-gradient) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
}

#konfigurator button[class*="bg-gradient"],
#konfigurator button[class*="bg-gradient"] * {
  color: var(--site-button-text) !important;
}

#konfigurator span[class*="bg-gradient"][class*="text-white"] {
  color: var(--site-button-text) !important;
}

#konfigurator [class*="text-[rgba(255,255,255"] {
  color: var(--site-muted) !important;
}

#konfigurator input,
#konfigurator textarea,
#konfigurator select {
  border-color: var(--site-line) !important;
  border-radius: 0.25rem !important;
  background: var(--site-surface) !important;
  color: var(--site-ink) !important;
  user-select: text;
}

#konfigurator [class*="shadow-"] {
  box-shadow: none !important;
}

/* Responsive */
@media (max-width: 1120px) {
  .site-header {
    backdrop-filter: none;
  }

  .site-header__nav,
  .site-header__actions {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__mobile-actions {
    display: flex;
  }

  .site-mobile-menu {
    position: fixed;
    top: 5.5rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    border-top: 0.0625rem solid var(--site-line);
    background: var(--site-bg);
  }

  .site-mobile-menu__inner {
    display: flex;
    min-height: calc(100% - 4rem);
    flex-direction: column;
    justify-content: space-between;
    padding-block: 2rem;
  }

  .site-mobile-menu nav {
    display: grid;
  }

  .site-mobile-menu nav > a,
  .site-mobile-services > button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 0.0625rem solid var(--site-line);
    background: transparent;
    color: var(--site-ink) !important;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
  }

  .site-mobile-services__list {
    overflow: hidden;
    border-bottom: 0.0625rem solid var(--site-line);
  }

  .site-mobile-services__list a {
    display: block;
    border-bottom: 0.0625rem solid var(--site-line);
    color: var(--site-ink) !important;
    padding: 0.9rem 0.75rem;
  }

  .site-mobile-services__list a:last-child {
    border-bottom: 0;
  }

  .site-mobile-services__list span,
  .site-mobile-services__list small {
    display: block;
  }

  .site-mobile-services__list span {
    font-size: 0.875rem;
    font-weight: 600;
  }

  .site-mobile-services__list small {
    margin-top: 0.35rem;
    color: var(--site-muted);
    font-size: 0.6875rem;
    line-height: 1.5;
  }

  .site-mobile-menu__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .site-language.is-mobile .site-language__menu {
    right: 0;
    bottom: calc(100% + 0.5rem);
    top: auto;
  }

  .home-hero__grid,
  .service-hero__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .home-hero h1 {
    font-size: 3.75rem;
  }

  .home-trust__layout,
  .home-pricing__layout,
  .home-faq__layout,
  .service-overview__layout,
  .service-use-cases__layout,
  .service-pricing__layout,
  .service-package__layout,
  .service-faq__layout,
  .service-cta__layout,
  .site-footer__layout {
    gap: 3.5rem;
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 2.5rem, 47rem);
  }

  .pricing-page-hero {
    padding: 8.5rem 0 5.5rem;
  }

  .pricing-page-hero__layout,
  .pricing-catalog__heading,
  .pricing-flexibility__layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .pricing-page-hero h1 {
    font-size: 3.75rem;
  }

  .pricing-list__trigger {
    gap: 1rem;
  }

  .pricing-list__panel-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-inline: 5.75rem 3.75rem;
  }

  .home-hero__grid {
    width: min(100% - 2.5rem, 47rem);
  }

  .home-hero__content {
    margin-left: 0;
  }

  .site-section {
    padding-block: 5.5rem;
  }

  .site-section-heading h2,
  .home-pricing h2,
  .home-faq h2,
  .service-overview h2,
  .service-pricing h2,
  .service-faq h2,
  .service-cta h2,
  .workflow-intro h2,
  .service-use-cases__intro h2 {
    font-size: 2.75rem;
  }

  .home-hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .home-hero__grid,
  .service-hero__layout,
  .home-trust__layout,
  .home-pricing__layout,
  .home-faq__layout,
  .service-overview__layout,
  .service-use-cases__layout,
  .service-pricing__layout,
  .service-package__layout,
  .service-faq__layout,
  .service-cta__layout,
  .site-footer__layout {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    padding-bottom: 3.5rem;
  }

  .home-hero h1,
  .service-hero h1,
  .info-hero h1,
  .site-footer__intro h2 {
    font-size: 3.5rem;
  }

  .home-spline {
    inset: -3rem -55% -4rem -40%;
    max-width: none;
    justify-self: stretch;
    opacity: 0.24;
    transform: none;
  }

  .home-spline__scene {
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }

  html[data-theme="dark"] .home-spline {
    opacity: 0.18;
  }

  .home-trust__intro,
  .home-faq__intro,
  .service-use-cases__intro,
  .service-faq__layout > div:first-child,
  .site-footer__intro {
    position: static;
  }

  .service-experience__list article {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1.5rem;
  }

  .service-experience__list article.has-media .service-experience__content,
  .service-experience__list article.is-text-only .service-experience__content {
    display: block;
    grid-column: 2;
  }

  .service-experience__list article.is-text-only .service-experience__content p {
    margin-top: 1.25rem;
  }

  .service-experience__media {
    grid-column: 1 / -1;
    margin: 1rem 0 0 4rem;
  }

  .info-hero__layout {
    grid-template-columns: 1fr;
  }

  .info-hero__layout > :not(.info-hero__media),
  .info-hero__media {
    grid-column: 1;
  }

  .info-hero__media {
    grid-row: auto;
    width: min(100%, 40rem);
    margin-top: 3rem;
  }

  .home-services__list {
    grid-template-columns: 1fr;
  }

  .home-services__list > div:nth-child(odd) {
    border-right: 0;
  }

  .home-services__list > div a,
  .home-services__list > div:nth-child(odd) a {
    min-height: 0;
    padding: 1.25rem 0;
  }

  .horizontal-workflow {
    height: auto;
  }

  .horizontal-workflow__sticky {
    position: static;
    display: block;
    height: auto;
    overflow: visible;
    padding-block: 5.5rem;
  }

  .horizontal-workflow__header {
    display: block;
  }

  .workflow-progress,
  .horizontal-workflow__viewport,
  .horizontal-workflow__backdrop {
    display: none;
  }

  .horizontal-workflow__mobile {
    display: block;
    margin-top: 3rem;
  }

  .workflow-mobile-list {
    border-top: 0.0625rem solid var(--site-line-strong);
  }

  .workflow-mobile-list .workflow-step {
    width: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 0.0625rem solid var(--site-line);
    border-left: 0;
    padding: 1.5rem 0;
  }

  .workflow-mobile-list .workflow-step__meta {
    margin-bottom: 1.5rem;
  }

  .horizontal-workflow--showcase .workflow-mobile-list {
    display: grid;
    gap: 1rem;
    border-top: 0;
  }

  .horizontal-workflow--showcase .workflow-mobile-list .workflow-step {
    min-height: 13rem;
    border: 0.0625rem solid var(--site-line);
    border-radius: 0.5rem;
    padding: 1.25rem;
  }

  .workflow-static-title {
    display: none;
  }

  .service-hero {
    padding-top: 7rem;
  }

  .service-hero__layout {
    margin-top: 3rem;
  }

  .service-hero__visual {
    justify-self: center;
  }

  .service-pricing__amount,
  .service-package__layout > div:last-child {
    border-top: 0.0625rem solid currentColor;
    border-left: 0;
    padding-top: 2rem;
    padding-left: 0;
  }

  .service-package__layout > div:last-child {
    border-color: var(--site-line);
  }

  .info-content article {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .info-content article > div {
    grid-column: 2;
  }

  .site-footer__layout {
    grid-template-columns: 1fr;
  }

  .site-footer__intro {
    max-width: 39rem;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__company {
    flex-wrap: wrap;
  }

  #konfigurator > div > div {
    padding-inline: 1.25rem !important;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: calc(100% - 2rem);
  }

  .pricing-page-hero {
    padding: 7.5rem 0 4.5rem;
  }

  .pricing-page-hero h1 {
    font-size: 2.75rem;
  }

  .pricing-page-hero__intro {
    font-size: 1rem;
  }

  .pricing-page-hero__actions,
  .pricing-flexibility__details > div {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-page-hero__actions .site-button,
  .pricing-flexibility__details .site-button {
    width: 100%;
  }

  .pricing-page-hero__facts > div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding-left: 3.5rem;
  }

  .pricing-catalog__heading h2,
  .pricing-flexibility h2 {
    font-size: 2.25rem;
  }

  .pricing-list {
    margin-top: 3rem;
  }

  .pricing-list__trigger {
    grid-template-columns: 2rem minmax(0, 1fr) 2.5rem;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }

  .pricing-list__index {
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: start;
    padding-top: 0.8rem;
  }

  .pricing-list__service {
    grid-row: 1;
    grid-column: 2;
  }

  .pricing-list__price {
    grid-row: 2;
    grid-column: 2;
    margin-left: 3.25rem;
  }

  .pricing-list__toggle {
    width: 2.5rem;
    height: 2.5rem;
    grid-row: 1 / 3;
    grid-column: 3;
  }

  .pricing-list__panel-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-inline: 2.75rem 0;
    padding: 1.5rem 0 1.75rem;
  }

  .pricing-list__scope ul {
    grid-template-columns: 1fr;
  }

  .pricing-list__panel-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-list__panel-actions .pricing-list__link {
    width: 100%;
    box-sizing: border-box;
  }

  .pricing-list__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .service-overview__media {
    gap: 0.5rem;
  }

  .service-hero__price {
    width: 92%;
  }

  .service-overview__media-item .media-placeholder__caption {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.45rem;
    text-align: center;
  }

  .service-overview__media-item .media-placeholder__icon {
    width: 2rem;
    height: 2rem;
    grid-row: auto;
  }

  .service-overview__media-item .media-placeholder__label,
  .service-overview__media-item .media-placeholder__caption strong,
  .service-overview__media-item .media-placeholder__caption small,
  .service-overview__media-item .media-placeholder__caption p {
    display: none;
  }

  .home-hero-chat-widget {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .home-hero-chat {
    width: calc(100vw - 1.5rem);
    height: min(31rem, calc(100svh - 1.5rem));
  }

  .home-hero-chat__launcher {
    width: 3.5rem;
    height: 3.5rem;
  }

  .media-placeholder__caption {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    align-content: center;
    justify-items: start;
    column-gap: 0.8rem;
    padding: 1rem;
    text-align: left;
  }

  .media-placeholder__icon {
    width: 2.5rem;
    height: 2.5rem;
    grid-row: 1 / 4;
  }

  .media-placeholder__label,
  .media-placeholder__caption strong,
  .media-placeholder__caption small,
  .media-placeholder__caption p {
    grid-column: 2;
  }

  .media-placeholder__label {
    margin-top: 0;
    font-size: 0.5625rem;
  }

  .media-placeholder__caption strong {
    margin-top: 0.2rem;
    font-size: 1rem;
  }

  .media-placeholder__caption small {
    display: none;
  }

  .media-placeholder__caption p {
    display: -webkit-box;
    margin-top: 0.4rem;
    overflow: hidden;
    font-size: 0.6875rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .site-header__inner {
    min-height: 4.75rem;
  }

  .site-header__brand img {
    width: 7.4rem;
  }

  .site-mobile-menu {
    top: 4.75rem;
  }

  .site-section {
    padding-block: 4.5rem;
  }

  .site-section-heading h2,
  .home-pricing h2,
  .home-faq h2,
  .service-overview h2,
  .service-pricing h2,
  .service-faq h2,
  .service-cta h2,
  .workflow-intro h2,
  .service-use-cases__intro h2 {
    font-size: 2.25rem;
  }

  .home-hero {
    padding-top: 6.5rem;
  }

  .home-hero h1,
  .service-hero h1,
  .info-hero h1,
  .site-footer__intro h2 {
    font-size: 2.75rem;
  }

  .home-hero__description,
  .service-hero__intro {
    font-size: 1rem;
  }

  .home-hero__actions,
  .service-hero__actions,
  .home-pricing__actions,
  .service-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__actions .site-button,
  .service-hero__actions .site-button,
  .home-pricing__actions .site-button,
  .service-cta__actions .site-button {
    width: 100%;
  }

  .home-spline {
    height: auto;
    min-height: 0;
  }

  .home-trust__list article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
  }

  .home-trust__list article > svg {
    display: none;
  }

  .home-services__list a {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .home-services__copy strong {
    font-size: 1.25rem;
  }

  .site-faq-list h3 {
    font-size: 1.25rem;
  }

  .site-faq-list h3 button {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.6rem;
  }

  .site-faq-list__answer p {
    margin-left: 2.6rem;
    margin-right: 0;
  }

  .service-hero {
    min-height: auto;
    padding: 6rem 0 4.5rem;
  }

  .service-use-cases__list article {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .service-use-cases__list h3 {
    font-size: 2rem;
  }

  .service-experience__list {
    margin-top: 3rem;
  }

  .service-experience__list article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
    padding-block: 3rem;
  }

  .service-experience__content h3 {
    font-size: 1.75rem;
  }

  .service-experience__media {
    margin-left: 3rem;
  }

  .service-experience__media.has-multiple {
    grid-template-columns: 1fr;
  }

  .service-pricing__amount > strong {
    font-size: 2rem;
  }

  .info-hero {
    padding: 8.5rem 0 4.5rem;
  }

  .info-content article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .info-content article > div {
    grid-column: 1;
  }

  .site-footer {
    padding-top: 5rem;
  }

  .site-contact-form {
    padding: 1.5rem 0 0;
  }

  .site-contact-form__fields,
  .site-contact-form__options {
    grid-template-columns: 1fr;
  }

  .site-contact-form__fields .site-field:last-child {
    grid-column: auto;
  }

  .site-contact-form__submit {
    width: 100%;
  }

  #konfigurator {
    padding-top: 3rem !important;
  }

  #konfigurator h2 {
    width: auto !important;
    font-size: 2.5rem !important;
    line-height: 1.08 !important;
  }

  #konfigurator > div > div {
    padding-inline: 1rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .art-automation__document-route,
  .art-automation__mlp-firings,
  .art-shop__wire {
    display: none;
  }

  .service-art,
  .service-art * {
    animation: none !important;
  }

  .service-hero__price {
    animation: none;
    transform: none;
  }

  .pricing-page-hero__energy {
    display: none;
  }

  .home-hero-chat,
  .home-spline__scene,
  .spline-scene__loader-mark::after {
    animation: none;
  }

  .home-hero-chat__launcher,
  .home-hero-chat__close,
  .cookie-consent,
  .cookie-consent__actions button,
  .site-button,
  .home-services__copy strong,
  .home-spline__scene,
  .site-nav-link::after,
  .site-header__nav > a::after {
    transition: none;
  }
}
