.home-static-page {
  --hms-red: #e11324;
  --hms-red-deep: #c8101f;
  --hms-ink: #16181d;
  --hms-muted: #5b606b;
  --hms-muted-2: #8a8f99;
  --hms-border: #eceaec;
  --hms-border-soft: #f1eeee;
  --hms-green: #1e9e5e;
  --hms-green-soft: #e7f7ef;
  --hms-blue: #3b82f6;
  --hms-shadow: 0 1px 2px rgba(16, 18, 25, .04), 0 10px 30px rgba(16, 18, 25, .06);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

.home-static-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.home-static-page ::selection {
  background: rgba(225, 19, 36, .14);
}

#about,
#cmj-signup,
#employer-highlights,
#employer-platform {
  scroll-margin-top: 90px;
}

.home-static-page a:focus-visible,
.home-static-page button:focus-visible,
.home-static-page input:focus-visible {
  outline: 2px solid var(--hms-red);
  outline-offset: 2px;
}

.hms-hero h1,
.hms-about h2,
.hms-sec h2,
.hms-emp h2,
.hms-pr-head h2,
.hms-emp-plat-head h3,
.hms-rec-head h3,
.hms-cta-mid h2 {
  text-wrap: balance;
}

.hms-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 48px);
}

.hms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--hms-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.hms-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--hms-red);
  border-radius: 2px;
}

/* buttons */
.hms-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: 14px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .22s ease, transform .18s ease;
}

.hms-btn:hover {
  transform: translateY(-1px);
}

.hms-btn:active {
  transform: translateY(0);
  transition-duration: .06s;
}

.hms-btn svg {
  width: 18px;
  height: 18px;
}

.hms-btn-red {
  background: var(--hms-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(225, 19, 36, .26);
}

.hms-btn-red svg {
  stroke: #fff;
  fill: none;
}

.hms-btn-red:hover {
  background: var(--hms-red-deep);
  box-shadow: 0 12px 28px rgba(225, 19, 36, .34);
}

.hms-btn-ro {
  background: #fff;
  border-color: var(--hms-red);
  color: var(--hms-red);
}

.hms-btn-ro svg {
  stroke: var(--hms-red);
  fill: none;
}

.hms-btn-ro:hover {
  background: #fff5f5;
}

.hms-btn-gh {
  background: #fff;
  border-color: var(--hms-border);
  color: #2b2e35;
}

.hms-btn-gh svg {
  stroke: #2b2e35;
  fill: none;
}

.hms-btn-gh:hover {
  background: #faf8f8;
  border-color: #ddd9d9;
}

.hms-btn.hms-pill {
  border-radius: 30px;
}

/* ===== HERO (dark, immersive) ===== */
/* Depth comes from the photo + a single scrim/glow overlay (.hms-hero-bg-ov);
   muted text tones are tokenized here so the dark-on-light values stay in sync. */
.hms-hero {
  --hms-hero-text: #c4c6cb;
  --hms-hero-muted: #9a9ca3;
  --hms-hero-live: #22c55e;
  background: radial-gradient(120% 90% at 0% 20%, #3a0b10 0%, #1a0708 32%, #0c0c0f 62%), #0b0b0e;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 80px);
  overflow: hidden;
  isolation: isolate;
}

/* full-bleed photo across the whole hero (scrim handles readability) */
.hms-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hms-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1.05);
  animation: hms-hero-zoom 18s ease-out forwards;
}

@keyframes hms-hero-zoom {
  to { transform: scale(1); }
}

.hms-hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .02) 0 2px, transparent 2px 22px);
}

.hms-hero-bg-ov {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(44% 60% at 12% 26%, rgba(225, 19, 36, .2), transparent 68%),
    linear-gradient(90deg, #0b0b0e 0%, rgba(11, 11, 14, .92) 26%, rgba(11, 11, 14, .5) 46%, rgba(11, 11, 14, .12) 66%, rgba(11, 11, 14, 0) 100%),
    linear-gradient(180deg, rgba(11, 11, 14, .12) 0%, transparent 40%, rgba(11, 11, 14, .42) 100%);
}

.hms-hero-layout {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  align-content: center;
  padding-top: 39px;
  padding-bottom: 46px;
}

.hms-hero-copy {
  animation: hms-fade-up .7s cubic-bezier(.16, .68, .26, 1) both;
}

@keyframes hms-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.hms-hero h1 {
  font-size: clamp(2.7rem, 5.8vw, 74px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: .98;
  margin: 24px 0 30px;
}

.hms-hero h1 .hms-rd {
  color: var(--hms-red);
  display: block;
}

.hms-hero .hms-lead {
  color: var(--hms-hero-text);
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 34px;
}

.hms-hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

/* one-time shine sweep across the primary CTA */
.hms-hero-btns .hms-btn-red {
  position: relative;
  overflow: hidden;
}

.hms-hero-btns .hms-btn-red::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-18deg);
  animation: hms-shine 5s ease-in-out 1.4s infinite;
}

@keyframes hms-shine {
  0% { left: -130%; }
  24% { left: 140%; }
  100% { left: 140%; }
}

.hms-hero-chips {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 760px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hms-hstat {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  min-height: auto;
  padding: 0 24px 0 0;
}

.hms-hstat:first-child {
  padding-left: 0;
}

.hms-hstat + .hms-hstat {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.hms-hstat > div {
  min-width: 0;
}

.hms-hstat-ic {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: rgba(225, 19, 36, .14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-hstat-ic svg {
  width: 19px;
  height: 19px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-hstat-num {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.2px;
  font-variant-numeric: tabular-nums;
}

.hms-hstat-label {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--hms-hero-muted);
}

/* ===== Floating glass cards over the photo ===== */
.hms-hero-stage {
  position: relative;
  min-height: 540px;
}

@keyframes hms-float-in {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: none; }
}

@keyframes hms-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* small floating glass cards over the photo */
.hms-float {
  position: absolute;
  background: rgba(18, 13, 14, .68);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: hms-float-in .8s cubic-bezier(.16, .68, .26, 1) both, hms-bob 6s ease-in-out infinite;
}

.hms-float-hires {
  top: 2%;
  right: 3%;
  max-width: 290px;
  animation-delay: .35s, 1s;
}

.hms-float-live {
  top: 40%;
  left: -6%;
  animation-delay: .5s, 1.4s;
}

.hms-float-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.hms-float b {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.hms-float small {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--hms-hero-muted);
}

.hms-float-hires .hms-sh {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 11px;
  background: rgba(225, 19, 36, .16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-float-hires .hms-sh svg {
  width: 22px;
  height: 22px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-float-live .hms-live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--hms-hero-live);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
  animation: hms-pulse 1.9s ease-out infinite;
}

@keyframes hms-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); }
  70% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* featured job card + marquee share one bottom rail */
.hms-hero-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.hms-hero-featured-shell {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0 clamp(22px, 4vw, 48px);
  margin-bottom: 24px;
  pointer-events: none;
}

.hms-featured-card {
  position: relative;
  width: min(390px, 100%);
  max-width: min(390px, calc(100vw - 44px));
  background: rgba(18, 13, 14, .68);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .55);
  backdrop-filter: blur(12px);
  padding: 22px 24px;
  animation: hms-float-in .8s cubic-bezier(.16, .68, .26, 1) .25s both, hms-bob 7s ease-in-out 1.1s infinite;
}

.hms-featured-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--hms-red);
  margin-bottom: 11px;
}

