/* Entraris marketing showcase — opaque stages, centered heroes, clear navigation.
 * Tokens from theme.css only. Loaded after home-landing.css on /about pages. */

/* —— Page shell —— */
body.hl-mkt {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  overflow-x: hidden;
}

body.hl-mkt .hl-atmosphere {
  opacity: 0.35;
}

body.hl-mkt > main {
  flex: 1;
  background: #fff;
  min-width: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Shared buttons —— */
.hl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  background: var(--hl-navy);
  color: #fff !important;
  font-family: var(--hl-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: background 0.18s ease, transform 0.18s var(--hl-ease), box-shadow 0.18s ease;
}

.hl-btn:hover {
  background: var(--hl-blue);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(19, 45, 90, 0.16);
}

.hl-btn--ghost {
  background: #fff;
  color: var(--hl-navy) !important;
  border-color: rgba(11, 31, 68, 0.18);
}

.hl-btn--ghost:hover {
  background: var(--hl-mist);
  color: var(--hl-navy) !important;
  box-shadow: none;
}

.hl-btn--light {
  background: #fff;
  color: var(--hl-navy) !important;
}

.hl-btn--light:hover {
  background: #eef3f9;
  color: var(--hl-navy) !important;
}

.hl-btn--ghost-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}

.hl-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  box-shadow: none;
}

.hl-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--hl-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hl-blue);
}

.hl-kicker--on-dark {
  color: #9db8e8;
}

.hl-kicker--pill {
  display: inline-block;
  margin: 0 0 1.15rem;
  padding: 0.6rem 1.3rem 0.55rem;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: none;
  color: var(--hl-navy);
  background: #fff;
  border: 1px solid rgba(11, 31, 68, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(19, 45, 90, 0.08);
}

.hl-stage--white .hl-kicker--pill {
  background: var(--hl-mist);
  border-color: transparent;
  box-shadow: none;
}

.hl-stage--navy .hl-kicker--pill,
.hl-kicker--pill.hl-kicker--on-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.hl-stage__header--center .hl-kicker--pill {
  display: inline-block;
}

/* —— Subnav rail —— */
.hl-mkt-navrail {
  background: #fff;
  border-bottom: 1px solid var(--hl-line);
  position: sticky;
  top: 0;
  z-index: 35;
  /* sit under main header when both sticky — header is 40 */
}

.hl-header + .hl-mkt-navrail {
  top: auto;
  position: relative;
}

.hl-mkt-navrail .hl-shell {
  padding: 0.85rem 0 0.95rem;
}

.hl-crumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  color: var(--hl-muted);
}

.hl-crumb a {
  color: var(--hl-blue);
  font-weight: 600;
  text-decoration: none;
}

.hl-crumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-crumb__sep {
  opacity: 0.5;
}

.hl-crumb__current {
  color: var(--hl-navy-soft);
  font-weight: 600;
}

.hl-subnav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 0.1rem 0 0.35rem;
  scrollbar-width: thin;
}

.hl-subnav__link {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.55rem 0.95rem;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--hl-mist);
  color: var(--hl-navy-soft) !important;
  font-family: var(--hl-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.hl-subnav__link:hover {
  background: #e0e9f5;
  color: var(--hl-navy) !important;
}

.hl-subnav__link.is-active {
  background: var(--hl-navy);
  color: #fff !important;
}

/* —— Heroes —— */
.hl-mkt-hero {
  background:
    linear-gradient(180deg, #eef3f9 0%, #f8fafc 55%, #ffffff 100%);
  border-bottom: 1px solid var(--hl-line);
  padding: clamp(2.75rem, 7vw, 4.75rem) 0 clamp(2.5rem, 5vw, 3.75rem);
}

.hl-mkt-hero--center .hl-mkt-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.hl-mkt-hero__symbol {
  width: min(168px, 42%);
  height: auto;
  display: block;
  margin: 0 0 1.35rem;
  animation: hl-rise 0.9s var(--hl-ease) both;
}

.hl-mkt-hero .hl-kicker {
  animation: hl-rise 0.9s var(--hl-ease) 0.06s both;
}

.hl-mkt-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--hl-display);
  font-size: clamp(2.15rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--hl-navy);
  max-width: 16ch;
  animation: hl-rise 0.95s var(--hl-ease) 0.12s both;
}

