/* Preppr × MSI Field Kit — WEB (help-center) chrome.
   Loaded after tokens.css + kit.css; reuses kit.css component styles
   (blocks, vhead, rules, steps, tiers, etc.) for the brief bodies. */

html, body { background: var(--neutral-100); }
body { margin: 0; }
.web-wrap { overflow-x: hidden; }

/* ============================================================
   TOP NAV
   ============================================================ */
.hc-nav {
  position: sticky; top: 0; z-index: 80;
  background: #fff; border-bottom: 1px solid var(--border);
  height: 68px; display: flex; align-items: center; gap: 18px;
  padding: 0 32px;
}
.hc-nav__brand { display: flex; align-items: center; gap: 13px; }
.hc-nav__logo { height: 23px; width: auto; display: block; }
.hc-nav__kicker {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-subtle); font-weight: 700;
  border-left: 1px solid var(--border); padding-left: 13px;
}
.hc-nav__links { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.hc-nav__link {
  font-size: 14.5px; font-weight: 600; color: var(--fg-heading);
  text-decoration: none; white-space: nowrap;
}
.hc-nav__link:hover { color: var(--preppr-green); text-decoration: none; }
.hc-nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--preppr-green); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap;
}
.hc-nav__cta:hover { background: var(--primary-600); text-decoration: none; }
.hc-nav__cta svg { width: 16px; height: 16px; }
.hc-nav__burger { display: none; margin-left: auto; background: none; border: none; cursor: pointer; color: var(--fg-heading); padding: 6px; }
.hc-nav__burger svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hc-hero { background: var(--bg-chrome); color: #fff; position: relative; overflow: hidden; }
.hc-hero__inner { max-width: 1160px; margin: 0 auto; padding: 66px 32px 96px; position: relative; z-index: 2; }
.hc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--preppr-green); font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; font-size: 13px; margin-bottom: 22px;
}
.hc-hero__eyebrow svg { width: 17px; height: 17px; }
.hc-hero h1 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 56px; line-height: 1.03; color: #fff; margin: 0 0 20px;
  letter-spacing: -0.02em; max-width: 14ch;
}
.hc-hero__sub { font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.82); max-width: 50ch; margin: 0 0 34px; }
.hc-chips { display: flex; flex-wrap: wrap; gap: 10px; max-width: 720px; position: relative; z-index: 3; }
.hc-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 17px; border-radius: var(--radius-full);
  border: 1px solid var(--border-chrome); background: rgba(255,255,255,0.05);
  color: #fff; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: background .15s ease;
}
.hc-chip:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.hc-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--ln); display: block; }
.hc-chip--pdf { background: #fff; color: var(--preppr-blue); border-color: #fff; font-weight: 700; }
.hc-chip--pdf:hover { background: rgba(255,255,255,0.88); }
.hc-chip--pdf svg { width: 15px; height: 15px; }
.hc-hero__mascot {
  position: absolute; right: calc(50% - 580px); bottom: -8px; width: 340px;
  z-index: 1; pointer-events: none; user-select: none;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.hc-section { max-width: 1160px; margin: 0 auto; padding: 64px 32px; }
.hc-section--tight { padding-bottom: 20px; }
.hc-eyebrow { color: var(--preppr-green); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.hc-h2 { font-family: var(--font-sans); font-weight: 800; font-size: 34px; color: var(--fg-heading); margin: 0 0 8px; letter-spacing: -0.015em; }
.hc-sub { font-size: 17px; color: var(--fg-muted); margin: 0 0 34px; max-width: 60ch; }

/* card grids */
.hc-grid { display: grid; gap: 22px; }
.hc-grid--2 { grid-template-columns: 1fr 1fr; }
.hc-grid--3 { grid-template-columns: repeat(3, 1fr); }

.hc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 28px 28px 26px; text-decoration: none; color: inherit; display: block;
  transition: box-shadow .16s ease, transform .16s ease, border-color .16s ease;
}
.hc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent, var(--preppr-green)) 40%, var(--border)); text-decoration: none; }
.hc-card__icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: color-mix(in srgb, var(--accent, var(--preppr-green)) 13%, #fff);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.hc-card__icon svg { width: 25px; height: 25px; color: var(--accent, var(--preppr-green)); stroke-width: 2; }
.hc-card h3 { font-size: 20px; font-weight: 800; color: var(--fg-heading); margin: 0; line-height: 1.22; letter-spacing: -0.01em; }
.hc-card__num { color: var(--accent, var(--preppr-green)); font-weight: 800; font-size: 0.72em; margin-right: 9px; font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.hc-card p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.55; margin: 11px 0 16px; }
.hc-card__meta { display: flex; flex-direction: column; gap: 5px; margin: 0 0 16px; }
.hc-card__metarow { font-size: 13px; color: var(--fg-muted); display: flex; gap: 8px; }
.hc-card__metarow b { color: var(--fg-heading); font-weight: 700; flex-shrink: 0; }
.hc-card__link { color: var(--preppr-green); font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }
.hc-card__link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.hc-card:hover .hc-card__link svg { transform: translateX(3px); }

/* orientation (2 wide cards) */
.hc-orient .hc-card__icon { background: color-mix(in srgb, var(--preppr-blue) 9%, #fff); }
.hc-orient .hc-card__icon svg { color: var(--preppr-blue); }
.hc-orient .hc-card__num, .hc-orient .hc-card h3 { color: var(--fg-heading); }
.hc-orient .hc-card:hover { border-color: color-mix(in srgb, var(--preppr-green) 40%, var(--border)); }

/* ============================================================
   BRIEFS (full content) — reuse kit.css .page components
   ============================================================ */
.hc-briefs { background: var(--neutral-100); padding: 8px 0 40px; }
.hc-briefs__inner { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.hc-briefs .page {
  max-width: none; width: 100%;
  margin: 0 0 28px; border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-sm);
  scroll-margin-top: 88px; padding: 56px 60px 60px;
}
.hc-briefs .vhead { margin: -56px -60px 34px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.hc-briefs__divider { max-width: 900px; margin: 26px auto 8px; padding: 0 32px; }
.hc-briefs__label {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-subtle); margin: 8px 0 18px;
}
.hc-briefs__label::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ============================================================
   CTA band
   ============================================================ */
.hc-cta { max-width: 1160px; margin: 24px auto 64px; padding: 0 32px; }
.hc-cta__box {
  background: var(--bg-chrome); color: #fff; border-radius: var(--radius-2xl);
  padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
}
.hc-cta__box h2 { font-family: var(--font-sans); font-weight: 800; font-size: 32px; color: #fff; margin: 0 0 12px; }
.hc-cta__box p { font-size: 17px; color: rgba(255,255,255,0.78); margin: 0 auto 28px; max-width: 52ch; }
.hc-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hc-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 15px; text-decoration: none;
}
.hc-btn svg { width: 17px; height: 17px; }
.hc-btn--primary { background: var(--preppr-green); color: #fff; }
.hc-btn--primary:hover { background: var(--primary-600); text-decoration: none; }
.hc-btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid var(--border-chrome); }
.hc-btn--ghost:hover { background: rgba(255,255,255,0.16); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.hc-foot { background: var(--bg-chrome); color: #fff; }
.hc-foot__inner {
  max-width: 1160px; margin: 0 auto; padding: 56px 32px 36px;
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px;
}
.hc-foot__logo { height: 26px; margin-bottom: 18px; }
.hc-foot__desc { font-size: 14px; line-height: 1.6; color: var(--fg-on-dark-muted); max-width: 34ch; margin: 0 0 18px; }
.hc-foot__status { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.8); }
.hc-foot__status i { width: 9px; height: 9px; border-radius: 50%; background: var(--preppr-green); box-shadow: 0 0 0 3px color-mix(in srgb, var(--preppr-green) 25%, transparent); }
.hc-foot__col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-on-dark-muted); font-weight: 700; margin: 4px 0 16px; }
.hc-foot__col a { display: block; color: rgba(255,255,255,0.82); font-size: 14px; text-decoration: none; margin-bottom: 11px; }
.hc-foot__col a:hover { color: #fff; text-decoration: none; }
.hc-foot__bottom {
  border-top: 1px solid var(--border-chrome); max-width: 1160px; margin: 0 auto;
  padding: 18px 32px 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--fg-on-dark-muted);
}
.hc-foot__bottom a { color: var(--fg-on-dark-muted); text-decoration: none; margin-left: 20px; }
.hc-foot__bottom a:hover { color: #fff; }
.hc-foot__legal { display: flex; gap: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hc-nav__links { display: none; }
  .hc-nav__links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 8px 0; box-shadow: var(--shadow-lg);
  }
  .hc-nav__links.open .hc-nav__link { padding: 13px 32px; }
  .hc-nav__links.open .hc-nav__cta { margin: 8px 32px; justify-content: center; }
  .hc-nav__burger { display: block; }
  .hc-hero h1 { font-size: 40px; }
  .hc-hero__mascot { display: none; }
  .hc-grid--2, .hc-grid--3 { grid-template-columns: 1fr; }
  .hc-foot__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hc-briefs .page { padding: 40px 26px 46px; }
  .hc-briefs .vhead { margin: -40px -26px 30px; }
}
@media (max-width: 560px) {
  .hc-section { padding: 44px 20px; }
  .hc-hero__inner { padding: 48px 20px 64px; }
  .hc-foot__inner { grid-template-columns: 1fr; }
  .hc-foot__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