.hms-featured-title {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hms-featured-meta {
  font-size: 13.5px;
  color: var(--hms-hero-muted);
  margin-bottom: 12px;
}

.hms-featured-meta span {
  margin: 0 5px;
  opacity: .6;
}

.hms-featured-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #b6b8bd;
  margin-bottom: 15px;
}

.hms-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.hms-featured-tag {
  font-size: 12px;
  font-weight: 700;
  color: #d6d8dd;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 5px 11px;
}

.hms-featured-tag.is-featured {
  color: var(--hms-red);
  background: rgba(225, 19, 36, .15);
}

/* ===== Trust marquee ===== */
.hms-hero-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 7, 9, .4);
}

.hms-marquee-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.hms-marquee-label {
  flex: 0 1 220px;
  min-width: 0;
  max-width: 220px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hms-hero-muted);
  line-height: 1.25;
}

.hms-marquee-label-short {
  display: none;
}

.hms-marquee-viewport {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.hms-marquee-track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: hms-marquee 28s linear infinite;
}

.hms-marquee-track span {
  font-size: 15px;
  font-weight: 700;
  color: #c4c6cb;
  opacity: .68;
  white-space: nowrap;
}

@keyframes hms-marquee {
  to { transform: translateX(-50%); }
}

.hms-hero-marquee:hover .hms-marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .hms-hero-bg-img,
  .hms-hero-copy,
  .hms-featured-card,
  .hms-float,
  .hms-float-live .hms-live-dot,
  .hms-marquee-track,
  .hms-hero-btns .hms-btn-red::after {
    animation: none;
  }

  .hms-hero-bg-img { transform: none; }
  .hms-hero-copy { opacity: 1; }
}

.hms-photo-fill {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.6s cubic-bezier(.16, .68, .26, 1);
}

.hms-ab-img:hover .hms-photo-fill,
.hms-emp-img:hover .hms-photo-fill {
  transform: scale(1.045);
}

.hms-ab-img::before,
.hms-emp-img::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hms-ab-img::before {
  background: linear-gradient(180deg, rgba(8, 8, 10, .04), rgba(8, 8, 10, 0) 50%, rgba(8, 8, 10, .2));
  z-index: 1;
}

.hms-ab-img .hms-photo-fill {
  object-position: center 28%;
}

/* ===== LIGHT BAND ===== */
.hms-lightband {
  background: linear-gradient(180deg, #fbf6f6 0%, #f7f3f3 100%);
  position: relative;
  overflow: hidden;
}

/* ABOUT */
.hms-about {
  padding-top: 88px;
}

.hms-about-top {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 54px;
  align-items: center;
  margin-bottom: 46px;
}

.hms-about h2 {
  font-size: clamp(2rem, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.04;
  margin: 16px 0 20px;
  color: var(--hms-ink);
}

.hms-about h2 .hms-rd {
  color: var(--hms-red);
}

.hms-about .hms-para {
  color: var(--hms-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 520px;
}

.hms-about .hms-para b {
  color: #2b2e35;
  font-weight: 700;
}

.hms-ab-feats {
  display: flex;
  gap: 36px;
  margin-bottom: 30px;
}

.hms-ab-feat {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.hms-ab-feat .hms-ic {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: #fdeaec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-ab-feat .hms-ic svg {
  width: 20px;
  height: 20px;
  fill: var(--hms-red);
  stroke: var(--hms-red);
}

.hms-ab-feat b {
  display: block;
  font-size: 15px;
  color: var(--hms-ink);
  font-weight: 700;
}

.hms-ab-feat small {
  font-size: 13.5px;
  color: var(--hms-muted);
}

.hms-ab-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hms-ab-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 330px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.hms-ab-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(10, 10, 12, .65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hms-ab-badge svg {
  width: 32px;
  height: 32px;
  fill: var(--hms-red);
}

.hms-ab-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0), rgba(10, 10, 12, .9));
  padding: 26px 24px 18px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hms-ab-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.hms-ab-stat:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 14px;
}

.hms-ab-stat svg {
  width: 18px;
  height: 18px;
  stroke: var(--hms-red);
  fill: var(--hms-red);
}

.hms-ab-stat b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
}

.hms-ab-stat small {
  font-size: 11.5px;
  color: #b9bbc0;
}

.hms-ab-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-bottom: 88px;
}

.hms-spot {
  padding-bottom: 58px;
}

.hms-spot-shell {
  display: grid;
  gap: 28px;
  background:
    radial-gradient(130% 140% at 100% 0%, rgba(225, 19, 36, .12), transparent 48%),
    linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  border: 1px solid #f1d9dc;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 2px 4px rgba(16, 18, 25, .04), 0 24px 50px rgba(16, 18, 25, .08);
}

.hms-spot-copy-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.hms-spot-copy h2 {
  font-size: clamp(2rem, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.2px;
  color: var(--hms-ink);
  margin: 16px 0 18px;
}

.hms-spot-copy h2 .hms-rd {
  color: var(--hms-red);
}

.hms-spot-copy .hms-lead {
  max-width: 640px;
  margin-bottom: 0;
}

.hms-spot-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 22px;
}

.hms-spot-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 220px;
}

.hms-spot-feat .hms-ic {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: #fdeaec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-spot-feat .hms-ic svg {
  width: 19px;
  height: 19px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-spot-feat b {
  display: block;
  font-size: 14px;
  color: var(--hms-ink);
  font-weight: 800;
  margin-bottom: 3px;
}

.hms-spot-feat small {
  display: block;
  font-size: 13px;
  color: var(--hms-muted);
  line-height: 1.5;
}

.hms-spot-actions {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.hms-spot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hms-spot-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  background: #111418;
  border: 1px solid rgba(225, 19, 36, .22);
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 20px 46px rgba(13, 14, 18, .28);
}

.hms-spot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, .18) 0%, rgba(10, 11, 14, .52) 45%, rgba(10, 11, 14, .76) 100%),
    radial-gradient(circle at 88% 10%, rgba(225, 19, 36, .22), transparent 34%),
    url("/assets/images/postajob/fouding.png") center / cover no-repeat;
  opacity: .82;
  transform: scale(1.04);
  z-index: 0;
}

.hms-spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(20, 22, 26, .8) 0%, rgba(15, 16, 19, .6) 48%, rgba(43, 10, 15, .78) 100%);
  z-index: 1;
}

.hms-spot-card > * {
  position: relative;
  z-index: 2;
}

.hms-spot-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.hms-spot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hms-spot-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(160deg, #f03a49, #b90e1b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: 0 16px 32px rgba(225, 19, 36, .32);
}

.hms-spot-mark-gold {
  background: linear-gradient(160deg, #f59f0b, #d97706);
  box-shadow: 0 16px 32px rgba(245, 158, 11, .25);
}

.hms-spot-mark-slate {
  background: linear-gradient(160deg, #52525b, #27272a);
  box-shadow: 0 16px 32px rgba(39, 39, 42, .25);
}

.hms-spot-brand-kicker {
  display: block;
  color: #ff9aa4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hms-spot-brand h3 {
  margin: 0 0 3px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.06;
}

.hms-spot-brand p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.hms-spot-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, .35);
  background: rgba(34, 197, 94, .12);
  color: #9af0b8;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hms-spot-card-copy {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.65;
}

