﻿/* Help surface aligned with the marketing blueprint. */
:root {
  --blue-dark: #061b3d;
  --blue-rich: #064cff;
}

body {
  background: linear-gradient(180deg, #f8fbff 0, #ffffff 46%, #f7fbff 100%);
}

.hc-topline {
  background: var(--blue-dark);
  color: #eaf2ff;
  font-size: 13px;
  font-weight: 780;
}

.hc-topline .hc-shell {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hc-topline span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hc-topline span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #18c779;
  box-shadow: 0 0 0 4px rgba(24, 199, 121, .14);
}

.hc-utility {
  display: flex;
  gap: 22px;
  white-space: nowrap;
}

.hc-utility a {
  color: #ffffff;
  font-weight: 780;
}

.hc-header {
  top: 0;
  min-height: 88px;
  padding-block: 17px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(7, 27, 54, .06);
}

.hc-nav {
  border: 0;
  background: transparent;
  border-radius: 0;
  gap: 30px;
}

.hc-nav a {
  padding: 12px 0;
  border-radius: 0;
  color: #06152f;
  font-weight: 850;
}

.hc-nav a:nth-child(1)::after,
.hc-nav a:nth-child(2)::after,
.hc-nav a:nth-child(4)::after,
.hc-nav a:nth-child(5)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin: 0 0 4px 8px;
}

.hc-login {
  border-radius: 10px;
  background: linear-gradient(180deg, #115cff, #0245e7);
  box-shadow: 0 14px 32px rgba(2, 69, 231, .22);
}

.hc-hero {
  position: relative;
  padding-top: 88px;
  background: linear-gradient(90deg, #ffffff 0, #ffffff 60%, #f2f7ff 60%, #f2f7ff 100%);
}

.hc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 0 58%, rgba(5, 76, 255, .09) 58.2%, rgba(5, 76, 255, .09) 78%, transparent 78.2%);
}

.hc-hero-grid {
  position: relative;
  z-index: 1;
}

.hc-hero h1,
.hc-section-head h2,
.hc-category h3 {
  letter-spacing: 0;
}

.hc-assist,
.hc-block,
.hc-popular-item,
.hc-category,
.hc-article,
.hc-panel {
  border-radius: 10px;
}

.hc-blueprint-marquee {
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90deg, #064cff, #0032bf);
}

.hc-blueprint-marquee-track {
  display: flex;
  width: max-content;
  animation: hcMarquee 32s linear infinite;
  will-change: transform;
}

.hc-blueprint-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  min-width: 100vw;
  padding: 14px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 900;
}

.hc-blueprint-marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.hc-blueprint-marquee-group span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
}

@keyframes hcMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hc-topline .hc-shell {
    justify-content: center;
  }

  .hc-utility {
    display: none;
  }

  .hc-nav {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .hc-topline .hc-shell {
    min-height: 36px;
    text-align: center;
  }

  .hc-header {
    min-height: auto;
  }

  .hc-blueprint-marquee-group {
    font-size: 14px;
  }
}
