.public-hero {
  background: linear-gradient(135deg, #07182f 0%, #0d315b 100%);
  color: #fff;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.public-hero .wrap { max-width: 850px; }
.public-hero h1 { color: #fff; font-size: clamp(2.25rem, 6vw, 4.75rem); margin: .5rem 0 1rem; }
.public-hero p:not(.eyebrow) { color: #d9e9f7; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.7; }

.public-card-grid,
.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.public-card-grid .content-card { min-height: 190px; }
.public-card-grid .content-card h2 { margin-top: 0; }
.status-grid { min-width: 0; }

.help-topic-card { display: flex; flex-direction: column; }
.help-topic-card h2 a { color: inherit; text-decoration: none; }
.help-topic-card h2 a:hover { color: var(--blue-700); }
.help-topic-card .text-link { margin-top: auto; padding-top: 1rem; }
.help-detail-section {
  grid-column: 1 / -1;
  scroll-margin-top: 1.5rem;
  margin-top: 1.75rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #dbe4ed;
  border-radius: 18px;
  background: #f7fafc;
}
.help-detail-section .section-heading { margin-bottom: 1.25rem; }
.help-detail-section .section-heading h2 { margin: 0 0 .55rem; }
.help-detail-section .section-heading p { max-width: 72ch; margin: 0; color: #4a5d70; }
.help-state-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.help-state-grid article { padding: 1.1rem; border: 1px solid #dbe4ed; border-radius: 12px; background: #fff; }
.help-state-grid h3 { margin: 0 0 .45rem; color: var(--navy-900); font-size: 1rem; }
.help-state-grid p { margin: 0; color: #4a5d70; }
.help-detail-section > .button { margin-top: 1.25rem; }

.help-contact-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 18px;
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 12px 36px rgba(7, 24, 47, .12);
}
.help-contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: #fff;
  font-size: 1.1rem;
}
.help-contact-card .eyebrow { color: #8fc8ff; }
.help-contact-card h2 { margin: 0 0 .65rem; color: #fff; }
.help-contact-card p:not(.eyebrow) { max-width: 72ch; color: #d9e9f7; }
.help-contact-email { color: var(--navy-900); background: #fff; }
.help-contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.help-contact-actions .button.secondary { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }

.status-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #dbe4ed;
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 12px 36px rgba(7, 24, 47, .08);
}

.status-card header {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1rem;
}
.status-card h2 {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.1rem;
}
.status-card p { margin-bottom: 0; overflow-wrap: anywhere; color: #4a5d70; }
.status-dot {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  flex: 0 1 auto;
  align-items: center;
  gap: .45rem;
  padding: .45rem .75rem;
  overflow-wrap: anywhere;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}
.status-dot::before {
  width: .55rem;
  height: .55rem;
  flex: 0 0 .55rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.status-dot.operational { background: #e9f8ef; color: #147442; }
.status-dot.degraded { background: #fff3d6; color: #8a5b00; }
.status-dot.unavailable { background: #fde9e8; color: #a22720; }

.guide-group + .guide-group { margin-top: 3rem; }
.guide-group > h2 { margin-bottom: 1.25rem; color: var(--navy-900); font-size: var(--text-h2-size); }
.guide-group-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.guide-group-grid .content-card { min-height: 230px; }

@media (max-width: 760px) {
  .public-card-grid,
  .status-grid,
  .guide-group-grid,
  .help-state-grid { grid-template-columns: 1fr; }
  .help-contact-card { grid-template-columns: 1fr; }
  .help-contact-actions { align-items: stretch; flex-direction: column; }
  .help-contact-actions .button { width: 100%; }
  .public-hero { padding: 4rem 0; }
}

@media (forced-colors: active) {
  .status-dot { border: 1px solid ButtonText; }
}
