:root {
  --bg: #F4F7FB;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --line: #e2e8f0;
  --brand: #04508C;
  --brand-2: #0A8FD4;
  --brand-3: #18A9E6;
  --brand-4: #35B9EF;
  --brand-soft: #E8F7FF;
  --brand-soft-2: #DDF4FF;
  --cream: #FBF4E8;
  --cream-line: #EADFC8;
  --gold: #8A6C2F;
  --footer-text: #dbeafe;
  --footer-text-2: #eff6ff;
  --shadow-lg: 0 22px 70px rgba(4, 80, 140, 0.10);
  --shadow-xl: 0 24px 80px rgba(4, 80, 140, 0.10);
  --shadow-hero: 0 24px 80px rgba(2, 31, 61, 0.32);
  --shadow-hover: 0 28px 80px rgba(4, 80, 140, 0.16);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.25rem;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.95);
}

.topbar {
  background: var(--brand);
  color: var(--white);
}
.topbar .container,
.navbar .container,
.alertbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar .container {
  padding: 8px 0;
  gap: 16px;
}
.utility-links,
.contact-links,
.primary-nav,
.search-wrap,
.brand-wrap,
.logo-wrap,
.feature-link,
.inline-arrow,
.feature-cta,
.alert-link,
.footer-bottom-links,
.feature-pill,
.hero-actions,
.slider-dots,
.section-eyebrow,
.footer-brand,
.card-link,
.task-link,
.menu-btn {
  display: flex;
  align-items: center;
}
.utility-links,
.contact-links { gap: 20px; }
.utility-links a,
.contact-links div {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.95;
}
.contact-links div { gap: 6px; }

.navbar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.navbar .container {
  gap: 16px;
  padding: 16px 0;
}
.logo-wrap { gap: 12px; }
.logo-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(4,80,140,0.15);
}
.brand-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brand);
}
.brand-subtitle {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-2);
}
.search-wrap {
  flex: 1;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.04);
}
.search-wrap input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
  font-size: 14px;
}
.search-wrap input::placeholder { color: #94a3b8; }
.primary-nav {
  gap: 24px;
  flex-wrap: wrap;
}
.primary-nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.primary-nav a:hover { color: #0396D6; }
.menu-btn {
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  display: none;
}

.alertbar {
  border-bottom: 1px solid rgba(16,134,198,0.2);
  background: var(--brand-2);
  color: var(--white);
}
.alertbar .container { padding: 12px 0; }
.alert-link {
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg,rgba(4,80,140,0.86) 0%,rgba(4,80,140,0.75) 34%,rgba(4,80,140,0.45) 64%,rgba(4,80,140,0.22) 100%),
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(76,200,255,0.18), transparent 26%),
    url('hero-hospital-BQcgStYC.jpg');
  background-size: cover;
  background-position: center;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  padding: 64px 0 96px;
}
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .65s ease forwards;
}
.delay-1 { animation-delay: .08s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.feature-pill {
  display: inline-flex;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: #D8F4FF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 20px 0 0;
  max-width: 780px;
  font-size: clamp(52px, 7.1vw, 90px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.hero-copy {
  max-width: 700px;
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
  color: #eff6ff;
}
.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-primary {
  background: var(--brand-3);
  color: var(--white);
}
.btn-primary:hover { background: var(--brand-4); }
.btn-secondary {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}
.slider-dots { gap: 12px; margin-top: 40px; }
.slider-dots span {
  display: block;
  height: 6px;
  border-radius: 999px;
}
.slider-dots .dot-lg { width: 40px; background: var(--brand-3); }
.slider-dots .dot-sm { width: 12px; background: rgba(255,255,255,0.35); }
.slider-dots .dot-sm.active { background: rgba(255,255,255,0.55); }

.hero-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.glass-card {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.10);
  color: var(--white);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-hero);
}
.hero-card { padding: 24px; }
.hero-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker.sky { color: #BCEBFF; }
.hero-card-title {
  margin-top: 8px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  color: #BCEBFF;
}
.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 24px;
}
.hero-mini {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
}
.hero-mini-title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-small-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.small-card {
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 18px 38px rgba(4,80,140,0.10);
}
.small-card.soft-1 { background: var(--white); }
.small-card.soft-2 { background: var(--brand-soft); }
.small-card.soft-3 { background: var(--brand-soft-2); }
.small-card .kicker { color: var(--brand); }
.small-card .title {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.small-card .icon-top { color: var(--brand-2); }

.quick-actions-shell {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.quick-actions-wrap {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.quick-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(4,80,140,0.12);
}
.quick-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}
.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--brand-2);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(10,143,212,0.2);
}
.quick-title {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.quick-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-2);
}