.hms-spot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hms-spot-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 7px 11px;
  color: rgba(255, 255, 255, .82);
  font-size: 11.5px;
  font-weight: 700;
}

.hms-spot-link {
  margin-top: auto;
  align-self: flex-start;
}

.hms-ab-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 16px;
  box-shadow: var(--hms-shadow);
  padding: 26px 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hms-ab-card:hover {
  transform: translateY(-4px);
  border-color: #f0cdd1;
  box-shadow: 0 2px 4px rgba(16, 18, 25, .04), 0 20px 44px rgba(16, 18, 25, .1);
}

.hms-ab-card .hms-arr svg {
  transition: transform .22s ease;
}

.hms-ab-card:hover .hms-arr svg {
  transform: translateX(4px);
}

.hms-ab-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--hms-red);
  border-radius: 2px;
  margin-bottom: 22px;
}

.hms-ab-card .hms-cic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fdeaec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hms-ab-card .hms-cic svg {
  width: 22px;
  height: 22px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-ab-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--hms-ink);
  line-height: 1.2;
  margin-bottom: 11px;
}

.hms-ab-card p {
  color: var(--hms-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.hms-ab-card .hms-arr svg {
  width: 20px;
  height: 20px;
  stroke: var(--hms-red);
  fill: none;
}

/* shared section heads */
.hms-sec {
  padding-top: 30px;
  padding-bottom: 74px;
}

.hms-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.hms-sec h2 {
  font-size: clamp(1.9rem, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin: 16px 0 18px;
  color: var(--hms-ink);
}

.hms-sec .hms-lead {
  color: var(--hms-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 28px;
}

.hms-sec .hms-lead .hms-rd {
  color: var(--hms-red);
  font-weight: 700;
}

.hms-sec-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

/* PREMIUM NEWSLETTER */
.hms-nl-feats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px 22px;
  margin-bottom: 28px;
}

.hms-nlf .hms-ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #fdeef0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  box-shadow: 0 4px 12px rgba(225, 19, 36, .08);
}

.hms-nlf .hms-ic svg {
  width: 19px;
  height: 19px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-nlf b {
  display: block;
  font-size: 14.5px;
  color: var(--hms-ink);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}

.hms-nlf p {
  font-size: 12.5px;
  color: var(--hms-muted);
  line-height: 1.45;
}

.hms-nl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid var(--hms-border);
  padding-top: 24px;
  margin-bottom: 20px;
}

.hms-nls {
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 12px;
  padding: 14px 15px;
}

.hms-nls .hms-ic {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.hms-nls .hms-ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-nls .hms-ic b {
  font-size: 19px;
  font-weight: 800;
  color: var(--hms-ink);
}

.hms-nls .hms-ic b.hms-rd {
  color: var(--hms-red);
  font-size: 16px;
}

.hms-nls strong {
  display: block;
  font-size: 12px;
  color: var(--hms-ink);
  font-weight: 700;
}

.hms-nls small {
  font-size: 11px;
  color: var(--hms-muted-2);
}

.hms-nl-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--hms-muted);
  font-size: 13.5px;
}

.hms-nl-trust svg {
  width: 17px;
  height: 17px;
  stroke: var(--hms-green);
  fill: none;
}

/* newsletter preview card */
.hms-nlcard {
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 16px;
  box-shadow: var(--hms-shadow);
  padding: 24px 26px;
  margin-bottom: 22px;
}

.hms-nlc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 2px solid var(--hms-red);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.hms-nlc-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hms-nlc-logo .hms-bm {
  width: 42px;
  height: 34px;
}

.hms-nlc-logo b {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--hms-ink);
  line-height: 1;
}

.hms-nlc-logo .hms-r {
  color: var(--hms-red);
  font-size: 13px;
  font-weight: 900;
}

.hms-nlc-meta {
  text-align: right;
  font-size: 11px;
  color: var(--hms-muted-2);
  font-weight: 700;
  letter-spacing: .5px;
}

.hms-nlc-meta .hms-d {
  color: #3c3f46;
  font-weight: 500;
  margin-top: 3px;
}

.hms-nlc-hi {
  font-size: 13.5px;
  color: #3c3f46;
  line-height: 1.5;
  margin-bottom: 16px;
}

.hms-feat-job {
  border: 1px solid var(--hms-border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 18px;
}

.hms-fj-logo {
  width: 96px;
  flex: 0 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--hms-ink);
}

.hms-fj-logo svg {
  width: 50px;
  height: 54px;
}

.hms-fj-logo b {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .5px;
  text-align: center;
  line-height: 1.1;
}

.hms-fj-logo small {
  font-size: 7px;
  letter-spacing: 2px;
  color: #9aa0ab;
}

.hms-fj-body {
  flex: 1;
}

.hms-fj-tag {
  display: inline-block;
  background: var(--hms-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 9px;
}

.hms-fj-body h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--hms-ink);
  margin-bottom: 5px;
}

.hms-fj-co {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hms-ink);
  margin-bottom: 5px;
}

.hms-fj-co svg {
  width: 14px;
  height: 14px;
  fill: var(--hms-blue);
}

.hms-fj-loc {
  font-size: 12.5px;
  color: var(--hms-muted-2);
  margin-bottom: 9px;
}

.hms-fj-desc {
  font-size: 13px;
  color: var(--hms-muted);
  line-height: 1.5;
  margin-bottom: 13px;
}

.hms-fj-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}

.hms-fbg {
  border-radius: 6px;
  padding: 4px 11px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .3px;
}

.hms-fbg.hms-f {
  background: #fdeaec;
  color: var(--hms-red);
}

.hms-fbg.hms-c {
  background: #f4f5f7;
  color: #5b606b;
}

.hms-fbg.hms-v {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--hms-green-soft);
  color: var(--hms-green);
}

.hms-fbg.hms-v svg {
  width: 12px;
  height: 12px;
  fill: var(--hms-green);
}

.hms-fj-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hms-red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .18s ease;
}

.hms-fj-view:hover {
  background: var(--hms-red-deep);
}

.hms-fj-view svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
}

.hms-nlc-more {
  text-align: center;
  color: var(--hms-muted);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.hms-nlc-more svg {
  width: 14px;
  height: 14px;
  stroke: var(--hms-muted-2);
  fill: none;
}

/* comparison */
.hms-cmp {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 16px;
  overflow: hidden;
}

.hms-cmp-col {
  padding: 22px 24px;
}

.hms-cmp-col.hms-prem {
  background: #fef4f5;
  border: 1.5px solid #f3c6ca;
  border-radius: 14px;
}

.hms-cmp-col h5 {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--hms-ink);
  margin-bottom: 16px;
}

.hms-cmp-col.hms-prem h5 {
  color: var(--hms-red);
}

.hms-cmp-row {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: #3c3f46;
  padding: 7px 0;
}

.hms-cmp-row svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.hms-cmp-col .hms-cmp-row svg {
  stroke: #aeb2ba;
  fill: none;
}

.hms-cmp-col.hms-prem .hms-cmp-row svg {
  stroke: var(--hms-red);
  fill: none;
}

