:root {
  --hl-bg-primary: #050f0d;
  --hl-bg-secondary: #071311;
  --hl-bg-card: #0c1816;
  --hl-bg-card-header: #091412;
  --hl-bg-card-border: #1f2d2b;
  --hl-bg-row-border: #1b2927;
  --hl-color-secondary: #caeae5;
  --hl-color-muted: #6b7271;
  --hl-color-gray: #4f4f4f;
  --hl-color-white: #ffffff;
  --hl-color-success: #2dc24e;
  --hl-color-error: #ff4245;
  --hl-border-subtle: #1d2a28;
  --hl-border-card: #1f2d2b;
  --hl-font-lufga: Lufga, sans-serif;
}

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

.hl-page {
  background-color: var(--hl-bg-secondary);
  color: var(--hl-color-secondary);
  font-family: var(--hl-font-lufga);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ── HEADER ── */

.hl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background-color: var(--hl-bg-primary);
  border-bottom: 1px solid var(--hl-border-subtle);
  padding: 0 24px;
  flex-shrink: 0;
}

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

.hl-header__logo img {
  height: 22px;
  width: auto;
}

.hl-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hl-header__nav a {
  font-family: var(--hl-font-lufga);
  font-size: 14px;
  font-weight: 400;
  color: var(--hl-color-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hl-header__nav a:hover {
  color: rgba(202, 234, 229, 0.7);
}

.hl-header__nav a.active {
  color: var(--hl-color-secondary);
}

/* ── MAIN CONTENT WRAPPER ── */

.hl-main {
  flex: 1;
  width: 100%;
  padding: 40px 24px 64px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hl-main {
    padding: 48px 0 80px;
  }
}

/* ── PAGE TITLE ── */

.hl-page-title {
  font-family: var(--hl-font-lufga);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--hl-color-white);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.hl-page-subtitle {
  font-family: var(--hl-font-lufga);
  font-size: 14px;
  font-weight: 300;
  color: var(--hl-color-muted);
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* ── Q&A CARDS (help page) ── */

.hl-qa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hl-qa-card {
  background-color: var(--hl-bg-card);
  border: 1px solid var(--hl-border-card);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.hl-qa-card:hover {
  border-color: rgba(202, 234, 229, 0.2);
}

.hl-qa-card__question {
  font-family: var(--hl-font-lufga);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  color: var(--hl-color-white);
  margin: 0;
  padding: 18px 20px;
  background-color: #091412;
  border-bottom: 1px solid var(--hl-border-card);
  line-height: 1.4;
}

.hl-qa-card__answer {
  font-family: var(--hl-font-lufga);
  font-size: 13px;
  font-weight: 300;
  color: rgba(202, 234, 229, 0.75);
  margin: 0;
  padding: 16px 20px 18px;
  line-height: 1.7;
}

.hl-qa-card__answer a {
  color: var(--hl-color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.hl-qa-card__answer a:hover {
  color: var(--hl-color-white);
}

/* ── TEAM PAGE SECTIONS ── */

.hl-sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hl-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hl-section__heading {
  font-family: var(--hl-font-lufga);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 400;
  color: var(--hl-color-white);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hl-border-card);
  line-height: 1.4;
}

.hl-section__text {
  font-family: var(--hl-font-lufga);
  font-size: 13px;
  font-weight: 300;
  color: rgba(202, 234, 229, 0.75);
  margin: 0;
  line-height: 1.75;
}

.hl-section__text + .hl-section__text {
  margin-top: 12px;
}

.hl-section__text a {
  color: var(--hl-color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.hl-section__text a:hover {
  color: var(--hl-color-white);
}

/* ── TEAM GRID ── */

.hl-team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .hl-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hl-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hl-team-card {
  background-color: var(--hl-bg-card);
  border: 1px solid var(--hl-border-card);
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.2s ease;
}

.hl-team-card:hover {
  border-color: rgba(202, 234, 229, 0.2);
}

.hl-team-card__name {
  font-family: var(--hl-font-lufga);
  font-size: 14px;
  font-weight: 400;
  color: var(--hl-color-white);
  margin: 0 0 4px 0;
}

.hl-team-card__role {
  font-family: var(--hl-font-lufga);
  font-size: 12px;
  font-weight: 300;
  color: rgba(202, 234, 229, 0.5);
  margin: 0 0 10px 0;
}

.hl-team-card__bio {
  font-family: var(--hl-font-lufga);
  font-size: 12px;
  font-weight: 300;
  color: rgba(202, 234, 229, 0.65);
  margin: 0;
  line-height: 1.6;
}

/* ── STATS ROW ── */

.hl-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .hl-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hl-stat-card {
  background-color: var(--hl-bg-card);
  border: 1px solid var(--hl-border-card);
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hl-stat-card__value {
  font-family: var(--hl-font-lufga);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--hl-color-white);
  line-height: 1.2;
}

.hl-stat-card__value span {
  color: var(--hl-color-muted);
  font-size: 0.7em;
}

.hl-stat-card__label {
  font-family: var(--hl-font-lufga);
  font-size: 11px;
  font-weight: 300;
  color: var(--hl-color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── VALUES / APPROACH LIST ── */

.hl-value-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hl-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--hl-bg-card);
  border: 1px solid var(--hl-border-card);
  border-radius: 8px;
  padding: 14px 18px;
}

.hl-value-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(202, 234, 229, 0.4);
  flex-shrink: 0;
  margin-top: 7px;
}

.hl-value-item__text {
  font-family: var(--hl-font-lufga);
  font-size: 13px;
  font-weight: 300;
  color: rgba(202, 234, 229, 0.75);
  line-height: 1.65;
  margin: 0;
}

.hl-value-item__text strong {
  color: var(--hl-color-white);
  font-weight: 400;
}

/* ── RETURN / HOME BUTTON ── */

.hl-return-section {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--hl-border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hl-font-lufga);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 8px;
  padding: 7px 18px;
  transition: opacity 0.2s ease;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.hl-btn:hover {
  opacity: 0.8;
}

.hl-btn--primary {
  background-color: var(--hl-color-secondary);
  color: var(--hl-bg-primary);
}

.hl-btn--ghost {
  background-color: rgba(202, 234, 229, 0.06);
  color: rgba(202, 234, 229, 0.7);
  border: 1px solid var(--hl-border-card);
}

.hl-btn--ghost:hover {
  background-color: rgba(202, 234, 229, 0.1);
  opacity: 1;
}

/* ── FOOTER ── */

.hl-footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--hl-border-subtle);
  background-color: #071311;
  padding: 16px 24px;
}

.hl-footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hl-footer__links a {
  font-family: var(--hl-font-lufga);
  font-size: 13px;
  font-weight: 300;
  color: var(--hl-color-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hl-footer__links a:hover {
  color: var(--hl-color-secondary);
}

.hl-footer__copy {
  font-family: var(--hl-font-lufga);
  font-size: 12px;
  font-weight: 300;
  color: var(--hl-color-muted);
}

/* ── INLINE LINK STYLE (body text) ── */

.hl-link {
  color: var(--hl-color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

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

/* ── BREADCRUMB ── */

.hl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hl-breadcrumb__item {
  font-family: var(--hl-font-lufga);
  font-size: 12px;
  font-weight: 300;
  color: var(--hl-color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hl-breadcrumb__item:hover {
  color: var(--hl-color-secondary);
}

.hl-breadcrumb__item.current {
  color: rgba(202, 234, 229, 0.5);
  pointer-events: none;
}

.hl-breadcrumb__sep {
  font-size: 11px;
  color: var(--hl-color-muted);
  opacity: 0.5;
}

/* ── DIVIDER ── */

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

/* ── NOTICE CHIP ── */

.hl-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: rgba(202, 234, 229, 0.05);
  border: 1px solid rgba(202, 234, 229, 0.1);
  font-family: var(--hl-font-lufga);
  font-size: 11px;
  font-weight: 400;
  color: rgba(202, 234, 229, 0.5);
}

/* ── MOBILE TWEAKS ── */

@media (max-width: 639px) {
  .hl-header {
    padding: 0 16px;
  }

  .hl-main {
    padding: 28px 16px 48px;
  }

  .hl-footer {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hl-header__nav {
    gap: 16px;
  }

  .hl-qa-card__question {
    padding: 14px 16px;
  }

  .hl-qa-card__answer {
    padding: 12px 16px 14px;
  }

  .hl-return-section {
    flex-direction: column;
    align-items: flex-start;
  }
}