.construction-link {
  padding: 32px 0 0;
}
.construction-banner {
  border: 1px solid var(--cream-line);
  border-radius: 26px;
  background: var(--cream);
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
}
.construction-banner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.updates-section {
  background: #F2F6FB;
  padding: 72px 0;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.section-eyebrow {
  gap: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
}
.section-title {
  margin: 12px 0 0;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.updates-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.featured-update,
.info-card,
.feature-resource,
.task-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.featured-top {
  padding: 40px;
  color: var(--white);
  background: linear-gradient(135deg,#04508C 0%,#0A8FD4 58%,#4CC8FF 100%);
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tag-pill.white-glass {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.10);
  color: #D8F4FF;
}
.tag-pill.white {
  background: var(--white);
  box-shadow: 0 10px 20px rgba(15,23,42,0.06);
}
.tag-pill.red { color: #ef4444; }
.tag-pill.blue { color: var(--brand-2); }
.featured-title,
.info-title,
.resource-title {
  margin-top: 20px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}
.featured-title {
  max-width: 800px;
  font-size: clamp(40px, 4vw, 58px);
  color: var(--white);
}
.featured-text,
.info-text,
.resource-text {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.8;
}
.featured-text { max-width: 760px; color: #eff6ff; }
.card-link,
.feature-cta {
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-link.white { color: var(--white); }
.card-link.red { color: #ef4444; }
.card-link.blue,
.feature-cta.blue { color: var(--brand-2); }
.announcements-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  padding: 20px 24px 24px;
}
.announcement-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8fafc;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.announcement-item:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(4,80,140,0.09);
}
.dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.dot.red { background: #f87171; }
.dot.sky { background: #38bdf8; }
.dot.green { background: #34d399; }
.announcement-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.announcement-title {
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}
.announcement-item .icon { color: #94a3b8; transition: color .2s ease, transform .2s ease; }
.announcement-item:hover .icon { color: var(--brand-2); transform: translateX(2px); }

.side-stack {
  display: grid;
  gap: 20px;
}
.info-block {
  padding: 28px;
}
.info-soft-red { background: linear-gradient(135deg,#FFF4F3 0%,#FFEAEA 100%); }
.info-soft-blue { background: linear-gradient(135deg,#E8F7FF 0%,#F7FCFF 100%); }
.info-title { font-size: clamp(34px, 3vw, 46px); }
.info-text { font-size: 17px; color: var(--muted); }

.resources-section { padding: 64px 0; }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.feature-resource {
  transition: box-shadow .25s ease, transform .25s ease;
}
.feature-resource:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.resource-top {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 28px;
}
.resource-top::before,
.resource-top::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  filter: blur(36px);
}
.resource-top::before {
  top: -24px;
  right: -24px;
  width: 128px;
  height: 128px;
}
.resource-top::after {
  right: 0;
  bottom: -40px;
  width: 144px;
  height: 144px;
  background: rgba(255,255,255,0.25);
}
.resource-top.blue { background: linear-gradient(135deg,#E8F7FF 0%,#CFEFFF 100%); }
.resource-top.green { background: linear-gradient(135deg,#EAF9F3 0%,#D8F3E8 100%); }
.resource-top.amber { background: linear-gradient(135deg,#FFF5E8 0%,#FFE8BE 100%); }
.resource-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(15,23,42,0.06);
}
.resource-icon.blue { color: var(--brand-2); }
.resource-icon.green { color: #059669; }
.resource-icon.amber { color: #f59e0b; }
.resource-title {
  position: relative;
  z-index: 1;
  max-width: 320px;
  font-size: 34px;
}
.resource-body { padding: 28px; }
.resource-text { font-size: 17px; color: var(--muted); }
.feature-cta .icon { transition: transform .2s ease; }
.feature-resource:hover .feature-cta .icon { transform: translateX(4px); }

.help-section {
  background: #EEF3F9;
  padding: 80px 0;
}
.help-center { text-align: center; }
.help-title {
  margin: 12px 0 0;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}
.task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  max-width: 980px;
  margin: 48px auto 0;
}
.task-card {
  border: 1px solid var(--line);
  box-shadow: none;
}
.task-inner { padding: 28px; }
.task-heading {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--brand);
}
.task-links {
  margin-top: 24px;
  display: grid;
  gap: 4px;
}
.task-link {
  justify-content: space-between;
  padding: 14px 12px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  transition: background .2s ease;
}
.task-link:hover { background: #f8fafc; }
.task-link .icon { color: #94a3b8; }

.site-footer {
  background: var(--brand);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  padding: 56px 0;
}
.footer-brand { gap: 12px; }
.footer-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  color: #BCEBFF;
}
.footer-title { font-size: 28px; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.footer-subtitle { margin-top: 2px; font-size: 14px; font-weight: 700; color: #dbeafe; }
.footer-copy {
  max-width: 420px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #dbeafe;
}
.site-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  font-size: 14px;
  color: #eff6ff;
}
.site-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #BCEBFF;
}
.site-address { margin-top: 4px; }
.footer-menu-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #BCEBFF;
}
.footer-menu {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px 32px;
}
.footer-menu a {
  font-size: 14px;
  font-weight: 600;
  color: #eff6ff;
  transition: color .2s ease;
}
.footer-menu a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 14px;
  color: #dbeafe;
}
.footer-bottom-links { gap: 16px; flex-wrap: wrap; }

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.icon.sm { width: 14px; height: 14px; }
.icon.md { width: 16px; height: 16px; }
.icon.lg { width: 24px; height: 24px; }
.icon.xl { width: 28px; height: 28px; }
.icon.xxl { width: 32px; height: 32px; }

@media (max-width: 1279px) {
  .primary-nav { display: none; }
  .menu-btn { display: inline-flex; }
}

@media (max-width: 1100px) {
  .hero .container,
  .updates-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 100%; }
  .search-wrap { display: none; }
}

@media (max-width: 980px) {
  .quick-actions-wrap { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .hero-small-grid,
  .announcements-list,
  .task-grid { grid-template-columns: 1fr; }
  .footer-menu { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(1280px, calc(100% - 24px)); }
  .utility-links,
  .contact-links div,
  .search-wrap { display: none; }
  .topbar .container { justify-content: flex-end; }
  .hero .container { padding: 48px 0 72px; }
  .hero-card-title { font-size: 34px; }
  .hero-mini-grid,
  .quick-actions-wrap,
  .resource-grid,
  .footer-menu,
  .task-grid { grid-template-columns: 1fr; }
  .featured-top,
  .info-block,
  .resource-body,
  .task-inner,
  .resource-top { padding: 24px; }
  .construction-banner { padding: 16px; }
  .footer-bottom .container,
  .navbar .container {
    flex-direction: row;
    align-items: center;
  }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}
