/* ============================================================
   /hello — individuals landing (2026-07-12 design handoff)
   Rides the site-wide tokens (tokens.css) + components.css btn
   primitives; everything page-specific is hl-* and scoped
   under .hl. Square corners are deliberate — keep them.
   ============================================================ */

.hl {
  --hl-ink: #0f3b2e;
  --hl-forest: #143a2b;
  --hl-pine: #2f6b4d;
  --hl-mint: #2f9e7e;
  --hl-rust: #a35420;
  --hl-tint1: #e9f3ed;
  --hl-tint2: #cfeadf;
  --hl-text: #1a2b23;
  --hl-text2: #5c6b62;
  --hl-muted: #8a968e;
  --hl-border: #ddd8cb;
  --hl-border-strong: #c4cfc7;
  --hl-surface1: #f4f6f1;
  --hl-surface2: #fbfaf6;
  --hl-saffron: #c28a2c;
  --hl-blue: #3c6a8e;
  --hl-sans: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --hl-monoff: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  font-family: var(--hl-sans);
  color: var(--hl-text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.hl h1,
.hl h2,
.hl h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.hl a:not(.btn) {
  color: inherit;
}
.hl a {
  text-decoration: none;
}
.hl-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.hl-k {
  font-family: var(--hl-monoff);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hl-pine);
}
.hl-k--tint {
  color: var(--hl-tint2);
}
.hl-mono {
  font-family: var(--hl-monoff);
  font-variant-numeric: tabular-nums;
}
.hl-sq {
  border-radius: 0 !important;
}
.hl-h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}
.hl-h2--sm {
  font-size: clamp(24px, 3vw, 32px);
  margin: 8px 0 6px;
}
.hl-h2--inverse {
  color: #fff;
}
.hl-lede {
  color: var(--hl-text2);
  font-size: 16.5px;
  margin: 0 0 30px;
}
.hl-lede--inverse {
  color: #c9d6cd;
}
.hl-f {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-family: var(--hl-sans);
  font-size: 15px;
  color: var(--hl-text);
  background: #fff;
  border: 1.5px solid var(--hl-border-strong);
  border-radius: 0;
  outline: none;
}
.hl-f:focus {
  border-color: var(--hl-ink);
  box-shadow: 0 0 0 3px rgba(47, 107, 77, 0.18);
}

