[data-hz-boot="1"] *,
[data-hz-boot="1"] *::before,
[data-hz-boot="1"] *::after {
  transition: none !important;
}

.service-body {
  min-width: 0;
  margin: 0;
  background: var(--background-subtle);
  color: var(--foreground);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

.service-page {
  --service-shell-max: 80rem;

  width: 100%;
  min-height: 100vh;
}

.service-header {
  position: fixed;
  isolation: isolate;
  background: color-mix(in srgb, var(--background) 92%, transparent);
  border-bottom-color: var(--border);
  backdrop-filter: blur(var(--space-4));
  -webkit-backdrop-filter: blur(var(--space-4));
}

.service-header-inner {
  width: 100%;
  max-width: var(--service-shell-max);
  padding-inline: var(--space-6);
}

.service-brand-row,
.service-brand,
.service-header-nav {
  display: flex;
  align-items: center;
}

.service-brand-row {
  min-width: 0;
  gap: var(--space-3);
}

.service-brand {
  flex: 0 0 auto;
  min-width: 0;
}

.service-logo {
  display: block;
  width: auto;
  height: var(--control-icon-m);
}

:root[data-theme="dark"] .service-logo,
:root[data-theme="hc-dark"] .service-logo {
  filter: brightness(0) invert(1);
}

.service-label {
  min-width: 0;
  overflow: hidden;
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-header-nav {
  flex: 0 0 auto;
  gap: var(--space-4);
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
  white-space: nowrap;
}

.service-header-nav a {
  color: var(--muted-foreground);
  text-decoration: none;
}

.service-header-nav a:hover,
.service-header-nav a:focus-visible,
.service-header-nav a[aria-current="page"] {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.service-main {
  width: 100%;
  min-width: 0;
  padding-top: var(--header-height);
}

.service-intro {
  display: grid;
  max-width: 42rem;
  gap: var(--space-2);
  margin: 0 0 var(--space-stack-lg);
}

.service-kicker,
.service-title,
.service-description,
.service-meta {
  margin: 0;
}

.service-kicker {
  color: var(--muted-foreground);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: var(--lh-xs);
}

.service-title.text-display {
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: 0;
}

.service-description {
  color: var(--muted-foreground);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.service-meta {
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
}

@media (max-width: 640px) {
  .service-header-inner {
    padding-inline: var(--space-4);
  }

  .service-header-nav {
    gap: var(--space-3);
    font-size: var(--fs-xs);
  }

  .service-intro {
    margin-bottom: var(--space-6);
  }

  .service-title.text-display {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
  }
}

@media (max-width: 360px) {
  .service-label,
  .logo-divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-page *,
  .service-page *::before,
  .service-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