.hms-cmp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.hms-cmp-vs span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--hms-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #3c3f46;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

/* WEEKLY ALERTS */
.hms-al-feats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 20px;
  margin-bottom: 30px;
}

/* Stretch the alerts column to match the newsletter card and spread features */
.hms-al-left {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.hms-al-left .hms-al-feats {
  align-content: start;
  margin-bottom: 0;
}

.hms-alf {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hms-alf .hms-ic {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  background: #fdeef0;
  border: 1px solid rgba(225, 19, 36, .16);
  box-shadow: 0 4px 12px rgba(225, 19, 36, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-alf .hms-ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-alf b {
  display: block;
  font-size: 14px;
  color: var(--hms-ink);
  font-weight: 700;
  margin-bottom: 3px;
}

.hms-alf p {
  font-size: 12px;
  color: var(--hms-muted);
  line-height: 1.4;
}

.hms-signup {
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 16px;
  box-shadow: var(--hms-shadow);
  padding: 18px;
}

/* High-emphasis hero variant: containerless, blends into the section */
.hms-signup-hero {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 18px;
}

.hms-signup-hero .hms-signup-row {
  margin-bottom: 10px;
}

.hms-signup-hero input {
  padding: 16px 18px;
  font-size: 15px;
}

.hms-signup-hero .hms-sub {
  padding: 16px 30px;
  font-size: 15px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(225, 19, 36, .26);
}

.hms-signup-hero .hms-sub:hover {
  box-shadow: 0 10px 24px rgba(225, 19, 36, .34);
}

.hms-signup-hero .hms-signup-note {
  padding-left: 0;
  gap: 22px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hms-signup-hero .hms-signup-note svg {
  width: 15px;
  height: 15px;
  stroke: var(--hms-muted);
}

.hms-signup-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}

.hms-signup .hms-mic {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 11px;
  background: #fdeef0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-signup .hms-mic svg {
  width: 20px;
  height: 20px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-signup input {
  flex: 1;
  border: 1px solid var(--hms-border);
  border-radius: 11px;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.hms-signup input::placeholder {
  color: var(--hms-muted-2);
}

.hms-signup input:focus {
  border-color: var(--hms-red);
  box-shadow: 0 0 0 3px rgba(225, 19, 36, .1);
}

.hms-signup .hms-sub {
  background: var(--hms-red);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .22s ease;
}

.hms-signup .hms-sub:hover {
  background: var(--hms-red-deep);
  box-shadow: 0 8px 18px rgba(225, 19, 36, .28);
}

.hms-signup-note {
  display: flex;
  gap: 20px;
  font-size: 11.5px;
  color: var(--hms-muted-2);
  padding-left: 60px;
  flex-wrap: wrap;
}

.hms-signup-note span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hms-signup-note svg {
  width: 13px;
  height: 13px;
  stroke: var(--hms-muted-2);
  fill: none;
}

.hms-wkcard {
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 16px;
  box-shadow: var(--hms-shadow);
  padding: 24px 26px;
}

.hms-wk-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 2px solid var(--hms-red);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.hms-wk-head .hms-bm {
  width: 54px;
  height: 44px;
  flex: 0 0 54px;
}

.hms-wk-head .hms-ht {
  flex: 1;
}

.hms-wk-head .hms-ht b {
  font-size: 17px;
  font-weight: 800;
  color: var(--hms-ink);
}

.hms-wk-head .hms-ht small {
  display: block;
  font-size: 12.5px;
  color: var(--hms-muted);
  margin-top: 2px;
}

.hms-wk-head .hms-hr {
  text-align: right;
  font-size: 11px;
}

.hms-wk-head .hms-hr .hms-r {
  color: var(--hms-red);
  font-weight: 800;
  letter-spacing: .5px;
}

.hms-wk-head .hms-hr .hms-dt {
  color: #3c3f46;
  font-weight: 600;
  margin: 3px 0;
}

.hms-wk-head .hms-hr .hms-ev {
  color: var(--hms-muted-2);
}

.hms-wk-feat-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hms-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hms-wk-feat-lbl svg {
  width: 15px;
  height: 15px;
  fill: var(--hms-red);
}

.hms-wk-feat {
  border: 1px solid var(--hms-border);
  border-radius: 13px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hms-wk-feat .hms-jic {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 11px;
  background: #fdeef0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-wk-feat .hms-jic svg {
  width: 26px;
  height: 26px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-wk-feat .hms-jb {
  flex: 1;
  min-width: 180px;
}

.hms-wk-feat .hms-jb h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--hms-ink);
  margin-bottom: 3px;
}

.hms-wk-feat .hms-jb .hms-co {
  font-size: 13px;
  color: var(--hms-muted);
  margin-bottom: 8px;
}

.hms-wk-feat .hms-jb .hms-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.hms-tg {
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 700;
  background: #f4f5f7;
  color: #5b606b;
}

.hms-tg.hms-f {
  background: #fdeaec;
  color: var(--hms-red);
}

.hms-vemp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  color: var(--hms-ink);
  letter-spacing: .3px;
}

.hms-vemp svg {
  width: 18px;
  height: 18px;
  fill: var(--hms-ink);
}

.hms-wk-feat-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.hms-wk-vj {
  border: 1px solid #f3c6ca;
  background: #fff;
  color: var(--hms-red);
  border-radius: 9px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease;
}

.hms-wk-vj:hover {
  background: #fdeaec;
  border-color: #eda9af;
}

.hms-wk-more-lbl {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--hms-muted-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hms-wk-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hms-border-soft);
  flex-wrap: wrap;
}

.hms-wk-row .hms-jic {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: #fdeef0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-wk-row .hms-jic svg {
  width: 20px;
  height: 20px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-wk-row .hms-jb {
  flex: 1;
  min-width: 140px;
}

.hms-wk-row .hms-jb b {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--hms-ink);
}

.hms-wk-row .hms-jb .hms-co {
  font-size: 12px;
  color: var(--hms-muted-2);
}

.hms-wk-row .hms-tags {
  display: flex;
  gap: 6px;
}

.hms-wk-foot {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fdf2f2;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 14px;
}

.hms-wk-foot .hms-mic {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: #fdeaec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-wk-foot .hms-mic svg {
  width: 18px;
  height: 18px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-wk-foot b {
  font-size: 13px;
  color: var(--hms-ink);
}

.hms-wk-foot small {
  font-size: 12px;
  color: var(--hms-muted);
}

.hms-wk-foot small .hms-r {
  color: var(--hms-red);
  font-weight: 600;
}

.hms-al-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 16px;
  box-shadow: var(--hms-shadow);
  padding: 22px 24px;
  margin-top: 30px;
}

.hms-als {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hms-als:not(:first-child) {
  border-left: 1px solid var(--hms-border-soft);
  padding-left: 18px;
}

.hms-als .hms-ic {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 11px;
  background: #fdeef0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-als .hms-ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--hms-red);
  fill: var(--hms-red);
}

.hms-als b {
  display: block;
  font-size: 23px;
  font-weight: 800;
  color: var(--hms-red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hms-als b.hms-sm {
  font-size: 18px;
}

.hms-als strong {
  font-size: 13.5px;
  color: var(--hms-ink);
  font-weight: 700;
}

.hms-als small {
  display: block;
  font-size: 11.5px;
  color: var(--hms-muted-2);
}

.home-static-page main {
  display: flex;
  flex-direction: column;
}

/* ===== DARK BAND (employers + pricing) ===== */
.hms-darkband {
  background: radial-gradient(100% 80% at 0% 0%, #2a0a0e 0%, #140709 26%, #0b0b0e 55%), #0b0b0e;
  color: #fff;
  position: relative;
  overflow: hidden;
  flex: 1 0 auto;
}

.hms-darkband::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 6% 14%, rgba(225, 19, 36, .06) 0 1px, transparent 1px 38px);
  opacity: .7;
}

.hms-darkband .hms-wrap {
  position: relative;
  z-index: 2;
}

.hms-emp {
  padding-top: 88px;
}

.hms-emp-top {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 64px;
}

.hms-emp h2 {
  font-size: clamp(2.2rem, 4.3vw, 54px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.02;
  margin: 22px 0 22px;
}

.hms-emp .hms-lead {
  color: #c2c4c9;
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}

.hms-emp .hms-lead .hms-rd {
  color: var(--hms-red);
  font-weight: 700;
}

.hms-emp-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hms-btn-dk {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
}

.hms-btn-dk svg {
  stroke: #fff;
  fill: none;
}

.hms-btn-dk:hover {
  background: rgba(255, 255, 255, .08);
}

.hms-emp-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 26px 56px rgba(0, 0, 0, .45);
  min-height: 440px;
}

.hms-emp-img::before {
  background: linear-gradient(180deg, rgba(7, 7, 9, .05), rgba(7, 7, 9, .18) 42%, rgba(7, 7, 9, .72));
  z-index: 1;
}

.hms-emp-img .hms-photo-fill {
  object-position: center center;
}

.hms-emp-img .hms-ov {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 11, 14, 0), rgba(11, 11, 14, .95));
  padding: 40px 26px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 3;
}

.hms-emp-img .hms-ov .hms-ci {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--hms-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-emp-img .hms-ov .hms-ci svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}

.hms-emp-img .hms-ov p {
  font-size: 14.5px;
  color: #e6e7ea;
  line-height: 1.45;
}

.hms-emp-plat-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 22px;
}

.hms-emp-plat-head h3 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: 14px;
}

.hms-emp-plat-head .hms-rt {
  color: #b5b7bd;
  font-size: 15px;
  line-height: 1.55;
}

.hms-emp-plat-head .hms-rt .hms-rd {
  color: var(--hms-red);
}

.hms-emp-chips {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hms-echip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  padding: 11px 17px;
  font-size: 13.5px;
  font-weight: 600;
  color: #d4d5d9;
}

.hms-echip svg {
  width: 15px;
  height: 15px;
  stroke: #b6b8be;
  fill: none;
}

.hms-emp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 46px;
}

.hms-emp-news-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  box-shadow: 0 28px 60px rgba(0, 0, 0, .28);
  padding: 38px 38px 40px;
}