@keyframes hl-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hl-rise {
  animation: hl-rise 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes hl-shimmer {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes hl-tracein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hl-trace-in {
  animation: hl-tracein 0.3s ease both;
}
@keyframes hl-scanpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 178, 75, 0.5);
  }
  100% {
    box-shadow: 0 0 0 13px rgba(224, 178, 75, 0);
  }
}
@keyframes hl-type {
  0% {
    width: 0;
  }
  12% {
    width: 0;
  }
  60% {
    width: 100%;
  }
  92% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes hl-caret {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* ---------- nav ---------- */
.hl-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hl-border);
}
.hl-nav-row {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.hl-nav-wordmark {
  height: 26px;
  width: auto;
  display: block;
}
.hl-nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  align-items: center;
}
.hl-nav-links > a {
  font-size: 14px;
  color: var(--hl-text2);
}
.hl-nav-links > a:hover {
  color: var(--hl-ink);
}
.hl-nav-gate {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--hl-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--hl-ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hl-nav-pro {
  font-size: 13.5px !important;
  color: var(--hl-text2);
  border: 1px solid var(--hl-border-strong);
  padding: 8px 13px;
}

/* ---------- hero ---------- */
.hl-hero {
  padding: 76px 0 68px;
}
.hl-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}
.hl-hero-h1 {
  font-size: clamp(30px, 4.4vw, 44px);
  margin: 16px 0 48px;
  letter-spacing: -0.03em;
  color: var(--hl-ink);
}
.hl-hero-h1 i {
  color: var(--hl-pine);
}
.hl-hero-nowrap {
  white-space: nowrap;
}
.hl-rotword {
  transition: opacity 0.3s, color 0.3s;
}
.hl-hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  /* ≥2 button heights (btn--lg is 48px) below the headline. Set on the CTA row
     rather than the h1 because the `.hl h1` reset out-specifies .hl-hero-h1. */
  margin-top: 104px;
}
.hl-hero-sub {
  font-size: 12px;
  color: var(--hl-text2);
  margin-top: 16px;
}
.hl-hero-fine {
  font-size: 12px;
  color: var(--hl-text2);
  margin-top: 20px;
}
.hl-hero-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
}
.hl-hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- resources ribbon ---------- */
.hl-resources {
  background: var(--hl-forest);
  color: #eaf2ec;
  padding: 30px 0;
}
.hl-resources-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.hl-resources-lead {
  flex: none;
  max-width: 20em;
}
.hl-resources-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hl-tint2);
  margin-bottom: 6px;
}
.hl-resources-h {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hl-resources-grid {
  flex: 1;
  min-width: 280px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hl-res {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13.5px;
  padding: 11px 15px;
  transition: filter 0.15s;
}
.hl-res:hover {
  filter: brightness(1.08);
}
.hl-res svg {
  flex: none;
}
.hl-res b {
  font-weight: 600;
}
.hl-res em {
  font-style: normal;
  opacity: 0.75;
}
.hl-res--blue {
  background: #3c6a8e;
}
.hl-res--gold {
  background: #c28a2c;
  color: #20160a;
}
.hl-res--rust {
  background: #b5552b;
}
.hl-res--green {
  background: #2f6f58;
}
.hl-resources-cta {
  flex: none;
}

/* ---------- walkthrough ---------- */
.hl-ws {
  padding: 52px 0 80px;
}
.hl-ws-lede {
  color: var(--hl-pine);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 10px 0 30px;
}
.hl-ws-frame {
  background: #fff;
  border: 1px solid var(--hl-border-strong);
  box-shadow: 0 24px 60px rgba(15, 59, 46, 0.09);
}
.hl-ws-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--hl-border);
}
.hl-ws-bar-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--hl-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.hl-ws-bar-crumb {
  font-size: 12px;
  color: var(--hl-text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hl-ws-bar-crumb span {
  color: var(--hl-muted);
}
.hl-ws-bar-crumb b {
  color: var(--hl-ink);
  font-weight: 600;
}
.hl-ws-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--hl-border);
}
.hl-ws-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: none;
  border-right: 1px solid var(--hl-border);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s;
  background: transparent;
  font-family: var(--hl-sans);
}
.hl-ws-tab:last-child {
  border-right: none;
}
.hl-ws-tab.on {
  background: var(--hl-tint1);
}
.hl-ws-tab-num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  color: var(--hl-text2);
  border: 1.5px solid var(--hl-border-strong);
}
.hl-ws-tab.on .hl-ws-tab-num {
  background: var(--hl-ink);
  color: #fff;
  border-color: var(--hl-ink);
}
.hl-ws-tab-label {
  font-size: 14px;
  color: var(--hl-text2);
}
.hl-ws-tab.on .hl-ws-tab-label {
  color: var(--hl-ink);
  font-weight: 600;
}
.hl-ws-stage {
  padding: 34px 32px;
  min-height: 352px;
  display: flex;
  align-items: center;
}
.hl-ws-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: center;
  width: 100%;
}
.hl-ws-kicker {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--hl-rust);
}
.hl-ws-panel h3 {
  font-size: 23px;
  margin: 10px 0;
  letter-spacing: -0.01em;
}
.hl-ws-panel > div > p {
  color: var(--hl-text2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.hl-ws-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hl-ws-points > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--hl-ink);
}
.hl-ws-points svg {
  color: var(--hl-pine);
  flex: none;
  margin-top: 2px;
}
.hl-ws-mock {
  border: 1px solid var(--hl-border);
  background: var(--hl-surface2);
}
.hl-ws-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--hl-border);
}
.hl-ws-chrome > span:not(.hl-ws-chrome-url) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d3c6;
}
.hl-ws-chrome-url {
  font-size: 11px;
  color: var(--hl-text2);
  margin-left: 6px;
}
.hl-ws-mock-body {
  padding: 22px;
  background: #fff;
}
.hl-ws-mock-body h4 {
  font-size: 16px;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hl-ws-mock-label {
  font-size: 9.5px;
  letter-spacing: 0.13em;
  color: var(--hl-muted);
  margin-bottom: 6px;
}
.hl-ws-mock-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hl-border-strong);
  background: var(--hl-surface2);
  padding: 10px 11px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--hl-ink);
}
.hl-ws-mock-field svg {
  color: var(--hl-pine);
  flex: none;
}
.hl-ws-mock-dim {
  color: var(--hl-text2);
}
.hl-ws-type-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
}
.hl-ws-type {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: hl-type 5s steps(30) infinite;
}
.hl-ws-caret {
  flex: none;
  width: 1.5px;
  height: 14px;
  background: var(--hl-pine);
  margin-left: 1px;
  animation: hl-caret 1s step-end infinite;
}
.hl-ws-mock-cta {
  justify-content: center;
  width: 100%;
  pointer-events: none;
  margin-top: 4px;
}
.hl-ws-mock-static {
  border: 1px solid var(--hl-border-strong);
  background: var(--hl-surface2);
  padding: 10px 11px;
  font-size: 13px;
  color: var(--hl-ink);
  margin-bottom: 14px;
}
.hl-ws-mock-seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.hl-ws-mock-seg > div {
  text-align: center;
  border: 1px solid var(--hl-border-strong);
  padding: 9px 0;
  font-size: 12.5px;
  color: var(--hl-text2);
}
.hl-ws-mock-seg > div.on {
  border: 1.5px solid var(--hl-ink);
  background: var(--hl-ink);
  color: #fff;
  font-weight: 600;
}
.hl-ws-mock-drop {
  border: 1.5px dashed var(--hl-pine);
  background: var(--hl-tint1);
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hl-ink);
}
.hl-ws-mock-drop svg {
  color: var(--hl-pine);
  flex: none;
}
.hl-ws-mock-count {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--hl-text2);
  margin-left: auto;
}
.hl-ws-study-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.hl-ws-study-addr {
  font-weight: 700;
  font-size: 15px;
  margin-top: 3px;
}
.hl-ws-study-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--hl-tint1);
  border: 1px solid var(--hl-tint2);
  color: var(--hl-ink);
  font-size: 10.5px;
  padding: 5px 9px;
  white-space: nowrap;
}
.hl-ws-study-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hl-border);
  margin-bottom: 16px;
}
.hl-ws-study-kpis > div {
  padding: 12px 14px;
}
.hl-ws-study-kpis > div:first-child {
  border-right: 1px solid var(--hl-border);
}
.hl-ws-study-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--hl-ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hl-ws-study-num--pine {
  color: var(--hl-pine);
}
.hl-ws-study-note {
  font-size: 12px;
  color: var(--hl-text2);
  margin: -6px 0 14px;
}
.hl-ws-study-bar {
  display: flex;
  height: 26px;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--hl-border);
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
}
.hl-ws-study-bar > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hl-bar-5 {
  background: var(--hl-ink);
  color: #fff;
}
.hl-bar-15 {
  background: var(--hl-pine);
  color: #fff;
}
.hl-bar-shell {
  background: #c9d3ce;
  color: #3a4a43;
}
.hl-ws-study-foot {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hl-ws-study-foot > .hl-mono {
  font-size: 10px;
  border: 1px solid var(--hl-border-strong);
  color: var(--hl-ink);
  padding: 4px 8px;
}
.hl-ws-study-view {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--hl-pine);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hl-ws-caption {
  border-top: 1px solid var(--hl-border);
  background: var(--hl-surface2);
  padding: 15px 22px;
  font-size: 14px;
  color: var(--hl-text2);
}
.hl-ws-caption b {
  color: var(--hl-ink);
}

/* ---------- get-started ribbon ---------- */
.hl-getstarted {
  background: var(--hl-saffron);
  color: var(--hl-ink);
  padding: 30px 0;
}
.hl-getstarted-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.hl-getstarted-lead {
  flex: 1;
  min-width: 230px;
}
.hl-getstarted-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #fff;
}
.hl-getstarted-h {
  font-size: 21px;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: -0.01em;
  color: #fff;
}
.hl-getstarted-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  flex: 1.6;
  min-width: 340px;
  justify-content: flex-end;
}
.hl-getstarted-form input {
  flex: 1;
  min-width: 120px;
  height: 46px;
  padding: 0 13px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.55);
  color: var(--hl-ink);
  font-family: var(--hl-sans);
  font-size: 14px;
  outline: none;
}
.hl-getstarted-form input::placeholder {
  color: rgba(20, 40, 30, 0.6);
  opacity: 1;
}
.hl-getstarted-form input:focus {
  border-color: var(--hl-ink);
}
.hl-getstarted-address {
  flex: 1.4 !important;
  min-width: 170px !important;
}
.hl-getstarted-cta {
  background: var(--hl-ink) !important;
  color: #fff !important;
  font-weight: 700;
  height: 46px;
  padding: 0 22px;
  white-space: nowrap;
}

