@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --hc-navy: #152b79;
  --hc-navy-deep: #0f2058;
  --hc-primary: #344fa4;
  --hc-primary-dark: #263b82;
  --hc-accent: #6e5af3;
  --hc-page: #f9f9ff;
  --hc-band: #f0f0fd;
  --hc-white: #fff;
  --hc-ink: #202434;
  --hc-muted: #73788e;
  --hc-border: #e1e4f0;
  --hc-footer: #292a31;
  --hc-content: 780px;
  --hc-page-width: 1170px;
  --hc-shell-width: 1280px;
  --hc-radius: 8px;
  --hc-media-radius: 12px;
  --hc-shadow: 0 14px 35px rgba(31, 47, 108, .07);
  --hc-ease: cubic-bezier(.2, .75, .25, 1);
}

body.home-healthcare-clone {
  margin-top: 0 !important;
  background: #fff !important;
  color: var(--hc-ink);
  font-family: 'Manrope', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Home shares the exact same public header as Blog. The older landing-page
   header remains in the hero partial for compatibility, but is not rendered. */
body.home-healthcare-clone .hc-header {
  display: none !important;
}

body.home-healthcare-clone main.flex-grow-1 > .container:empty {
  display: none;
}

body.home-healthcare-clone .main-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hc-page,
.hc-page * {
  box-sizing: border-box;
}

.hc-page h1,
.hc-page h2,
.hc-page h3,
.hc-page h4,
.hc-page p,
.hc-page figure,
.hc-page ul {
  margin-top: 0;
}

.hc-page h1,
.hc-page h2,
.hc-page h3,
.hc-page h4,
.hc-page button,
.hc-page input,
.hc-page select,
.hc-page textarea {
  font-family: inherit;
}

.hc-page img {
  display: block;
  max-width: 100%;
}

.hc-page {
  width: min(100%, var(--hc-shell-width));
  margin-inline: auto;
  padding-inline: 55px;
  overflow: hidden;
  color: var(--hc-ink);
  background:
    radial-gradient(circle at 5% 8%, rgba(99, 125, 237, .28) 0 1px, transparent 2px) 0 0 / 30px 30px,
    radial-gradient(circle at 96% 32%, rgba(125, 150, 255, .24), transparent 18%),
    linear-gradient(160deg, var(--hc-navy-deep), var(--hc-navy) 48%, #182f90 100%);
  box-shadow: 0 0 60px rgba(12, 28, 86, .18);
}

.hc-page-inner {
  width: 100%;
  max-width: var(--hc-page-width);
  margin-inline: auto;
  background: var(--hc-page);
  box-shadow: 0 0 45px rgba(5, 18, 74, .18);
}

.hc-container {
  width: min(calc(100% - 48px), var(--hc-content));
  margin-inline: auto;
}

.hc-section {
  position: relative;
  padding: 86px 0;
  background: var(--hc-page);
}

.hc-section--band {
  background: var(--hc-band);
}

.hc-section--tight {
  padding-block: 58px;
}

.hc-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--hc-primary-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.hc-heading {
  max-width: 560px;
  margin: 0;
  color: var(--hc-ink);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.hc-heading--center {
  margin-inline: auto;
  text-align: center;
}

.hc-lead {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--hc-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.hc-lead--center {
  margin-inline: auto;
  text-align: center;
}

.hc-section-head {
  margin-bottom: 36px;
}

.hc-section-head--center {
  text-align: center;
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--hc-ease), box-shadow 180ms var(--hc-ease), background-color 180ms ease;
}

.hc-btn:hover {
  transform: translateY(-2px);
}

.hc-btn--primary {
  color: #fff;
  background: var(--hc-primary-dark);
  box-shadow: 0 8px 18px rgba(38, 59, 130, .2);
}

.hc-btn--primary:hover {
  color: #fff;
  box-shadow: 0 12px 24px rgba(38, 59, 130, .28);
}

.hc-btn--outline {
  border-color: rgba(38, 59, 130, .35);
  color: var(--hc-primary-dark);
  background: transparent;
}

.hc-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hc-primary);
  font-size: 13px;
}

.hc-card {
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  background: #fff;
  box-shadow: var(--hc-shadow);
  transition: transform 180ms var(--hc-ease), box-shadow 180ms var(--hc-ease), border-color 180ms ease;
}

.hc-card:hover {
  border-color: rgba(52, 79, 164, .26);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(31, 47, 108, .11);
}

.hc-grid {
  display: grid;
  gap: 16px;
}

.hc-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hc-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hc-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.hc-header {
  position: relative;
  z-index: 50;
}

.hc-utility {
  min-height: 26px;
  color: rgba(255, 255, 255, .84);
  background: var(--hc-primary-dark);
  font-size: 8px;
  font-weight: 700;
}

.hc-utility .hc-container,
.hc-nav .hc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-utility .hc-container {
  min-height: 26px;
}

.hc-utility-meta,
.hc-utility-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hc-utility a {
  color: inherit;
  text-decoration: none;
}

.hc-nav {
  min-height: 64px;
  border-bottom: 1px solid rgba(31, 47, 108, .08);
  background: rgba(255, 255, 255, .96);
}

.hc-nav .hc-container {
  min-height: 64px;
}

.hc-brand {
  display: inline-flex;
  min-width: 52px;
  align-items: center;
  color: var(--hc-primary-dark);
  text-decoration: none;
}

.hc-brand .brand-logo {
  width: 48px !important;
  height: 53px !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
  filter: drop-shadow(0 4px 8px rgba(19, 45, 95, .14)) !important;
}

.hc-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hc-nav-links > a:not(.hc-btn) {
  color: #53586e;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.hc-nav-links > a:hover {
  color: var(--hc-primary);
}

.hc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms var(--hc-ease), transform 620ms var(--hc-ease);
}

.hc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1279px) {
  .hc-page { padding-inline: 28px; }
}

@media (max-width: 960px) {
  .hc-page { padding-inline: 16px; }
  .hc-container { width: min(calc(100% - 44px), 820px); }
  .hc-section { padding-block: 74px; }
  .hc-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .hc-page { width: 100%; padding-inline: 8px; }
  .hc-container { width: min(calc(100% - 32px), 620px); }
  .hc-utility-meta span:nth-child(2),
  .hc-utility-social,
  .hc-nav-links > a:not(.hc-btn) { display: none; }
  .hc-grid--2,
  .hc-grid--3 { grid-template-columns: 1fr; }
  .hc-section { padding-block: 64px; }
}

@media (max-width: 460px) {
  .hc-page { padding-inline: 0; }
  .hc-grid--4 { grid-template-columns: 1fr; }
  .hc-heading { font-size: 1.9rem; }
}

/* Full-bleed home canvas: retain the centered content grid without the
   presentation-board rails that previously surrounded the page. */
body.home-healthcare-clone .hc-page {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  background: var(--hc-page);
  box-shadow: none;
}

body.home-healthcare-clone .hc-page-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .hc-page *,
  .hc-page *::before,
  .hc-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hc-reveal { opacity: 1; transform: none; }
}