.hms-emp-news-shell::before {
  content: "";
  position: absolute;
  left: -96px;
  bottom: -156px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(225, 19, 36, .22) 0, rgba(225, 19, 36, .08) 40%, transparent 72%);
  pointer-events: none;
}

.hms-emp-news-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.hms-emp-news h3 {
  font-size: clamp(1.95rem, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin: 16px 0 18px;
  color: #fff;
}

.hms-emp-news .hms-lead {
  color: #c7c9cf;
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 28px;
}

.hms-emp-news .hms-nlf .hms-ic {
  background: rgba(225, 19, 36, .12);
  border: 1px solid rgba(225, 19, 36, .18);
  box-shadow: none;
}

.hms-emp-news .hms-nlf b {
  color: #fff;
}

.hms-emp-news .hms-nlf p {
  color: #b7bbc3;
}

.hms-emp-news .hms-nl-stats {
  border-top-color: rgba(255, 255, 255, .08);
}

.hms-emp-news .hms-nls {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.hms-emp-news .hms-nls .hms-ic b,
.hms-emp-news .hms-nls strong {
  color: #fff;
}

.hms-emp-news .hms-nls .hms-ic b.hms-rd {
  color: var(--hms-red);
}

.hms-emp-news .hms-nls small {
  color: #b7bbc3;
}

.hms-emp-news .hms-nl-trust {
  color: #c7c9cf;
}

.hms-emp-news .hms-nlcard,
.hms-emp-news .hms-cmp {
  box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
}

.hms-emp-news .hms-nlcard {
  background: #fcf8f7;
  border-color: rgba(255, 255, 255, .08);
}

.hms-emp-news .hms-cmp {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08);
  grid-template-columns: minmax(0, .96fr) auto minmax(0, 1.04fr);
}

.hms-emp-news .hms-cmp-col {
  background: transparent;
  position: relative;
  padding: 28px 28px 26px;
}

.hms-emp-news .hms-cmp-col h5 {
  color: #eef0f4;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.35px;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 20px;
}

.hms-emp-news .hms-cmp-col h5::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.hms-emp-news .hms-cmp-row {
  color: #c7c9cf;
  font-size: 14px;
  line-height: 1.45;
}

.hms-emp-news .hms-cmp-col .hms-cmp-row svg {
  stroke: rgba(255, 255, 255, .34);
}

.hms-emp-news .hms-cmp-col.hms-prem {
  background: linear-gradient(180deg, rgba(118, 24, 34, .9), rgba(68, 16, 22, .98));
  border-color: rgba(255, 109, 121, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 34px rgba(225, 19, 36, .16);
}

.hms-emp-news .hms-cmp-col.hms-prem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4255, #ffb0b7);
}

.hms-emp-news .hms-cmp-col.hms-prem h5 {
  color: #fff;
}

.hms-emp-news .hms-cmp-col.hms-prem h5::after {
  width: 58px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .24), #ff7e8a, rgba(255, 255, 255, .24));
}

.hms-emp-news .hms-cmp-col.hms-prem .hms-cmp-row {
  color: #fff1f2;
  font-weight: 600;
}

.hms-emp-news .hms-cmp-col.hms-prem .hms-cmp-row svg {
  stroke: #ff6d79;
}

.hms-emp-news .hms-cmp-vs span {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: none;
}

.hms-ecard {
  position: relative;
  background: #fbf9f9;
  border: 1px solid rgba(225, 19, 36, .25);
  border-radius: 16px;
  padding: 26px 26px;
  overflow: hidden;
  min-height: 248px;
}

.hms-ecard .hms-step {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(22, 24, 29, .3);
  z-index: 2;
}