/* ---------- engine (dark) ---------- */
.hl-engine {
  background: var(--hl-forest);
  color: #eaf2ec;
  padding: 88px 0;
}
.hl-engine .hl-h2--inverse {
  font-size: clamp(28px, 3.7vw, 42px);
}
.hl-engine-step1 {
  margin-bottom: 30px;
}
.hl-engine-steplabel {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--hl-tint2);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hl-engine-steplabel span {
  color: #eaf2ec;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--hl-sans);
}
.hl-engine-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.hl-engine-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  color: var(--hl-ink);
}
.hl-engine-chip svg {
  flex: none;
}
.hl-engine-chip span:last-child {
  font-size: 13.5px;
  font-weight: 600;
}
.hl-engine-note {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 234, 223, 0.2);
  padding: 18px 22px;
  margin-top: 24px;
}
.hl-engine-note p {
  color: #eaf2ec;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 60em;
}
.hl-engine-note-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.hl-engine-note-link svg {
  display: inline-block;
  vertical-align: -2px;
}
.hl-engine-note-link:hover {
  color: var(--hl-tint2);
}

/* ---------- scanner ---------- */
.hl-scan {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.hl-scan-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hl-scan-tabs {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hl-scan-tab {
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--hl-sans);
  border: 1px solid rgba(207, 234, 223, 0.28);
  background: transparent;
  color: #c9d6cd;
  cursor: pointer;
  letter-spacing: 0.01em;
  flex: 1;
}
.hl-scan-tab.on {
  font-weight: 700;
  border-color: #e0b24b;
  background: rgba(224, 178, 75, 0.16);
  color: #fff;
}
.hl-scan-photo {
  position: relative;
  border: 1px solid rgba(207, 234, 223, 0.22);
  overflow: hidden;
  background: #fff;
  line-height: 0;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.hl-scan-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.hl-scan-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(224, 178, 75, 0.75);
  background: rgba(11, 42, 32, 0.34);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.16s;
  z-index: 2;
}
.hl-scan-dot span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e0b24b;
}
.hl-scan-dot.on {
  width: 30px;
  height: 30px;
  border-color: #e0b24b;
  background: rgba(224, 178, 75, 0.32);
  animation: hl-scanpulse 1.8s ease-out infinite;
  z-index: 3;
}
.hl-scan-dot.on span {
  background: #fff;
}
.hl-scan-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #eaf2ec;
  background: rgba(11, 42, 32, 0.74);
  padding: 6px 10px;
  border: 1px solid rgba(207, 234, 223, 0.2);
  line-height: 1.1;
}
.hl-scan-list {
  background: #fff;
  border: 1px solid var(--hl-border);
  padding: 14px 20px 10px;
}
.hl-scan-list-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.hl-scan-list-title {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--hl-pine);
}
.hl-scan-list-count {
  font-size: 10.5px;
  color: var(--hl-text2);
}
.hl-scan-list-rows {
  max-height: 132px;
  overflow-y: auto;
}
.hl-scan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid var(--hl-border);
  background: none;
  width: 100%;
  cursor: pointer;
  font-family: var(--hl-sans);
  text-align: left;
}
.hl-scan-row-main {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.hl-scan-row-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hl-mint);
}
.hl-scan-row-name {
  color: var(--hl-text);
  font-size: 13px;
}
.hl-scan-row-cls {
  color: var(--hl-pine);
  font-size: 9px;
  flex: none;
}
.hl-scan-row-price {
  color: var(--hl-text2);
  font-size: 11.5px;
  white-space: nowrap;
}
.hl-scan-trace {
  background: #fff;
  border: 1px solid var(--hl-border);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  color: var(--hl-text);
}
.hl-scan-trace-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--hl-border);
}
.hl-scan-trace-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--hl-pine);
}
.hl-scan-trace-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 6px;
}
.hl-scan-trace-title > div:first-child {
  font-size: 19px;
  font-weight: 800;
  color: var(--hl-ink);
  letter-spacing: -0.01em;
}
.hl-scan-trace-title > .hl-mono {
  font-size: 13px;
  white-space: nowrap;
}
.hl-scan-step {
  padding: 12px 20px;
  border-bottom: 1px solid var(--hl-border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hl-scan-step:last-of-type {
  border-bottom: none;
}
.hl-scan-step > .hl-mono {
  color: var(--hl-pine);
  font-size: 10.5px;
  font-weight: 700;
  flex: none;
  min-width: 76px;
  white-space: nowrap;
  padding-top: 1px;
}
.hl-scan-step-h {
  font-size: 13.5px;
  color: var(--hl-text);
  font-weight: 600;
}
.hl-scan-step-p {
  font-size: 12.5px;
  color: var(--hl-text2);
  margin-top: 2px;
}
.hl-scan-busy {
  font-size: 12px;
  color: var(--hl-pine);
  animation: hl-shimmer 1s infinite;
  margin-top: 9px;
}
.hl-scan-cls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid;
  margin-top: 9px;
}
.hl-scan-cls > span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hl-scan-cls > .hl-mono {
  font-size: 12px;
  color: var(--hl-ink);
  font-weight: 700;
}
.hl-scan-rule {
  font-size: 12.5px;
  color: var(--hl-text2);
  margin-top: 10px;
  line-height: 1.5;
}
.hl-scan-query-wrap {
  flex: 1;
  min-width: 0;
}
.hl-scan-query {
  margin: 9px 0 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 11.5px;
  line-height: 1.65;
  color: #eaf2ec;
  background: #0b2a20;
  border: 1px solid rgba(207, 234, 223, 0.18);
  padding: 11px 13px;
}
.hl-scan-result {
  background: var(--hl-forest);
  padding: 16px 20px 18px;
  margin-top: auto;
}
.hl-scan-result-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--hl-tint2);
}
.hl-scan-result-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.hl-scan-result-num {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}
.hl-scan-result-sub {
  font-size: 12px;
  color: #c9d6cd;
  margin-top: 5px;
}
.hl-scan-result-meta {
  font-size: 9px;
  color: var(--hl-tint2);
  text-align: right;
  line-height: 1.6;
  white-space: nowrap;
}