.hl-mkt-hero--center h1 {
  max-width: 18ch;
}

.hl-mkt-hero--promise h1 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
}

.hl-promise {
  margin: 0.35rem 0 1.15rem;
  max-width: 34ch;
  font-family: var(--hl-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--hl-navy);
  animation: hl-rise 0.95s var(--hl-ease) 0.16s both;
}

.hl-mkt-hero--promise .hl-mkt-hero__lede {
  max-width: 40ch;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(11, 31, 68, 0.12);
}

.hl-mkt-hero__lede {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--hl-muted);
  line-height: 1.65;
  animation: hl-rise 0.95s var(--hl-ease) 0.18s both;
}

.hl-mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
  animation: hl-rise 0.95s var(--hl-ease) 0.24s both;
}

/* —— Opaque stages —— */
.hl-stage {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.hl-stage--white {
  background: #fff;
}

.hl-stage--mist {
  background: var(--hl-mist);
  border-top: 1px solid rgba(11, 31, 68, 0.06);
  border-bottom: 1px solid rgba(11, 31, 68, 0.06);
}

.hl-stage--navy {
  background:
    radial-gradient(ellipse 70% 80% at 15% 15%, rgba(61, 116, 212, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 85%, rgba(47, 95, 176, 0.22), transparent 50%),
    linear-gradient(165deg, #0b1f44 0%, #13233f 48%, #1a3566 100%);
  color: #fff;
}

/* Product overview video — About hub */
.hl-overview-video {
  max-width: 56rem;
  margin: 0 auto;
}

.hl-overview-video__player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #0b1f44;
  border: 1px solid rgba(11, 31, 68, 0.12);
  border-radius: calc(var(--hl-radius, 12px) + 2px);
  box-shadow: 0 18px 44px rgba(19, 45, 90, 0.1);
}

.hl-stage__header {
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}

.hl-stage__header--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.hl-stage__header h2,
.hl-stage h2 {
  margin: 0;
  font-family: var(--hl-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--hl-navy);
  max-width: none;
}

.hl-stage--navy h2,
.hl-stage--navy .hl-stage__header h2,
.hl-end-cta h2 {
  color: #fff;
}

.hl-stage__header--center h2 {
  margin-left: auto;
  margin-right: auto;
}

.hl-stage__lede {
  margin: 0.85rem auto 0;
  max-width: 40ch;
  color: var(--hl-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hl-stage--navy .hl-stage__lede {
  color: rgba(232, 240, 250, 0.86);
}

.hl-prose {
  margin: 0;
  max-width: 40rem;
  color: var(--hl-muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hl-prose + .hl-prose {
  margin-top: 1rem;
}

.hl-prose--on-dark {
  color: rgba(232, 240, 250, 0.88);
}

.hl-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.hl-split h2 {
  margin-top: 0.15rem;
}

.hl-inline-link {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1.25rem 0 0;
}

.hl-inline-link a {
  font-weight: 700;
  color: var(--hl-blue);
  text-decoration: none;
}

.hl-inline-link a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-inline-link--on-dark a {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-note {
  margin: 2rem auto 0;
  max-width: 44rem;
  text-align: center;
  color: var(--hl-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hl-note a {
  font-weight: 700;
}

.hl-note--on-dark {
  color: rgba(232, 240, 250, 0.82);
}

.hl-note--on-dark a {
  color: #fff !important;
}

/* —— Explore tiles —— */
.hl-explore-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hl-tile {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  height: 100%;
  padding: 1.35rem 1.3rem 1.45rem;
  background: var(--hl-mist);
  border: 1px solid rgba(11, 31, 68, 0.08);
  border-radius: calc(var(--hl-radius) - 2px);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.2s var(--hl-ease), box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hl-tile:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(47, 95, 176, 0.35);
  box-shadow: 0 16px 36px rgba(19, 45, 90, 0.1);
}

.hl-tile__eyebrow {
  font-family: var(--hl-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hl-blue);
}

.hl-tile strong {
  font-family: var(--hl-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hl-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hl-tile span:last-child {
  color: var(--hl-muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.hl-explore-faq {
  margin: 1.75rem 0 0;
  text-align: center;
}

.hl-explore-faq a {
  font-family: var(--hl-display);
  font-weight: 700;
  font-size: 1rem;
}

/* —— Process steps —— */
.hl-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hl-process:has(li:nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hl-process:has(li:nth-child(5)) {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hl-process li {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.2rem 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--hl-radius) - 2px);
}

.hl-process--light li {
  background: #fff;
  border-color: rgba(11, 31, 68, 0.1);
  box-shadow: var(--shadow-sm);
}

.hl-process__num {
  font-family: var(--hl-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9db8e8;
}

.hl-process--light .hl-process__num {
  color: var(--hl-blue);
}

.hl-process strong {
  font-family: var(--hl-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
}

.hl-process--light strong {
  color: var(--hl-navy);
}

.hl-process p {
  margin: 0;
  color: rgba(232, 240, 250, 0.86);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hl-process--light p {
  color: var(--hl-muted);
}

/* 5-step Fresh Start handled via :has above */

/* —— Panels / feature grids —— */
.hl-panel {
  background: #fff;
  border: 1px solid rgba(11, 31, 68, 0.1);
  border-radius: calc(var(--hl-radius) - 2px);
  padding: 1.35rem 1.3rem 1.45rem;
  box-shadow: var(--shadow-sm);
}

.hl-stage--white .hl-panel {
  background: var(--hl-mist);
  border-color: transparent;
  box-shadow: none;
}

.hl-panel--on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hl-panel h3,
.hl-panel > strong {
  display: block;
  margin: 0 0 0.45rem;
  font-family: var(--hl-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hl-navy);
  letter-spacing: -0.02em;
}

.hl-panel--on-dark h3,
.hl-panel--on-dark > strong {
  color: #fff;
}

.hl-panel h3 span {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--hl-muted);
}

.hl-panel--on-dark h3 span {
  color: #9db8e8;
}

.hl-panel p {
  margin: 0;
  color: var(--hl-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: none;
}

.hl-panel p strong {
  display: inline;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--hl-navy);
}

.hl-panel--on-dark p {
  color: rgba(232, 240, 250, 0.86);
}

.hl-panel--on-dark p strong {
  color: #fff;
}

.hl-panel__link {
  margin: 1.1rem 0 0 !important;
}

.hl-panel__link a {
  font-weight: 700;
  font-size: 0.92rem;
}

.hl-panel__link .hl-btn {
  width: auto;
  min-height: 0;
  padding: 0.65rem 1.15rem;
  font-size: 0.9rem;
}

.hl-panel--on-dark .hl-panel__link a {
  color: #fff !important;
}

.hl-tier-grid,
.hl-feature-grid,
.hl-phase-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

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

.hl-tier-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hl-tier-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hl-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.hl-feature-grid:has(li:nth-child(4):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hl-feature-grid--stack {
  grid-template-columns: 1fr;
}

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

.hl-phase-grid ol {
  margin: 0.35rem 0 0;
  padding: 0 0 0 1.15rem;
  color: rgba(232, 240, 250, 0.88);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hl-phase-grid li + li {
  margin-top: 0.35rem;
}

.hl-plain-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--hl-muted);
  line-height: 1.55;
}

.hl-plain-list li + li {
  margin-top: 0.4rem;
}

.hl-check-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  max-width: 52rem;
}

.hl-check-grid--single {
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0;
}

.hl-check-grid li {
  position: relative;
  padding: 0.95rem 1rem;
  background: #fff;
  border: 1px solid rgba(11, 31, 68, 0.08);
  border-radius: 12px;
  color: var(--hl-navy-soft);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
}

.hl-stage--white .hl-check-grid li {
  background: var(--hl-mist);
  border-color: transparent;
}

/* —— Compare table —— */
.hl-compare-frame {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid rgba(11, 31, 68, 0.1);
  border-radius: calc(var(--hl-radius) - 2px);
  padding: 0.35rem 0.35rem 1rem;
  box-shadow: var(--shadow-sm);
}

.hl-compare-frame.hl-compare-desktop {
  overflow: visible;
}

.hl-stage--white .hl-compare-frame {
  background: var(--hl-mist);
  border-color: transparent;
  box-shadow: none;
}

.hl-compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hl-compare th,
.hl-compare td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(11, 31, 68, 0.08);
  vertical-align: top;
}

.hl-compare thead th {
  font-family: var(--hl-display);
  font-weight: 700;
  color: var(--hl-navy);
  background: #fff;
  position: sticky;
  top: calc(42px + (var(--brand-header-pad) * 2));
  z-index: 4;
  box-shadow: 0 1px 0 rgba(11, 31, 68, 0.1);
}

.hl-compare thead th:first-child,
.hl-compare tbody th[scope="row"] {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 2;
  min-width: 14rem;
  font-weight: 600;
  color: var(--hl-navy-soft);
}

.hl-compare thead th:first-child {
  z-index: 5;
  top: calc(42px + (var(--brand-header-pad) * 2));
}

.hl-stage--white .hl-compare thead th,
.hl-stage--white .hl-compare thead th:first-child,
.hl-stage--white .hl-compare tbody th[scope="row"] {
  background: var(--hl-mist);
}

.hl-compare td {
  text-align: center;
  color: var(--hl-ink);
  font-weight: 600;
  white-space: nowrap;
}

.hl-compare__group th {
  padding-top: 1.35rem;
  padding-bottom: 0.55rem;
  font-family: var(--hl-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hl-blue);
  background: transparent !important;
  border-bottom: 1px solid rgba(47, 95, 176, 0.25);
}

.hl-compare__legend {
  margin: 0.85rem 1rem 0;
  font-size: 0.85rem;
  color: var(--hl-muted);
}

.hl-compare-mobile {
  display: none;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* —— Pricing page —— */
.hl-price-lead {
  margin: 0 0 0.65rem !important;
  font-family: var(--hl-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--hl-navy-soft) !important;
  line-height: 1.4;
}

.hl-price-lead strong {
  display: inline;
  margin: 0;
  font-size: inherit;
  color: var(--hl-navy);
}

.hl-price-figure {
  margin: 0.15rem 0 0.55rem;
  font-family: var(--hl-display);
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hl-navy);
  line-height: 1.05;
}

.hl-price-figure span {
  display: inline;
  margin-left: 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--hl-muted);
  vertical-align: middle;
}

.hl-price-figure--on-dark {
  color: #fff;
}

.hl-price-figure--on-dark span {
  color: #9db8e8;
}

.hl-pricing-band {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.hl-pricing-band + .hl-compare-frame,
.hl-tier-grid + .hl-compare-frame {
  margin-top: 2.5rem;
}

.hl-stage--white .hl-pricing-band + .hl-compare-frame,
.hl-stage--white .hl-tier-grid + .hl-compare-frame {
  background: #fff;
  border: 1px solid rgba(11, 31, 68, 0.1);
  box-shadow: var(--shadow-sm);
}

.hl-note--after-compare {
  margin-top: 2rem;
}

.hl-note--actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0.85rem;
  margin-top: 1.75rem;
}

.hl-note--actions .hl-btn {
  width: auto;
  min-height: 0;
  padding: 0.7rem 1.2rem;
  font-size: 0.92rem;
}

.hl-inline-link--actions {
  gap: 0.75rem 0.85rem;
}

.hl-inline-link--actions .hl-btn {
  width: auto;
  min-height: 0;
  padding: 0.7rem 1.2rem;
  font-size: 0.92rem;
}

.hl-compare__legend + .hl-note--actions {
  margin-top: 1.15rem;
}

.hl-pricing-terms {
  margin: 1.25rem 0 0;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--hl-muted);
  text-align: center;
}

.hl-pricing-terms--on-dark {
  color: rgba(232, 240, 250, 0.72);
}

.hl-discount-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hl-discount-grid .hl-price-figure {
  margin-top: 0.35rem;
}

.hl-compare--pricing {
  min-width: 28rem;
}

.hl-compare--pricing td {
  text-align: left;
  font-weight: 600;
  white-space: normal;
}

.hl-compare--pricing th[scope="row"] {
  min-width: 5.5rem;
  white-space: nowrap;
}

.hl-compare-frame--on-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hl-compare--on-dark {
  color: #e8f0fa;
}

.hl-compare--on-dark thead th,
.hl-compare--on-dark thead th:first-child,
.hl-compare--on-dark tbody th[scope="row"] {
  background: transparent;
  color: #fff;
}

.hl-compare--on-dark th,
.hl-compare--on-dark td {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(232, 240, 250, 0.92);
}

.hl-compare--on-dark tbody th[scope="row"] {
  color: #fff;
  font-weight: 700;
}

.hl-check-grid--on-dark {
  max-width: none;
}

.hl-check-grid--on-dark li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(232, 240, 250, 0.92);
}

/* —— FAQ —— */
.hl-faq-shell {
  max-width: 44rem;
  margin: 0 auto;
}

.hl-faq-group {
  margin: 0 0 2.5rem;
  background: var(--hl-mist);
  border-radius: calc(var(--hl-radius) - 2px);
  padding: 1.35rem 1.35rem 0.5rem;
}

.hl-stage--mist .hl-faq-group {
  background: #fff;
}

.hl-faq-group:last-child {
  margin-bottom: 0;
}

.hl-faq-group h3 {
  margin: 0 0 0.65rem;
  font-family: var(--hl-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hl-navy);
  letter-spacing: -0.02em;
}

.hl-faq {
  border-bottom: 1px solid rgba(11, 31, 68, 0.1);
}

.hl-faq:last-child {
  border-bottom: 0;
}

.hl-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.75rem 1.05rem 0;
  font-family: var(--hl-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--hl-navy);
  line-height: 1.4;
  position: relative;
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
}

.hl-faq summary::-webkit-details-marker {
  display: none;
}

.hl-faq summary::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--hl-blue);
  border-bottom: 2px solid var(--hl-blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s var(--hl-ease);
}

.hl-faq[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.hl-faq p {
  margin: 0 0 1.15rem;
  max-width: 52ch;
  color: var(--hl-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* —— End CTA —— */
.hl-end-cta {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, #0b1f44 0%, #07162f 100%);
  color: #fff;
  border-top: 4px solid var(--hl-blue-bright);
}

.hl-end-cta__inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.hl-end-cta h2 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: var(--hl-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  letter-spacing: -0.03em;
}

.hl-end-cta__lede {
  margin: 0 auto 1.75rem;
  color: rgba(232, 240, 250, 0.88);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 36ch;
}

.hl-end-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* —— Footer —— */
.hl-footer--explore {
  background: #fff;
  border-top: 1px solid var(--hl-line);
  text-align: center;
  padding-top: 2rem;
}

.hl-footer__explore {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  justify-content: center;
  margin: 0 0 1.25rem;
}

.hl-footer__explore a {
  color: var(--hl-navy-soft);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.hl-footer__explore a:hover {
  color: var(--hl-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  justify-content: center;
  margin: 0 0 0.85rem;
}

.hl-footer__legal-links a {
  color: var(--hl-navy-soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.hl-footer__legal-links a:hover {
  color: var(--hl-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-footer__legal {
  margin: 0;
}

.hl-footer__tagline {
  margin: 0.45rem 0 0;
  font-family: var(--hl-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hl-muted);
}

/* —— Legal / Terms —— */
.hl-legal-stage {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hl-legal-shell {
  max-width: 46rem;
}

.hl-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hl-line);
}

.hl-legal-nav a {
  color: var(--hl-navy-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.hl-legal-nav a:hover {
  color: var(--hl-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-legal-nav a.is-active {
  color: var(--hl-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-legal {
  color: var(--hl-ink, #12233f);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hl-legal > :first-child {
  margin-top: 0;
}

.hl-legal h1 {
  font-family: var(--hl-display);
  font-size: clamp(1.65rem, 2.4vw, 2.05rem);
  letter-spacing: -0.03em;
  color: var(--hl-navy);
  margin: 0 0 0.35rem;
}

.hl-legal h2 {
  font-family: var(--hl-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--hl-navy);
  margin: 2.4rem 0 0.75rem;
}

.hl-legal h3 {
  font-family: var(--hl-display);
  font-size: 1.05rem;
  color: var(--hl-navy-soft);
  margin: 1.65rem 0 0.55rem;
}

.hl-legal p {
  margin: 0 0 1rem;
  color: var(--hl-muted);
}

.hl-legal strong {
  color: var(--hl-navy);
  font-weight: 700;
}

.hl-legal ul,
.hl-legal ol {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
  color: var(--hl-muted);
}

.hl-legal li {
  margin: 0.35rem 0;
}

.hl-legal li::marker {
  color: var(--hl-blue);
}

.hl-legal hr {
  border: 0;
  border-top: 1px solid var(--hl-line);
  margin: 2rem 0;
}

.hl-legal a {
  color: var(--hl-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— Home about teaser CTA (kept from landing) —— */
.hl-section__more {
  margin-top: 1.35rem;
  padding-left: 0.85rem;
}

.hl-section__cta--inline {
  box-shadow: 0 8px 22px rgba(19, 45, 90, 0.12);
}

.hl-section--story .hl-section__cta--inline {
  background: var(--hl-navy);
  color: #fff !important;
}

.hl-section--story .hl-section__cta--inline:hover {
  background: var(--hl-blue);
  color: #fff !important;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .hl-process:has(li:nth-child(5)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hl-tier-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hl-explore-grid,
  .hl-tier-grid,
  .hl-feature-grid,
  .hl-phase-grid,
  .hl-process,
  .hl-process:has(li:nth-child(3):last-child),
  .hl-process:has(li:nth-child(5)),
  .hl-discount-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hl-feature-grid:has(li:nth-child(4):last-child) {
    grid-template-columns: 1fr 1fr;
  }

  .hl-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hl-check-grid {
    grid-template-columns: 1fr;
  }

  .hl-mkt-hero--promise h1,
  .hl-mkt-hero--center h1 {
    max-width: none;
  }

  .hl-promise {
    max-width: 36ch;
  }

  .hl-stage__header--center {
    max-width: none;
    padding: 0 0.15rem;
  }

  .hl-faq-group {
    padding: 1.15rem 1rem 0.35rem;
  }
}

@media (max-width: 720px) {
  .hl-mkt-navrail .hl-shell {
    padding: 0.7rem 0 0.8rem;
  }

  .hl-mkt-hero {
    padding: 2rem 0 1.85rem;
  }

  .hl-stage,
  .hl-end-cta {
    padding: clamp(2.35rem, 8vw, 3.25rem) 0;
  }

  .hl-explore-grid,
  .hl-tier-grid,
  .hl-tier-grid--two,
  .hl-feature-grid,
  .hl-feature-grid:has(li:nth-child(4):last-child),
  .hl-phase-grid,
  .hl-process,
  .hl-process:has(li:nth-child(3):last-child),
  .hl-process:has(li:nth-child(5)),
  .hl-discount-grid {
    grid-template-columns: 1fr;
  }

  .hl-compare-desktop {
    display: none;
  }

  .hl-compare-mobile {
    display: grid;
  }

  .hl-mkt-hero__symbol {
    width: min(120px, 42%);
    margin-bottom: 1rem;
  }

  .hl-mkt-hero h1,
  .hl-mkt-hero--promise h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
    max-width: none;
  }

  .hl-promise {
    max-width: none;
    font-size: clamp(1.08rem, 4.2vw, 1.28rem);
  }

  .hl-mkt-hero__lede,
  .hl-mkt-hero--promise .hl-mkt-hero__lede {
    max-width: none;
  }

  .hl-mkt-hero__actions,
  .hl-end-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hl-mkt-hero__inner {
    width: 100%;
  }

  .hl-btn {
    width: 100%;
    min-height: var(--touch-min);
  }

  .hl-tile,
  .hl-panel,
  .hl-process li {
    padding: 1.15rem 1.05rem 1.25rem;
  }

  .hl-stage h2,
  .hl-stage__header h2,
  .hl-end-cta h2 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .hl-prose,
  .hl-stage__lede,
  .hl-end-cta__lede,
  .hl-note {
    max-width: none;
    text-align: left;
  }

  .hl-stage__header--center,
  .hl-end-cta__inner,
  .hl-note {
    text-align: center;
  }

  .hl-end-cta__lede {
    text-align: center;
  }

  .hl-inline-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hl-inline-link--actions,
  .hl-note--actions {
    align-items: stretch;
  }

  .hl-inline-link--actions .hl-btn,
  .hl-note--actions .hl-btn,
  .hl-panel__link .hl-btn {
    width: 100%;
    min-height: var(--touch-min);
  }

  .hl-faq-shell {
    max-width: none;
  }

  .hl-faq summary {
    font-size: 0.98rem;
    padding-right: 1.5rem;
  }

  .hl-footer__explore {
    gap: 0.55rem 1rem;
  }

  .hl-footer__explore a {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hl-subnav__link {
    font-size: 0.78rem;
    padding: 0.5rem 0.8rem;
  }

  .hl-kicker {
    letter-spacing: 0.12em;
  }
}

/* —— Contact form —— */
.hl-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.hl-contact-layout__form .hl-stage__header {
  margin-bottom: 1.5rem;
}

.hl-contact-form {
  position: relative;
}

.hl-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.hl-contact-form .hl-field select,
.hl-contact-form .hl-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(11, 31, 68, 0.16);
  border-radius: 12px;
  background: #fff;
  color: var(--hl-ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hl-contact-form .hl-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%231a3566' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}

.hl-contact-form .hl-field textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.5;
}

.hl-contact-form .hl-field select:focus,
.hl-contact-form .hl-field textarea:focus {
  outline: none;
  border-color: var(--hl-blue);
  box-shadow: 0 0 0 4px rgba(47, 95, 176, 0.15);
}

.hl-field__optional {
  font-weight: 500;
  color: var(--hl-muted);
}

.hl-field__hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--hl-muted);
}

.hl-contact-form__submit {
  margin-top: 0.35rem;
  max-width: 18rem;
}

.hl-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hl-contact-aside {
  padding: 1.6rem 1.5rem 1.75rem;
  border-radius: var(--radius-marketing, 18px);
  background: linear-gradient(165deg, #eef3f9 0%, #e4ecf7 55%, #dce6f4 100%);
  border: 1px solid rgba(11, 31, 68, 0.08);
}

.hl-contact-aside h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--hl-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--hl-navy);
  letter-spacing: -0.02em;
}

.hl-contact-aside > p {
  margin: 0 0 1.25rem;
  color: var(--hl-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hl-contact-aside a {
  color: var(--hl-blue);
  font-weight: 600;
  text-decoration: none;
}

.hl-contact-aside a:hover {
  text-decoration: underline;
}

.hl-contact-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hl-contact-aside__list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hl-contact-aside__list strong {
  font-family: var(--hl-display);
  font-size: 0.92rem;
  color: var(--hl-navy);
}

.hl-contact-aside__list span {
  font-size: 0.9rem;
  color: var(--hl-muted);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .hl-contact-layout {
    grid-template-columns: 1fr;
  }

  .hl-contact-aside {
    order: -1;
  }
}

@media (max-width: 560px) {
  .hl-contact-form__grid {
    grid-template-columns: 1fr;
  }

  .hl-contact-form__submit {
    max-width: none;
  }
}

@supports not selector(:has(*)) {
  .hl-process {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