.hms-ecard .hms-wm {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 196px;
  height: 128px;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.hms-ecard .hms-wm img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.hms-ecard-lbl {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--hms-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.hms-ecard-lbl svg {
  width: 16px;
  height: 16px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-ecard h4 {
  font-size: 21px;
  font-weight: 800;
  color: var(--hms-ink);
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.hms-ecard .hms-ln {
  width: 34px;
  height: 3px;
  background: var(--hms-red);
  border-radius: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.hms-ecard .hms-pr {
  font-size: 28px;
  font-weight: 800;
  color: var(--hms-ink);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.hms-ecard .hms-ds {
  font-size: 13.5px;
  color: var(--hms-muted);
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

.hms-ecard .hms-ds .hms-rd {
  color: var(--hms-red);
  font-weight: 700;
}

/* PRICING */
.hms-pricing {
  padding-top: 84px;
}

.hms-pr-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}

.hms-pr-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.3px;
  line-height: 1.06;
  margin-top: 14px;
}

.hms-pr-head .hms-rt {
  color: #b5b7bd;
  font-size: 15px;
  line-height: 1.6;
}

.hms-pr-head .hms-rt .hms-rd {
  color: var(--hms-red);
  font-weight: 700;
}

.hms-pr-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.hms-pcard {
  border-radius: 16px;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
}

.hms-pcard.hms-light {
  background: #f7f5f5;
  border: 1px solid #e7e3e3;
}

.hms-pcard.hms-ent {
  background: radial-gradient(120% 90% at 80% 10%, #3a0c12, #16080a);
  border: 1px solid rgba(225, 19, 36, .55);
  box-shadow: 0 0 40px rgba(225, 19, 36, .25);
  position: relative;
}

.hms-pc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hms-pc-ic {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #efe6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(225, 19, 36, .1);
}

.hms-pc-ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-pcard.hms-ent .hms-pc-ic {
  background: rgba(225, 19, 36, .12);
  border-color: rgba(225, 19, 36, .4);
}

.hms-pc-head b {
  font-size: 17px;
  font-weight: 800;
  color: var(--hms-ink);
}

.hms-pcard.hms-ent .hms-pc-head b {
  color: #fff;
}

.hms-pc-head .hms-un {
  width: 24px;
  height: 3px;
  background: var(--hms-red);
  border-radius: 2px;
  margin-top: 5px;
}

.hms-pc-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--hms-ink);
  letter-spacing: -.8px;
  white-space: nowrap;
  margin-bottom: 12px;
}

.hms-pcard.hms-ent .hms-pc-price {
  color: #fff;
}

.hms-pc-sub {
  font-size: 13.5px;
  color: var(--hms-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.hms-pcard.hms-ent .hms-pc-sub {
  color: #c2c4c9;
}

.hms-pc-sub .hms-rd {
  color: var(--hms-red);
  font-weight: 700;
}

.hms-pc-divider {
  height: 1px;
  background: #e7e3e3;
  margin-bottom: 16px;
}

.hms-pcard.hms-ent .hms-pc-divider {
  background: rgba(255, 255, 255, .14);
}

.hms-pc-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
  flex: 1;
}

.hms-pc-list .hms-li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #3c3f46;
  line-height: 1.4;
}

.hms-pcard.hms-ent .hms-pc-list .hms-li {
  color: #d4d5d9;
}

.hms-pc-list .hms-li svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  stroke: var(--hms-red);
  fill: none;
  margin-top: 2px;
}

.hms-pc-list .hms-li b {
  color: var(--hms-ink);
  font-weight: 700;
}

.hms-pcard.hms-ent .hms-pc-list .hms-li b {
  color: #fff;
}

.hms-pc-list .hms-li .hms-rd {
  color: var(--hms-red);
  font-weight: 700;
}

.hms-pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 26px;
  padding: 13px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--hms-red);
  text-decoration: none;
  transition: background-color .18s ease, box-shadow .22s ease, transform .18s ease;
}

.hms-pc-btn:hover {
  transform: translateY(-1px);
}

.hms-pc-btn.hms-outline {
  background: #fff;
  color: var(--hms-red);
}

.hms-pc-btn.hms-outline:hover {
  background: #fff5f5;
}

.hms-pc-btn.hms-fill:hover {
  background: var(--hms-red-deep);
  box-shadow: 0 10px 24px rgba(225, 19, 36, .45);
}

.hms-pc-btn.hms-outline svg {
  stroke: var(--hms-red);
  fill: none;
  width: 15px;
  height: 15px;
}

.hms-pc-btn.hms-fill {
  background: var(--hms-red);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(225, 19, 36, .4);
}

.hms-pc-btn.hms-fill svg {
  stroke: #fff;
  fill: none;
  width: 15px;
  height: 15px;
}

.hms-rec {
  position: relative;
}

.hms-rec-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: radial-gradient(60% 100% at 8% 100%, rgba(225, 19, 36, .28), transparent 70%);
  z-index: 0;
}

.hms-rec .hms-wrap {
  position: relative;
  z-index: 2;
}

.hms-rec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 26px;
}

.hms-rec-head h3 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-top: 12px;
}

.hms-rec-head .hms-rt {
  color: #b5b7bd;
  font-size: 15px;
  line-height: 1.55;
}

.hms-rec-head .hms-rt .hms-rd {
  color: var(--hms-red);
  font-weight: 700;
}

.hms-rec-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 56px;
}

