:root {
  --hl-bg-primary: rgb(4, 37, 31);
  --hl-bg-secondary: rgb(15, 26, 31);
  --hl-bg-card: rgb(15, 26, 31);
  --hl-bg-hover: rgb(27, 36, 41);
  --hl-bg-border: rgb(39, 48, 53);
  --hl-text-primary: rgb(246, 254, 253);
  --hl-text-secondary: rgb(148, 158, 156);
  --hl-text-muted: rgb(154, 163, 164);
  --hl-accent: rgb(80, 210, 193);
  --hl-accent-hover: rgb(151, 252, 228);
  --hl-accent-dark: rgb(15, 51, 51);
  --hl-success: rgb(51, 153, 140);
  --hl-font: OurFont, system-ui, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.hl-page {
  background-color: var(--hl-bg-primary);
  background-image: url("back_lines.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  color: var(--hl-text-primary);
  font-family: var(--hl-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

.hl-page *,
.hl-page *::before,
.hl-page *::after {
  box-sizing: border-box;
}

/* ── NAVBAR ── */

.hl-navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 0 16px;
  height: 48px;
  background: rgb(15, 26, 30);
  border-bottom: 1px solid var(--hl-bg-border);
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100%;
  overflow-x: hidden;
}

.hl-navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.hl-navbar-logo svg {
  transform: translateY(2px);
}

.hl-navbar-links {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  flex-grow: 1;
  flex-wrap: wrap;
}

.hl-navbar-link {
  color: var(--hl-text-primary);
  text-decoration: none;
  font-family: var(--hl-font);
  font-size: 12px;
  font-weight: 400;
  padding: 8px 10px;
  white-space: nowrap;
  transition: color 0.2s ease-in-out;
  display: block;
}

.hl-navbar-link:hover {
  color: var(--hl-accent-hover);
}

.hl-navbar-link.active {
  color: var(--hl-accent);
}

/* ── FOOTER ── */

.hl-footer {
  padding: 3px 15px 6px 8px;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border-top: 0 solid var(--hl-bg-border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  max-width: 100%;
}

.hl-footer-status {
  position: relative;
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  color: var(--hl-accent);
  border: 1px solid var(--hl-accent);
  background: rgba(10, 153, 129, 0.2);
  border-radius: 5px;
  padding: 2px 8px 2px 18px;
  text-decoration: none;
  width: fit-content;
}

.hl-footer-status::before {
  position: absolute;
  top: 6px;
  left: 8px;
  content: " ";
  background: var(--hl-accent);
  height: 6px;
  width: 6px;
  border-radius: 50%;
}

.hl-footer-links {
  justify-content: end;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.hl-footer-link {
  color: var(--hl-text-primary);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease-in-out;
}

.hl-footer-link:hover {
  color: var(--hl-accent-hover);
}

/* ── MAIN CONTENT WRAPPER ── */

.hl-main {
  padding: 16px;
  max-width: 1312px;
  margin: 0 auto;
  overflow-x: hidden;
}

.hl-content-wrap {
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: calc(100vh - 48px - 40px);
  max-width: 100vw;
  overflow-x: hidden;
}

/* ── PAGE HEADER ── */

.hl-page-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hl-page-title {
  color: white;
  font-family: var(--hl-font);
  font-size: 34px;
  line-height: 37px;
  font-weight: 400;
  display: block;
  margin: 0;
}

.hl-page-subtitle {
  color: var(--hl-text-primary);
  font-family: var(--hl-font);
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
  display: block;
  max-width: 760px;
}

/* ── CARDS ── */

.hl-card {
  background: var(--hl-bg-card);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.hl-card-title {
  color: rgb(135, 140, 143);
  font-family: var(--hl-font);
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
  display: block;
  margin: 0 0 12px 0;
}

.hl-card-body {
  color: var(--hl-text-primary);
  font-family: var(--hl-font);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
}

.hl-card-body p {
  margin: 0 0 10px 0;
  color: var(--hl-text-primary);
}

.hl-card-body p:last-child {
  margin-bottom: 0;
}

/* ── SECTION HEADINGS ── */

.hl-section-heading {
  color: var(--hl-text-primary);
  font-family: var(--hl-font);
  font-size: 28px;
  line-height: 30px;
  font-weight: 400;
  margin: 0 0 16px 0;
}

.hl-section-label {
  color: rgb(135, 140, 143);
  font-family: var(--hl-font);
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px 0;
}

/* ── Q&A / SUPPORT ITEMS ── */

.hl-qa-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hl-qa-item {
  border-bottom: 1px solid var(--hl-bg-border);
  padding: 16px 0;
}

.hl-qa-item:last-child {
  border-bottom: none;
}

.hl-qa-question {
  color: var(--hl-text-primary);
  font-family: var(--hl-font);
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: block;
}

.hl-qa-answer {
  color: var(--hl-text-secondary);
  font-family: var(--hl-font);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

.hl-qa-answer a {
  color: var(--hl-accent);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.hl-qa-answer a:hover {
  color: var(--hl-accent-hover);
}

/* ── INFO SECTIONS ── */

.hl-info-section {
  margin-bottom: 32px;
}

.hl-info-section h2 {
  color: var(--hl-text-primary);
  font-family: var(--hl-font);
  font-size: 28px;
  line-height: 30px;
  font-weight: 400;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hl-bg-border);
}

.hl-info-section p {
  color: var(--hl-text-secondary);
  font-family: var(--hl-font);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.hl-info-section p:last-child {
  margin-bottom: 0;
}

.hl-info-section ul {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}

.hl-info-section ul li {
  color: var(--hl-text-secondary);
  font-family: var(--hl-font);
  font-size: 12px;
  line-height: 1.7;
  padding: 4px 0 4px 16px;
  position: relative;
}

.hl-info-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hl-accent);
}

.hl-info-section a {
  color: var(--hl-accent);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.hl-info-section a:hover {
  color: var(--hl-accent-hover);
}

/* ── STATS ROW ── */

.hl-stats-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 8px;
  margin-bottom: 12px;
}

.hl-stat-card {
  background: var(--hl-bg-card);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hl-stat-label {
  color: rgb(135, 140, 143);
  font-family: var(--hl-font);
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
}

.hl-stat-value {
  color: white;
  font-family: var(--hl-font);
  font-size: 28px;
  line-height: 30px;
  font-weight: 400;
}

/* ── INLINE LINKS (body text) ── */

.hl-link {
  color: var(--hl-accent);
  text-decoration: none;
  font-family: var(--hl-font);
  font-size: inherit;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.hl-link:hover {
  color: var(--hl-accent-hover);
}

.hl-link-muted {
  color: var(--hl-text-secondary);
  text-decoration: none;
  font-family: var(--hl-font);
  font-size: inherit;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.hl-link-muted:hover {
  color: var(--hl-accent-hover);
}

/* ── BUTTON ── */

.hl-btn {
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--hl-font);
  height: 40px;
  line-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  color: rgb(4, 6, 12);
  background-color: var(--hl-accent);
  text-decoration: none;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.hl-btn:hover {
  background-color: var(--hl-accent-hover);
  color: rgb(4, 6, 12);
}

.hl-btn-outline {
  display: inline-block;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--hl-font);
  height: 40px;
  line-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  color: var(--hl-accent);
  background-color: transparent;
  border: 1px solid var(--hl-accent);
  text-decoration: none;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.hl-btn-outline:hover {
  color: var(--hl-accent-hover);
  border-color: var(--hl-accent-hover);
}

/* ── HOME BUTTON ROW ── */

.hl-home-btn-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--hl-bg-border);
}

/* ── BREADCRUMB / NAV TABS ── */

.hl-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  line-height: 34px;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  overflow-x: unset;
  margin-bottom: 16px;
}

.hl-tab {
  cursor: pointer;
  color: var(--hl-text-secondary);
  border-bottom: 1px solid rgb(48, 48, 48);
  padding: 1px 12px 0;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  display: block;
}

.hl-tab:hover {
  color: white;
}

.hl-tab.active {
  color: var(--hl-text-primary);
  border-bottom: 1px solid rgb(48, 48, 48);
}

.hl-tab-fill {
  flex-grow: 1;
  border-bottom: 1px solid rgb(48, 48, 48);
}

.hl-tab-indicator {
  position: absolute;
  bottom: 0;
  height: 1px;
  background: var(--hl-accent);
  transition: left 0.3s;
}

/* ── DIVIDER ── */

.hl-divider {
  width: 100%;
  height: 1px;
  background: var(--hl-bg-border);
  border: none;
  margin: 20px 0;
}

/* ── TEXT UTILITIES ── */

.hl-text-primary {
  color: var(--hl-text-primary);
  font-family: var(--hl-font);
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
}

.hl-text-secondary {
  color: var(--hl-text-secondary);
  font-family: var(--hl-font);
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
}

.hl-text-muted {
  color: var(--hl-text-muted);
  font-family: var(--hl-font);
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
}

.hl-text-accent {
  color: var(--hl-accent);
}

.hl-text-bold {
  font-weight: 700;
}

.hl-text-14 {
  font-size: 14px;
  line-height: 15px;
}

.hl-text-28 {
  font-size: 28px;
  line-height: 30px;
}

.hl-text-34 {
  font-size: 34px;
  line-height: 37px;
}

/* ── ACTIVE STATUS BADGE ── */

.hl-badge-active {
  color: var(--hl-success);
  font-family: var(--hl-font);
  font-size: 12px;
}

.hl-badge-inactive {
  color: var(--hl-text-muted);
  font-family: var(--hl-font);
  font-size: 12px;
}

/* ── NOTICE / INFO BOX ── */

.hl-notice {
  background: rgb(15, 51, 51);
  border: 1px solid var(--hl-accent);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--hl-text-primary);
  font-family: var(--hl-font);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.hl-notice a {
  color: var(--hl-accent);
  text-decoration: none;
}

.hl-notice a:hover {
  color: var(--hl-accent-hover);
}

/* ── TWO COLUMN LAYOUT ── */

.hl-grid-2col {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 8px;
}

.hl-grid-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .hl-grid-2col {
    grid-template-columns: 1fr;
  }

  .hl-grid-equal {
    grid-template-columns: 1fr;
  }

  .hl-stats-row {
    grid-template-columns: 1fr;
  }

  .hl-page-title {
    font-size: 24px;
    line-height: 28px;
  }

  .hl-section-heading {
    font-size: 20px;
    line-height: 24px;
  }

  .hl-info-section h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .hl-navbar-links {
    display: none;
  }

  .hl-main {
    padding: 12px;
  }

  .hl-tabs {
    grid-template-columns: repeat(3, auto) 1fr;
    overflow-x: auto;
  }

  .hl-home-btn-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hl-page-title {
    font-size: 20px;
    line-height: 24px;
  }

  .hl-card {
    padding: 10px;
  }

  .hl-main {
    padding: 8px;
  }
}