/* ── satellite-korea 2-row 헤더 (index / privacy / terms 전용 포함) ── */
:root {
  --bg:     #080c1a;
  --bg2:    #0d1228;
  --border: rgba(255,255,255,.08);
  --txt:    #e8eaf6;
  --txt2:   #8892b0;
  --blue:   #4f9eff;
  --teal:   #22d3ee;
}

body { padding-top: 98px; }

.site-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: transform .3s ease;
}
.site-header.hide { transform: translateY(-100%); }
.site-header__inner { max-width: 1100px; margin: 0 auto; }

.site-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 8px 24px 6px;
  border-bottom: 1px solid var(--border);
}
.site-header__nav a {
  color: var(--txt2);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.site-header__nav a:hover { color: var(--blue); border-bottom-color: var(--blue); }
.site-header__nav a.active { color: var(--teal); border-bottom-color: var(--teal); }

.site-header__brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  position: relative;
  min-height: 56px;
}
.site-header__brand {
  color: var(--teal);
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.3px;
}

.site-header__hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.site-header__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.site-header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__hamburger.open span:nth-child(2) { opacity: 0; }
.site-header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header__drawer {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.site-header__drawer.open { max-height: 320px; }
.site-header__drawer a {
  display: block;
  padding: 14px 28px;
  color: var(--txt2);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.site-header__drawer a:hover,
.site-header__drawer a.active { color: var(--teal); background: rgba(34,211,238,.06); }

/* 햄버거 제거, 메뉴 항목 항상 표시 */
.site-header__hamburger { display: none !important; }
.site-header__drawer    { display: none !important; }

@media (max-width: 680px) {
  .site-header__nav { gap: 10px; padding: 6px 12px 5px; }
  .site-header__nav a { font-size: 11px; }
  body { padding-top: 98px; }
}