/* ---------- featured study ---------- */
.hl-study {
  background: #fff;
  padding: 86px 0;
}
.hl-study-frame {
  background: #fff;
  border: 1px solid var(--hl-border);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.18);
  margin-top: 36px;
}
.hl-study-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hl-border);
}
.hl-study-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--hl-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex: none;
}
.hl-study-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--hl-ink);
  line-height: 1.2;
}
.hl-study-meta {
  font-size: 11px;
  color: var(--hl-text2);
}
.hl-study-open {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--hl-pine);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.hl-study-pages {
  background: #edeeea;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
}
.hl-study-pages img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  background: #fff;
}
.hl-study-fine {
  color: var(--hl-muted);
  font-size: 13px;
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- pricing ---------- */
.hl-pricing {
  background: var(--hl-forest);
  color: #eaf2ec;
  padding: 82px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hl-pricing .hl-lede--inverse {
  margin-bottom: 0;
}
.hl-pricing-mail {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hl-pricing-mail:hover {
  color: var(--hl-tint2);
}
.hl-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
  align-items: stretch;
}
.hl-tier {
  background: #fff;
  color: var(--hl-text);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hl-border);
  position: relative;
}
.hl-tier--featured {
  border: 2px solid var(--hl-ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}
.hl-tier-flag {
  position: absolute;
  top: -11px;
  left: 26px;
  background: #c28a2c;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 700;
}
.hl-tier-name {
  font-weight: 700;
  font-size: 18px;
}
.hl-tier-sub {
  font-size: 13px;
  color: var(--hl-text2);
  margin-top: 3px;
  min-height: 40px;
}
.hl-tier-price {
  font-size: 34px;
  font-weight: 700;
  margin: 14px 0 2px;
}
.hl-tier-per {
  font-size: 12px;
  color: var(--hl-text2);
  margin-bottom: 20px;
}
.hl-tier-feats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.hl-tier-feats > div {
  display: flex;
  gap: 9px;
  font-size: 14px;
  align-items: flex-start;
}
.hl-tier-feats svg {
  flex: none;
  margin-top: 2px;
}
.hl-tier-feat--gold {
  color: #c28a2c;
  font-weight: 600;
}
.hl-tier-feat--pine {
  color: var(--hl-pine);
  font-weight: 600;
}
.hl-tier-cta {
  justify-content: center;
}

/* ---------- case studies ---------- */
.hl-cases {
  padding: 56px 0;
}
.hl-cases-head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hl-cases-sub {
  color: var(--hl-text2);
  font-size: 15px;
  margin: 0;
}
.hl-cases-all {
  margin-left: auto;
  font-weight: 600;
  color: var(--hl-pine);
}
.hl-cases-all:hover {
  color: var(--hl-ink);
}
.hl-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.hl-cases-grid--empty {
  grid-template-columns: 1fr;
}
.hl-case {
  background: #fff;
  border: 1px solid var(--hl-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}
.hl-case:hover {
  box-shadow: 0 12px 30px rgba(15, 59, 46, 0.1);
  transform: translateY(-3px);
}
.hl-case-img {
  height: 150px;
  background: #fff;
  overflow: hidden;
}
.hl-case-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.hl-case-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hl-case-kicker {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--hl-muted);
  text-transform: uppercase;
  line-height: 1.4;
}
.hl-case-body h3 {
  font-size: 15px;
  margin: 6px 0 3px;
  line-height: 1.25;
}
.hl-case-loc {
  font-size: 12px;
  color: var(--hl-text2);
  margin-bottom: 16px;
}
.hl-case-meta {
  margin-top: auto;
  border-top: 1px solid var(--hl-border);
  padding-top: 12px;
}
.hl-case-meta .hl-mono {
  font-size: 18px;
  font-weight: 700;
  color: var(--hl-ink);
}
.hl-case-meta div:last-child {
  font-size: 10.5px;
  color: var(--hl-text2);
}

/* ---------- security ---------- */
.hl-security {
  background: var(--hl-forest);
  color: #eaf2ec;
  padding: 72px 0 0;
}
.hl-security .hl-lede--inverse {
  font-size: 16px;
}
.hl-security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.hl-security-card {
  background: #fff;
  border: 1px solid var(--hl-border);
  padding: 24px 22px;
  color: var(--hl-text);
  transition: transform 0.18s, box-shadow 0.18s;
}
.hl-security-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}
.hl-security-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--hl-tint1);
  color: var(--hl-ink);
  margin-bottom: 14px;
}
.hl-security-card h3 {
  font-size: 15.5px;
  margin: 0 0 8px;
  color: var(--hl-ink);
  font-weight: 700;
}
.hl-security-card p {
  font-size: 13.5px;
  color: var(--hl-text2);
  margin: 0;
}
.hl-security-strip {
  background: var(--hl-rust);
  padding: 18px 0;
  margin-top: 56px;
}
.hl-security-strip-row {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.04em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
}
.hl-security-strip-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- final CTA + footer ---------- */
.hl-final {
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px 28px 0;
}
.hl-final-blog {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--hl-ink);
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hl-final-blog a {
  color: var(--hl-pine);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hl-final-band {
  background: var(--hl-blue);
  color: #fff;
  padding: 44px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: -140px;
}
.hl-final-band h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 6px;
}
.hl-final-band p {
  color: #cbdeeb;
  font-size: 15px;
  margin: 0;
}
.hl-final-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hl-final-primary {
  background: #fff !important;
  color: #235c86 !important;
  font-weight: 600;
  height: 48px;
  padding: 0 24px;
}
.hl-final-secondary {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  height: 48px;
  padding: 0 24px;
}
.hl-footer {
  background: var(--hl-forest);
  color: #c9d6cd;
  padding: 180px 0 44px;
}
.hl-footer-tag {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.hl-footer-tag em {
  font-style: italic;
  color: var(--hl-mint);
}
.hl-footer-links {
  margin-top: 18px;
  font-size: 13px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hl-footer-links a,
.hl-footer-links button {
  color: #c9d6cd;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.hl-footer-links a:hover,
.hl-footer-links button:hover {
  color: #fff;
}
.hl-footer-fine {
  font-size: 12px;
  margin-top: 22px;
  max-width: 52em;
  color: #9fb3a7;
}

/* ---------- gate modal ---------- */
.hl-gate-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 36, 29, 0.5);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow: auto;
}
.hl-gate {
  width: 100%;
  max-width: 920px;
  background: #fff;
  border: 1px solid var(--hl-border-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hl-gate-cover {
  background: var(--hl-ink);
  color: #fff;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}
.hl-gate-wordmark {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: 34px;
}
.hl-gate-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--hl-tint2);
}
.hl-gate-cover-h {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  margin: 12px 0;
  letter-spacing: -0.02em;
}
.hl-gate-cover-p {
  font-size: 14.5px;
  color: #c9d6cd;
  margin: 0 0 26px;
}
.hl-gate-page {
  position: relative;
  background: #fff;
  padding: 8px 8px 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hl-gate-page img {
  display: block;
  width: 100%;
  height: 186px;
  object-fit: cover;
  object-position: top center;
}
.hl-gate-page-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(15, 59, 46, 0), var(--hl-ink));
}
.hl-gate-page-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
}
.hl-gate-totals {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 18px;
  margin-top: 22px;
}
.hl-gate-totals > div:not(.hl-gate-totals-foot) {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: 4px 0;
}
.hl-gate-totals span {
  color: #c9d6cd;
}
.hl-gate-totals-gold {
  color: #e8a06b;
}
.hl-gate-totals-foot {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 12px;
  color: #9fb3a7;
}
.hl-gate-form {
  padding: 34px 34px 30px;
  position: relative;
}
.hl-gate-form h3 {
  font-size: 23px;
  margin: 8px 0 6px;
}
.hl-gate-form-sub {
  font-size: 13.5px;
  color: var(--hl-text2);
  margin: 0 0 18px;
}
.hl-gate-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hl-text2);
  display: inline-flex;
  padding: 2px;
}
.hl-gate-google {
  display: flex;
  justify-content: center;
  min-height: 44px;
}
.hl-gate-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: var(--hl-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hl-gate-divider::before,
.hl-gate-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hl-border);
}
.hl-gate-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hl-gate-fields label > span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hl-gate-opt-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hl-gate-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hl-gate-opts button {
  padding: 12px 10px;
  font-family: var(--hl-sans);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: var(--hl-text);
  border: 1.5px solid var(--hl-border-strong);
  text-align: center;
}
.hl-gate-opts button.on {
  font-weight: 600;
  background: var(--hl-ink);
  color: #fff;
  border-color: var(--hl-ink);
}
.hl-gate-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.hl-gate-submit {
  height: 48px;
  justify-content: center;
  margin-top: 4px;
}
.hl-gate-error {
  font-size: 13px;
  color: var(--hl-rust);
  margin: 0;
}
.hl-gate-fine {
  font-size: 11.5px;
  color: var(--hl-muted);
  margin: 2px 0 0;
  text-align: center;
}
.hl-gate-done {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hl-gate-done-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--hl-mint);
  color: #fff;
  margin-bottom: 18px;
}
.hl-gate-done h3 {
  font-size: 26px;
  margin: 0 0 8px;
}
.hl-gate-done p {
  font-size: 14.5px;
  color: var(--hl-text2);
  margin: 0 0 24px;
}
.hl-gate-done .hl-gate-fine {
  text-align: left;
  margin-top: 18px;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hl-nav-links > a:not(.hl-nav-pro) {
    display: none;
  }
  .hl-hero {
    padding: 44px 0 40px;
  }
  .hl-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hl-hero-h1 {
    margin-bottom: 28px;
  }
  .hl-hero-stage {
    max-width: 420px;
    margin: 0 auto;
  }
  .hl-ws-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hl-ws-stage {
    padding: 24px 20px;
  }
  .hl-engine-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hl-scan {
    grid-template-columns: 1fr;
  }
  .hl-tiers {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hl-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hl-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hl-gate {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .hl-gate-cover {
    min-height: 0;
    padding: 26px 24px;
  }
  .hl-gate-page {
    display: none;
  }
  .hl-gate-wordmark {
    margin-bottom: 18px;
  }
}
@media (max-width: 560px) {
  .hl-wrap {
    padding: 0 18px;
  }
  .hl-final {
    padding: 24px 18px 0;
  }
  .hl-nav-row {
    gap: 10px;
    height: 56px;
  }
  .hl-nav-wordmark {
    height: 20px;
  }
  .hl-nav-links {
    gap: 10px;
  }
  .hl-nav-gate {
    white-space: nowrap;
    font-size: 12.5px;
  }
  .hl-nav-gate svg {
    display: none;
  }
  .hl-nav-pro {
    white-space: nowrap;
    font-size: 12.5px !important;
    padding: 6px 9px;
  }
  .hl-hero-h1 {
    font-size: 29px;
  }
  .hl-hero-nowrap {
    white-space: normal;
  }
  .hl-resources-grid {
    grid-template-columns: 1fr;
  }
  .hl-resources-cta {
    width: 100%;
    justify-content: center;
  }
  .hl-ws-tab {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 10px;
  }
  .hl-ws-tab-label {
    font-size: 12.5px;
  }
  .hl-ws-stage {
    padding: 20px 14px;
  }
  .hl-ws-study-kpis {
    grid-template-columns: 1fr;
  }
  .hl-ws-study-kpis > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--hl-border);
  }
  .hl-ws-study-foot {
    flex-wrap: wrap;
  }
  .hl-ws-study-view {
    margin-left: 0;
    flex-basis: 100%;
  }
  .hl-engine {
    padding: 56px 0;
  }
  .hl-engine-chips {
    grid-template-columns: 1fr;
  }
  .hl-scan-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hl-scan-tab {
    white-space: normal;
    padding: 8px 6px;
    font-size: 11.5px;
  }
  .hl-study {
    padding: 56px 0;
  }
  .hl-study-pages {
    grid-template-columns: 1fr;
  }
  .hl-pricing {
    padding: 56px 0;
  }
  .hl-cases-grid {
    grid-template-columns: 1fr;
  }
  .hl-security-grid {
    grid-template-columns: 1fr;
  }
  .hl-getstarted-form {
    min-width: 0;
    width: 100%;
  }
  .hl-getstarted-form input {
    min-width: 100%;
  }
  .hl-getstarted-cta {
    width: 100%;
    justify-content: center;
  }
  .hl-final-band {
    padding: 30px 22px;
  }
  .hl-footer {
    padding-top: 170px;
  }
  .hl-gate-backdrop {
    padding: 16px 10px;
  }
  .hl-gate-form {
    padding: 26px 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hl-hero-scene,
  .hl-rotword {
    transition: none !important;
  }
  .hl-rise,
  .hl-trace-in {
    animation: none !important;
  }
  .hl-scan-dot.on {
    animation: none !important;
  }
  .hl-ws-type,
  .hl-ws-caret {
    animation: none !important;
    width: auto !important;
  }
  .hl-scan-busy {
    animation: none !important;
  }
}
