:root {
  --red: #f3182b;
  --red-dark: #d01222;
  --black: #111111;
  --nav: #2b2b2b;
  --ink: #222222;
  --muted: #6e6e6e;
  --line: #dcdcdc;
  --bg: #f5f5f5;
  --card: #ffffff;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  --radius: 6px;
  --font: "museo-sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  font-weight: 300;
}

a { color: inherit; }

.utility {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.utility-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}
.utility a { text-decoration: none; color: #333; }
.utility a:hover { color: var(--red); }

.header { background: #fff; }
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.logo { display: block; line-height: 0; }
.logo img { height: 48px; width: auto; display: block; }
.brand-lockup { min-width: 0; }
.brand-lockup .eyebrow { margin: 0 0 1px; }
.brand-lockup strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.search {
  position: relative;
  max-width: 420px;
  width: 100%;
  justify-self: center;
}
.search input {
  width: 100%;
  height: 44px;
  border: 1px solid #d0d0d0;
  border-radius: 22px;
  padding: 0 16px 0 42px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: #fff;
}
.search input:focus { border-color: #111; }
.search svg {
  position: absolute;
  left: 16px;
  top: 13px;
  width: 16px;
  height: 16px;
  opacity: 0.45;
}

.header-actions { display: flex; gap: 10px; align-items: center; }
.ghost {
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}
.ghost:hover { border-color: #111; }

.catbar { background: var(--nav); }
.catbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-wrap: wrap;
}
.catbar a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
}
.catbar a:hover { color: #ffd5d8; }
.catbar a.sale {
  margin-left: auto;
  background: var(--red);
}
.catbar a.sale:hover { background: var(--red-dark); color: #fff; }

.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #ececec;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
}
.announce[hidden] { display: none; }
.announce-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: var(--red);
}
.announce-title a { color: inherit; }
.announce-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.announce-alert { background: #fde7ea; }
.announce-outage { background: #f3182b; color: #fff; }
.announce-outage .announce-kicker { color: #fff; }
.announce-promo { background: #111; color: #fff; }
.announce-promo .announce-kicker { color: #ffd5d8; }
.announce-hr, .announce-training { background: #e8eef5; }
.svc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.65);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
}
.announce-outage .svc { background: rgba(255,255,255,0.16); }
.svc-ok::after, .svc-issue::after, .svc-outage::after {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
}
.svc-ok::after { background: #1f8a3b; }
.svc-issue::after { background: #d18b00; }
.svc-outage::after { background: #f3182b; }

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 4px;
}
.eyebrow {
  margin: 0 0 2px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.quick {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.quick a {
  text-decoration: none;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 72px;
}
.quick a img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 48px;
  border-radius: 8px;
}
.quick a .copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.quick a.primary {
  border-color: var(--red);
}
.quick a:hover { border-color: #111; }
.quick strong {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.quick span { font-size: 13px; font-weight: 300; opacity: 0.9; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 4px;
  scroll-margin-top: 12px;
}
.section h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.card img {
  width: auto;
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  background: #fff;
  display: block;
  margin: 0 0 6px;
}
.card .tag { margin-top: 2px; }
.card:hover { border-color: #111; }
.card .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}
.card strong { font-size: 15px; font-weight: 700; }
.card em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}
.card.hidden,
.quick a.hidden { display: none; }
.section.hidden { display: none; }

.empty {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px;
  color: var(--muted);
}

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 20px 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}
.footer strong { color: #111; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .search { grid-column: 1 / -1; max-width: none; justify-self: stretch; }
  .header-actions { display: none; }
  .quick { grid-template-columns: 1fr; }
  .catbar a.sale { margin-left: 0; }
}