.hms-rcard {
  background: rgba(20, 18, 22, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 28px;
}

.hms-rc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.hms-rc-ic {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  background: rgba(225, 19, 36, .14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-rc-ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--hms-red);
  fill: none;
}

.hms-rc-head b {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}

.hms-rcard .hms-pr {
  font-size: 30px;
  font-weight: 800;
  color: var(--hms-red);
  margin-bottom: 12px;
}

.hms-rcard .hms-pr.hms-wh {
  color: #fff;
}

.hms-rcard .hms-pr small {
  font-size: 13px;
  color: #9aa0ab;
  font-weight: 500;
}

.hms-rcard h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hms-rcard p {
  font-size: 13px;
  color: #a9abb1;
  line-height: 1.5;
}

.hms-rec-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(225, 19, 36, .42);
  border-radius: 999px;
  background: rgba(225, 19, 36, .12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.hms-rec-link:hover,
.hms-rec-link:focus-visible {
  background: var(--hms-red);
  color: #fff;
}

/* ===== CLOSING CTA BANNER ===== */
.hms-cta-wrap {
  padding: 16px 0 96px;
}

.hms-cta {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(225, 19, 36, .25);
  background: linear-gradient(100deg, #16080a 0%, #1a0a0c 45%, #3a0c12 100%);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.hms-cta::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: repeating-linear-gradient(115deg, transparent 0 18px, rgba(225, 19, 36, .16) 18px 19px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

.hms-cta-leaf {
  width: 78px;
  height: 88px;
  flex: 0 0 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(225, 19, 36, .5);
  border-radius: 14px;
  background: rgba(225, 19, 36, .06);
  position: relative;
  z-index: 2;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.hms-cta-leaf svg {
  width: 38px;
  height: 38px;
  fill: var(--hms-red);
}

.hms-cta-mid {
  flex: 1;
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, .1);
  padding-right: 34px;
}

.hms-cta-mid h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.6px;
  margin-bottom: 11px;
}

.hms-cta-mid p {
  color: #b9bbc0;
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 720px;
}

.hms-cta-mid p .hms-rd {
  color: var(--hms-red);
  font-weight: 600;
}

.hms-cta-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(180deg, #e11324, #b30f1c);
  color: #fff;
  border: 1px solid rgba(255, 120, 130, .5);
  border-radius: 30px;
  padding: 16px 18px 16px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 0 30px rgba(225, 19, 36, .5);
  text-decoration: none;
  transition: box-shadow .22s ease, transform .18s ease;
}

.hms-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(225, 19, 36, .6);
}

.hms-cta-btn .hms-ar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hms-cta-btn .hms-ar svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
}

.hms-cta-btn:hover {
  background: linear-gradient(180deg, #f01828, #c8101f);
}

@media (max-width: 1100px) {
  .hms-hero {
    min-height: auto;
  }

  .hms-hero-layout,
  .hms-about-top,
  .hms-sec-grid,
  .hms-emp-top,
  .hms-emp-news-grid,
  .hms-emp-plat-head,
  .hms-pr-head,
  .hms-rec-head {
    grid-template-columns: 1fr;
  }

  .hms-ab-cards,
  .hms-emp-cards,
  .hms-pr-cards,
  .hms-rec-cards,
  .hms-nl-feats,
  .hms-al-feats {
    grid-template-columns: 1fr 1fr;
  }

  .hms-nl-stats,
  .hms-al-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* photo becomes a full backdrop behind the copy; floating cards retire */
  .hms-hero-stage,
  .hms-hero-featured-shell {
    display: none;
  }

  .hms-hero-bg {
    width: 100%;
  }

  .hms-hero-bg-img {
    object-position: 70% center;
  }

  .hms-hero-bg-ov {
    background:
      linear-gradient(90deg, #0b0b0e 0%, rgba(11, 11, 14, .9) 42%, rgba(11, 11, 14, .55) 100%),
      linear-gradient(180deg, rgba(11, 11, 14, .35), rgba(11, 11, 14, .78));
  }

  .hms-hero-layout {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hms-marquee-inner {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .hms-marquee-label-long {
    display: none;
  }

  .hms-marquee-label-short {
    display: inline;
  }

  .hms-marquee-label {
    flex: 0 1 148px;
    min-width: 120px;
    max-width: 148px;
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: .72px;
  }

  .hms-marquee-track {
    gap: 32px;
  }

  .hms-marquee-track span {
    font-size: 13px;
  }

  .hms-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .hms-cta-mid {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 680px) {
  .hms-ab-cards,
  .hms-emp-cards,
  .hms-pr-cards,
  .hms-rec-cards,
  .hms-nl-feats,
  .hms-nl-stats,
  .hms-al-stats {
    grid-template-columns: 1fr;
  }

  .hms-al-feats {
    grid-template-columns: 1fr 1fr;
  }

  .hms-cmp {
    grid-template-columns: 1fr;
  }

  .hms-cmp-vs {
    padding: 10px 0;
  }

  .hms-emp-news-shell {
    padding: 28px 22px 30px;
  }

  .hms-feat-job {
    flex-direction: column;
  }

  .hms-fj-logo {
    width: 100%;
    flex: 0 0 auto;
    align-items: flex-start;
  }

  .hms-fj-logo b {
    text-align: left;
  }

  .hms-signup-row {
    flex-wrap: wrap;
  }

  .hms-signup input {
    min-width: 0;
  }

  .hms-signup .hms-sub {
    flex: 1 0 100%;
  }

  .hms-signup-note {
    padding-left: 0;
  }

  .hms-hero h1 {
    letter-spacing: -1.6px;
  }

  .hms-hero-bg-img {
    object-position: 66% center;
  }

  .hms-hero-chips {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .hms-hstat {
    padding-right: 0;
  }

  .hms-hstat + .hms-hstat {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

/* ===== Live jobs section (dynamic wiring) ===== */

.cmj-home-jobs h2 {
  margin-top: 0.4rem;
  font-size: 38px;
}

.cmj-home-jobs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cmj-home-jobs-head .hms-lead {
  margin-bottom: 4px;
}

.cmj-home-jobs-head .hms-btn {
  margin-bottom: 4px;
  flex: 0 0 auto;
}

.cmj-home-jobs-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.cmj-skel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 16px;
  padding: 18px 22px;
}

.cmj-skel span,
.cmj-skel-r {
  display: block;
  border-radius: 6px;
  background: linear-gradient(90deg, #f1eeee 25%, #faf7f7 37%, #f1eeee 63%);
  background-size: 400% 100%;
  animation: cmj-shimmer 1.4s ease infinite;
}

.cmj-skel-l span:first-child {
  width: 180px;
  height: 14px;
  margin-bottom: 9px;
}

.cmj-skel-l span:last-child {
  width: 260px;
  height: 11px;
}

.cmj-skel-r {
  width: 92px;
  height: 38px;
  border-radius: 9px;
}

@keyframes cmj-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

.cmj-home-jobs .home-recent-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--hms-border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--hms-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cmj-home-jobs .home-recent-job:hover {
  transform: translateY(-2px);
  border-color: #f0cdd1;
  box-shadow: 0 2px 4px rgba(16, 18, 25, .04), 0 16px 36px rgba(16, 18, 25, .09);
}

.cmj-home-jobs .home-recent-job h3 {
  margin: 0 0 3px;
  font-size: 16px;
  font-weight: 700;
  color: var(--hms-ink);
}

.cmj-home-jobs .home-recent-job p {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--hms-muted);
}

.cmj-home-jobs .home-recent-job p.home-recent-job-salary {
  font-weight: 700;
  color: var(--hms-red-deep);
  font-size: 13px;
}

.cmj-home-jobs .home-recent-job .meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 7px;
}

.cmj-home-jobs .home-recent-job .chip {
  border: none;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 700;
  background: #f4f5f7;
  color: #5b606b;
}

.cmj-home-jobs .home-recent-job-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cmj-home-jobs .home-recent-job-side span {
  font-size: 12px;
  color: var(--hms-muted-2);
}

.cmj-home-jobs .home-recent-job-side .btn.btn-outline {
  border: 1px solid #f3c6ca;
  background: #fff;
  color: var(--hms-red);
  border-radius: 9px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease;
}

.cmj-home-jobs .home-recent-job-side .btn.btn-outline:hover {
  background: #fdeaec;
  border-color: #eda9af;
}

.cmj-home-jobs .cmj-loading {
  color: var(--hms-muted-2);
  font-size: 14px;
  padding: 18px 0;
}

.cmj-home-jobs-empty {
  padding: 26px 24px;
  border: 1px dashed var(--hms-border);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.cmj-home-jobs-empty h3 {
  margin: 0;
  color: var(--hms-ink);
  font-size: 16px;
}

.cmj-home-jobs-empty p {
  margin: 6px 0 0;
  color: var(--hms-muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .cmj-home-jobs .home-recent-job {
    flex-direction: column;
    align-items: flex-start;
  }
  .cmj-home-jobs .home-recent-job-side {
    align-items: flex-start;
  }
}

/* ===== Motion preferences ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-static-page *,
  .home-static-page *::before,
  .home-static-page *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ===== Density Calibration ===== */
@media (min-width: 901px) {
  .home-static-page {
    font-size: 14.5px;
  }

  .hms-wrap {
    max-width: 1240px;
    padding-inline: clamp(18px, 3vw, 38px);
  }

  .hms-btn {
    gap: 9px;
    border-radius: 12px;
    padding: 13px 21px;
    font-size: 14px;
  }

  .hms-hero {
    min-height: calc(92svh - 66px);
  }

  .hms-hero-layout {
    gap: 38px;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .hms-hero h1 {
    font-size: clamp(2.35rem, 4.75vw, 62px);
    letter-spacing: -2px;
    margin: 18px 0 22px;
  }

  .hms-hero .hms-lead {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 26px;
  }

  .hms-hero-btns {
    gap: 12px;
    margin-bottom: 26px;
  }

  .hms-hero-chips {
    padding-top: 16px;
  }

  .hms-hstat {
    gap: 10px;
    padding-right: 18px;
  }

  .hms-hstat + .hms-hstat {
    margin-left: 18px;
    padding-left: 18px;
  }

  .hms-hstat-ic {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 10px;
  }

  .hms-hstat-num {
    font-size: 16px;
  }

  .hms-hero-stage {
    min-height: 450px;
  }

  .hms-featured-card {
    width: min(350px, 100%);
    padding: 18px 20px;
    border-radius: 15px;
  }

  .hms-featured-title {
    font-size: 20px;
  }

  .hms-marquee-inner {
    min-height: 54px;
  }

  .hms-about {
    padding-top: 66px;
  }

  .hms-about-top {
    gap: 42px;
    margin-bottom: 34px;
  }

  .hms-about h2,
  .hms-sec h2,
  .hms-emp h2,
  .hms-pr-head h2,
  .hms-rec-head h3,
  .hms-cta-mid h2 {
    font-size: clamp(1.8rem, 3vw, 38px);
    letter-spacing: -1px;
  }

  .hms-about .hms-para,
  .hms-sec .hms-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .hms-ab-cards {
    gap: 16px;
    padding-bottom: 66px;
  }

  .hms-ab-card,
  .hms-ecard,
  .hms-pcard,
  .hms-rcard,
  .hms-nlcard,
  .hms-wkcard {
    border-radius: 14px;
    padding: 20px;
  }

  .hms-ab-card::before {
    margin-bottom: 16px;
  }

  .hms-ab-card .hms-cic {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .hms-ab-card h3 {
    font-size: 17px;
  }

  .hms-sec {
    padding-top: 24px;
    padding-bottom: 58px;
  }

  .hms-sec-grid {
    gap: 36px;
  }

  .hms-emp-cards,
  .hms-pr-cards,
  .hms-rec-cards {
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .hms-spot-shell {
    gap: 24px;
  }

  .hms-spot-grid {
    grid-template-columns: 1fr;
  }

  .hms-spot-shell {
    padding: 26px;
  }

  .hms-spot-copy-head {
    flex-direction: column;
  }

  .hms-spot-feat {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .hms-spot {
    padding-bottom: 44px;
  }

  .hms-spot-shell {
    border-radius: 22px;
    padding: 22px;
  }

  .hms-spot-card-top,
  .hms-spot-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .hms-spot-card {
    border-radius: 20px;
  }
}

/* Keep the homepage hero flush with the viewport at every header size. */
.home-static-page .hms-hero {
  min-height: calc(100svh - 70px);
  min-height: calc(100dvh - 70px);
}

@media (max-width: 980px) {
  .home-static-page .hms-hero {
    min-height: calc(100svh - 66px);
    min-height: calc(100dvh - 66px);
  }
}

@media (max-width: 640px) {
  .home-static-page .hms-hero {
    min-height: calc(100svh - 62px);
    min-height: calc(100dvh - 62px);
  }
}

/* A responsive stage grid guarantees that hero cards never overlap. */
.home-static-page .hms-hero-stage {
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.home-static-page .hms-hero-stage .hms-float,
.home-static-page .hms-hero-stage .hms-featured-card {
  position: relative;
  inset: auto;
  min-width: 0;
  max-width: 100%;
  animation: hms-float-in 0.65s cubic-bezier(0.16, 0.68, 0.26, 1) both;
}

.home-static-page .hms-float-hires {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.home-static-page .hms-float-match {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.home-static-page .hms-float-live {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.home-static-page .hms-float-alert {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

/* Give the secondary desktop signals more breathing room around the worker. */
@media (min-width: 1280px) {
  .home-static-page .hms-float-live {
    translate: -38px 24px;
  }

  .home-static-page .hms-float-alert {
    translate: 38px 24px;
  }
}

.home-static-page .hms-featured-card {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  width: min(300px, 100%);
  padding: 15px 17px;
  border-radius: 14px;
  background: rgba(18, 13, 14, 0.56);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(9px);
}

.home-static-page .hms-featured-eyebrow {
  margin-bottom: 7px;
  font-size: 9px;
}

.home-static-page .hms-featured-title {
  margin-bottom: 5px;
  font-size: 18px;
}

.home-static-page .hms-featured-meta {
  margin-bottom: 8px;
  font-size: 11.5px;
}

.home-static-page .hms-featured-desc {
  margin-bottom: 10px;
  font-size: 11.5px;
  line-height: 1.45;
}

.home-static-page .hms-featured-tags {
  gap: 5px;
}

.home-static-page .hms-featured-tag {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
}

.home-static-page .hms-float-metric,
.home-static-page .hms-float-job-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: rgba(225, 19, 36, 0.16);
  color: #ff3340;
}

.home-static-page .hms-float-metric {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-static-page .hms-float-job-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #ff3340;
}

/* Medium desktops drop one secondary signal before the tablet layout begins. */
@media (min-width: 1101px) and (max-width: 1279px) {
  .home-static-page .hms-float-match {
    display: none;
  }
}

/* Keep the full hero stage on tablets; only phones use the simplified hero. */
@media (min-width: 681px) and (max-width: 1100px) {
  .home-static-page .hms-hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
    gap: 20px;
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .home-static-page .hms-hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 14px;
    min-height: 440px;
  }

  .home-static-page .hms-hero-bg-img {
    object-position: 62% center;
  }

  .home-static-page .hms-hero-bg-ov {
    background:
      radial-gradient(44% 60% at 12% 26%, rgba(225, 19, 36, 0.2), transparent 68%),
      linear-gradient(90deg, #0b0b0e 0%, rgba(11, 11, 14, 0.92) 26%, rgba(11, 11, 14, 0.5) 46%, rgba(11, 11, 14, 0.12) 66%, rgba(11, 11, 14, 0) 100%),
      linear-gradient(180deg, rgba(11, 11, 14, 0.12) 0%, transparent 40%, rgba(11, 11, 14, 0.42) 100%);
  }

  .home-static-page .hms-float-hires,
  .home-static-page .hms-float-live,
  .home-static-page .hms-featured-card {
    grid-column: 1;
  }

  .home-static-page .hms-float-hires {
    grid-row: 1;
    justify-self: end;
  }

  .home-static-page .hms-float-live {
    grid-row: 2;
    justify-self: start;
  }

  .home-static-page .hms-featured-card {
    grid-row: 3;
    width: min(260px, 100%);
  }

  .home-static-page .hms-float-match,
  .home-static-page .hms-float-alert {
    display: none;
  }
}

/* Small tablets keep only one proof signal plus the featured role. */
@media (min-width: 681px) and (max-width: 820px) {
  .home-static-page .hms-hero-stage {
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 410px;
  }

  .home-static-page .hms-float-live {
    display: none;
  }

  .home-static-page .hms-featured-card {
    grid-row: 2;
  }

  .home-static-page .hms-featured-desc {
    display: none;
  }
}

@media (max-width: 680px) {
  .home-static-page .hms-hero-stage {
    display: none;
  }
}
