/* ============================================================
   Soul Spectrum — theme.css   (styles.css 다음에 로드)

   styles.css 의 로고 팔레트(navy #004189 / teal #0F8EA8)는 유지한다.
   이 파일이 하는 일:
     · GNB 를 진한 그라디언트 바로
     · 반복되는 섹션 리듬을 깬다 (acronym / rows / 배경 4종)
     · SLDA 를 잉크 배경으로 분리
     · 폼 · 조회 · 문서 페이지 스타일

   <link rel="stylesheet" href="assets/styles.css" />
   <link rel="stylesheet" href="assets/theme.css" />
   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
   ============================================================ */

:root {
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* GNB — 로고보다 한 단계 진하고 채도가 높다 */
  --gnb-from: #1B74C7;
  --gnb-to:   #036E8D;
  --gradient-gnb: linear-gradient(100deg, var(--gnb-from) 0%, var(--gnb-to) 100%);

  /* 잉크 — SLDA 전용. GNB 와 구별되어야 한다 */
  --ink: #061524;
}

/* 영문 Inter, 한글 Pretendard 로 자동 폴백 */
body {
  font-family: "Inter", "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}


/* ============================================================
   1. GNB
   ============================================================ */
.site-header {
  height: 76px;
  background: var(--gradient-gnb);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand { gap: 0; }
.brand-mark { height: 34px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 40px; }
.nav-toggle { display: none; }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;               /* bold */
  letter-spacing: -0.005em;
  color: #fff;
  opacity: 0.92;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.16s ease;
}

.nav-link:hover { color: #fff; opacity: 1; }
.nav-link.is-active { color: #fff; opacity: 1; }
.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -28px;
  height: 2px;
  background: #fff;
  border-radius: 2px 2px 0 0;
}

/* 오른쪽 알약 — GNB보다 작게, semibold, 글자에 맞춰 늘어남 */
/* ============================================================
   섹션 배경 — 순서로 리듬을 만든다
   ============================================================ */

/* 1. 기본 — 흰색 (styles.css .section 그대로) */

/* 2. .section-muted — 연회색 (styles.css 그대로) */

/* 3. .section-brand — 진한 그라디언트. GNB와 같은 색 */
.section-brand {
  background: var(--gradient-gnb);
  color: #fff;
}
.section-brand .section-title { color: #fff; }
.section-brand .section-desc { color: rgba(255,255,255,.82); }
.section-brand .section-desc strong { color: #fff; font-weight: 600; }
.section-brand .eyebrow {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.section-brand .tile {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
}
.section-brand .tile:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.3);
  box-shadow: none;
}
.section-brand .tile h3 { color: #fff; }
.section-brand .tile p { color: rgba(255,255,255,.75); }
.section-brand .rows { border-color: rgba(255,255,255,.16); }
.section-brand .rows li { border-color: rgba(255,255,255,.16); }
.section-brand .rows li:hover { background: rgba(255,255,255,.06); }
.section-brand .rows-k { color: #fff; }
.section-brand .rows p { color: rgba(255,255,255,.75); }
.section-brand .rule { color: rgba(255,255,255,.8); }
.section-brand .rule strong { color: #fff; }
.section-brand .rule::before {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.06) 100%);
}
.section-brand .btn-primary {
  background: #fff;
  color: var(--gnb-to);
}
.section-brand .btn-primary:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.section-brand .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.section-brand .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* 4. .section-ink — 잉크. SLDA 전용 */
.section-ink { background: #061524; color: #DCE6F0; }
/* ============================================================
   13. 칩 — 채운 알약 대신 테두리 상자
   .eyebrow · .badge · .meta-pill 을 한 형태로 통일한다
   ============================================================ */
.eyebrow,
.badge,
.meta-pill {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--text);
  border-radius: 4px;
  color: var(--text);
  font-family: "Inter", "Pretendard", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: none;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  margin-bottom: 24px;
}

.badge {
  font-size: 0.78rem;
  padding: 7px 13px;
  color: var(--text-muted);
  border-color: var(--border-strong);
}

.badge-ip {
  color: var(--text);
  border-color: var(--text);
  font-weight: 700;
}
.badge-ip::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 8px;
  font-size: 0;
}

.meta-pill {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  color: var(--text-muted);
  border-color: var(--border-strong);
}
.meta-pill strong { color: var(--text); font-weight: 700; }

/* 어두운 섹션 위에서는 흰 테두리 */
.section-ink .eyebrow,
.section-slda .eyebrow,
.section-brand .eyebrow {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
GNB 폰트
css/* 위 1번 GNB 블록의 .nav-link 를 이걸로 교체 */
.brand-logo { height: 34px; width: auto; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;               /* bold */
  letter-spacing: -0.005em;
  color: #fff;
  opacity: 0.92;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.16s ease;
}

/* 오른쪽 알약 — GNB보다 작게, semibold, 글자에 맞춰 늘어남 */
.pill {
  display: inline-flex;
  align-items: center;
  width: auto;
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 0.85rem;             /* GNB 0.98rem 보다 작다 */
  font-weight: 600;               /* semibold */
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.pill {
  display: inline-flex;
  align-items: center;
  width: auto;
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background 0.18s ease,
              color 0.18s ease,
              border-color 0.18s ease,
              box-shadow 0.2s ease,
              transform 0.15s ease;
}

.pill:hover { transform: translateY(-1px); }
.pill:active { transform: translateY(0); }

/* Early Access — 검정. 호버 시 살짝 밝아지며 떠오른다 */
.pill-dark {
  background: #0A1628;
  color: #fff;
}
.pill-dark:hover {
  background: #16283F;
  box-shadow: 0 8px 22px rgba(0,0,0,0.32);
}

/* Partnership — 연한 하늘. 호버 시 채워진다 */
.pill-light {
  background: #8FDCEC;
  color: #002E5F;
}
.pill-light:hover {
  background: #fff;
  color: var(--gnb-to);
  box-shadow: 0 8px 22px rgba(255,255,255,0.28);
}

.chev { opacity: 0.7; transition: transform 0.18s ease; }

/* 2depth */
.nav-item { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  min-width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item:hover .chev { transform: rotate(180deg); }

.submenu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.16s ease;
}
.submenu a:hover { background: var(--bg-soft); }
.submenu b {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.submenu span { font-size: 0.83rem; color: var(--text-muted); }

/* 알약 버튼 */
.header-cta { display: flex; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 22px;
  border-radius: 100px;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.header-cta-mobile { display: none; }

.pill:hover { transform: translateY(-1px); }
.pill-dark { background: #0A1628; color: #fff; }
.pill-dark:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.28); }
.pill-light { background: #8FDCEC; color: #002E5F; }
.pill-light:hover { box-shadow: 0 8px 24px rgba(143,220,236,0.45); }

@media (max-width: 980px) {
  .nav { gap: 24px; }
  .nav-link { font-size: 0.88rem; }
  .pill { padding: 9px 16px; font-size: 0.8rem; }
}
@media (max-width: 760px) {
  .header-cta .pill-light { display: none; }
  .nav { gap: 16px; }
}


/* ============================================================
   2. 섹션 배경 4종 — 순서로 리듬을 만든다
   흰색 → 연회색 → 흰색 → 잉크 → 흰색
   어두운 섹션은 페이지당 한 번만.
   ============================================================ */

/* .section          기본 흰색   (styles.css) */
/* .section-muted    연회색      (styles.css) */

/* .section-brand — GNB 와 같은 그라디언트 */
.section-brand { background: var(--gradient-gnb); color: #fff; }
.section-brand .section-title { color: #fff; }
.section-brand .section-desc { color: rgba(255,255,255,0.82); }
.section-brand .section-desc strong { color: #fff; font-weight: 600; }
.section-brand .eyebrow { background: rgba(255,255,255,0.16); color: #fff; }
.section-brand .tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.section-brand .tile:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}
.section-brand .tile h3 { color: #fff; }
.section-brand .tile p { color: rgba(255,255,255,0.75); }
.section-brand .rows,
.section-brand .rows li { border-color: rgba(255,255,255,0.16); }
.section-brand .rows li:hover { background: rgba(255,255,255,0.06); }
.section-brand .rows-k { color: #fff; }
.section-brand .rows p { color: rgba(255,255,255,0.75); }
.section-brand .btn-primary { background: #fff; color: var(--gnb-to); }
.section-brand .btn-primary:hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.section-brand .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.section-brand .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.section-brand .rule { color: rgba(255,255,255,0.8); }
.section-brand .rule strong { color: #fff; }
.section-brand .rule::before {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.06) 100%);
}

/* .section-ink — SLDA 전용. GNB 와 다른 색이어야 별개 제품으로 읽힌다 */
.section-ink,
.section-slda {
  background: var(--ink);
  color: #DCE6F0;
  border: 0;
  padding: 104px 0;
}
.section-ink .eyebrow,
.section-slda .eyebrow {
  background: rgba(15,142,168,0.16);
  color: #5FD0E8;
}
.section-ink .section-title,
.section-slda .section-title { color: #fff; }
.section-ink .section-desc,
.section-slda .section-desc { color: #93A6BC; }
.section-ink .section-desc strong,
.section-slda .section-desc strong { color: #DCE6F0; font-weight: 600; }

.section-ink .tile,
.section-slda .tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.section-ink .tile:hover,
.section-slda .tile:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(15,142,168,0.45);
  box-shadow: none;
}
.section-ink .tile h3,
.section-slda .tile h3 { color: #fff; }
.section-ink .tile p,
.section-slda .tile p { color: #8798AE; }

.section-ink .rows,
.section-ink .rows li,
.section-slda .rows,
.section-slda .rows li { border-color: rgba(255,255,255,0.1); }
.section-ink .rows li:hover,
.section-slda .rows li:hover { background: rgba(255,255,255,0.04); }
.section-ink .rows-k,
.section-slda .rows-k { color: #fff; }
.section-ink .rows p,
.section-slda .rows p { color: #8798AE; }

.section-ink .rule,
.section-slda .rule { color: #93A6BC; margin: 44px auto; }
.section-ink .rule strong,
.section-slda .rule strong { color: #fff; }
.section-ink .rule::before,
.section-slda .rule::before {
  background: linear-gradient(180deg, var(--teal) 0%, rgba(15,142,168,0.05) 100%);
}

/* 잉크 섹션 안의 CTA — 그라디언트 대신 유리판 */
.section-ink .cta-strip,
.section-slda .cta-strip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  margin-top: 48px;
}
.section-ink .cta-strip::before,
.section-slda .cta-strip::before { display: none; }
.section-ink .cta-copy h3,
.section-slda .cta-copy h3 { color: #fff; }
.section-ink .cta-copy p,
.section-slda .cta-copy p { color: #93A6BC; }
.section-ink .cta-strip .btn-primary,
.section-slda .cta-strip .btn-primary { background: var(--teal); color: #04121F; }
.section-ink .cta-strip .btn-primary:hover,
.section-slda .cta-strip .btn-primary:hover {
  background: #14A6C2;
  box-shadow: 0 10px 30px rgba(15,142,168,0.3);
}
.section-ink .cta-strip .btn-outline,
.section-slda .cta-strip .btn-outline { color: #DCE6F0; border-color: rgba(255,255,255,0.26); }
.section-ink .cta-strip .btn-outline:hover,
.section-slda .cta-strip .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}


/* ============================================================
   3. CASP 두문자 — 상자를 없애고 글자를 세운다
   <dl class="acronym"><div><dt><b>C</b>ognitive</dt><dd>…</dd></div></dl>
   ============================================================ */
.grid-4 .tile::before { display: none; }   /* 좌측 그라디언트 바 제거 */

/* ============================================================
   4. 좌측정렬 섹션 — 가운데정렬 반복을 깬다
   <section class="section section-lead">
   ============================================================ */
.section-lead .section-title { text-align: left; max-width: 18ch; }
.section-lead .section-desc {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 62ch;
}
@media (min-width: 992px) {
  .section-lead .lead-head {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
  }
  .section-lead .lead-head .section-title,
  .section-lead .lead-head .section-desc { margin-bottom: 0; }
}


/* ============================================================
   5. 헤어라인 목록 — tile 그리드 대신
   <ol class="rows"><li><span class="rows-k">…</span><p>…</p></li></ol>
   ============================================================ */
.rows { border-top: 1px solid var(--border); }
.rows li {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: background 0.18s ease;
}
.rows li:hover { background: var(--bg-soft); }
.rows-k {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.rows p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.75; margin: 0; }
@media (max-width: 820px) {
  .rows li { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .rows li:hover { background: transparent; }
}


/* ============================================================
   6. CTA — 그라디언트는 페이지당 한 번. 나머지는 플랫
   <div class="cta-strip cta-plain">
   ============================================================ */
.cta-plain {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: none;
  color: var(--text);
}
.cta-plain::before { display: none; }
.cta-plain .cta-copy h3 { color: var(--text); }
.cta-plain .cta-copy p { color: var(--text-muted); }
.cta-plain .btn-primary { background: var(--navy); color: #fff; }
.cta-plain .btn-primary:hover { background: var(--navy-dark); }
.cta-plain .btn-outline { border-color: var(--border-strong); color: var(--text); }
.cta-plain .btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--navy-soft);
}


/* ============================================================
   7. ★ Signature — drift rule
   세로선이 위에서 아래로 옅어진다. 드리프트를 형태로.
   ============================================================ */

.rule {
  position: relative;
  max-width: 100%;
  margin: 48px auto;          /* ← 0 auto 였다. 위아래 여백 + 가운데 정렬 */
  padding: 6px 0 6px 30px;
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--text-muted);
}
.rule::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, rgba(15,142,168,0.05) 100%);
}
.rule strong { color: var(--text); font-weight: 600; }

/* 좌측정렬 섹션 안에서는 왼쪽에 붙는다 */
.section-lead .rule {
  margin-left: 0;
  margin-right: 0;
  max-width: 72ch;
}

/* ============================================================
   8. 푸터 2열
   ============================================================ */
.footer-inner { align-items: flex-start; }
.footer-cols { display: flex; gap: 56px; }
.footer-col-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.footer-col a { display: block; margin-bottom: 7px; }
.footer-meta { line-height: 1.9; }
@media (max-width: 720px) { .footer-cols { gap: 32px; } }


/* ============================================================
   9. 폼 (slda.html)
   ============================================================ */
.form-grid { display: grid; gap: 26px; max-width: 720px; margin: 0 auto; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
}
.field .hint { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin: 7px 0 0; }
.field .hint strong { color: var(--text); }

.field input[type=text],
.field input[type=number],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field textarea { min-height: 170px; resize: vertical; line-height: 1.7; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.counter { text-align: right; font-size: 0.75rem; color: var(--text-dim); margin-top: 5px; }

.filelist { margin-top: 12px; font-size: 0.85rem; }
.filelist div { padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.filelist .bad { color: #C0392B; }

.policy { font-size: 0.9rem; line-height: 1.9; color: var(--text-muted); }
.policy li { margin-bottom: 4px; }
.policy strong { color: var(--text); font-weight: 600; }

#result { display: none; }

.ref-box {
  font-family: var(--mono);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--navy-soft);
  border: 1px dashed rgba(0,65,137,0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.msg { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-top: 16px; }
.msg.err { background: rgba(192,57,43,0.05); border: 1px solid rgba(192,57,43,0.3); color: #C0392B; }
.progress { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; }


/* ============================================================
   10. 접수 조회 (status.html)
   ============================================================ */
.lookup { max-width: 620px; margin: 0 auto; }
.lookup-row { display: flex; gap: 12px; }
.lookup input {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
}
.lookup input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
@media (max-width: 640px) { .lookup-row { flex-direction: column; } }

.log { margin-top: 32px; }
.log-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.log-time {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.log-status { font-weight: 600; font-size: 1rem; color: var(--text); }
.log-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.log-item.purged .log-status { color: var(--text-dim); }
.readonly-note { font-size: 0.82rem; color: var(--text-dim); margin-top: 28px; line-height: 1.8; }
@media (max-width: 640px) { .log-item { grid-template-columns: 1fr; gap: 6px; } }


/* ============================================================
   11. 문서 페이지 (privacy.html)
   ============================================================ */
.doc { max-width: 760px; margin: 0 auto; }
.doc h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.doc h2:first-of-type { margin-top: 0; }
.doc p, .doc li { line-height: 1.9; font-size: 0.95rem; color: var(--text-muted); }
.doc p { margin-bottom: 14px; }
.doc strong { color: var(--text); font-weight: 600; }
.doc ul { list-style: disc; padding-left: 20px; }
.doc li { margin-bottom: 6px; }
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.9rem; }
.doc th, .doc td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
}
.doc th { font-weight: 600; color: var(--text-dim); font-size: 0.8rem; }
.doc code {
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-soft);
  color: var(--navy);
}
.revision {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  line-height: 1.9;
}


/* ============================================================
   12. 접근성
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
.site-header :focus-visible { outline-color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .tile:hover, .btn-primary:hover, .pill:hover { transform: none; }
}

/* ============================================================
   13. 칩
   채운 것은 누르는 것뿐. eyebrow 는 검정, 나머지는 테두리.
   ============================================================ */
.eyebrow,
.badge,
.meta-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  font-family: "Inter", "Pretendard", sans-serif;
  letter-spacing: -0.005em;
  text-transform: none;
  box-shadow: none;
  white-space: nowrap;
}

/* 채워진 검정 — 페이지의 태그라인 */
.eyebrow {
  background: #0A1628;
  border: 0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  margin-bottom: 26px;
}

/* 테두리 — 누르는 것이 아니다 */
.badge {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 16px;
}

/* 특허만 진하게 — 제3자가 찍어준 사실 */
.badge-ip {
  border-color: var(--navy);
  color: var(--navy);
  font-weight: 700;
}
.badge-ip::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 8px;
  flex-shrink: 0;
}

.meta-pill {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 18px;
}
.meta-pill strong { color: var(--text); font-weight: 700; }

/* 어두운 섹션에서는 반전 */
.section-ink .eyebrow,
.section-slda .eyebrow,
.section-brand .eyebrow {
  background: #fff;
  color: var(--ink);
}
.section-ink .badge,
.section-slda .badge,
.section-brand .badge {
  border-color: rgba(255,255,255,0.28);
  color: #93A6BC;
}
/*방어용 */
.nav-group, .nav-sep, .nav-link-alt { display: none; }

/* ============================================================
   14. 페이지 전환
   ============================================================ */
@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: fade-out 0.16s ease both;
}
::view-transition-new(root) {
  animation: fade-in 0.26s ease both;
}

@keyframes fade-out {
  to { opacity: 0; }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* GNB 는 넘어가지 않는다 — 자리에 그대로 있다 */
.site-header { view-transition-name: header; }
::view-transition-old(header),
::view-transition-new(header) { animation: none; }

@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

@media (max-width: 760px) {
  /* 데스크톱 nav · 알약 숨김 */
  .nav,
  .header-cta { display: none; }

  /* 햄버거 버튼 */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle svg { display: block; }
  .nav-toggle rect { fill: #fff; }

  /* 펼침 패널 */
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--gnb-to);
    padding: 12px 20px 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.24);
    z-index: 999;
  }
  .nav.is-open .nav-link {
    padding: 16px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,.12);
    width: 100%;
    justify-content: space-between;
  }
  .nav.is-open .nav-item { width: 100%; }

  /* 모바일에선 서브메뉴를 항상 펼쳐 둔다 */
  .nav.is-open .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 12px;
  }
  .nav.is-open .submenu a { padding: 12px 8px; }
  .nav.is-open .submenu b { color: #fff; }
  .nav.is-open .submenu span { color: rgba(255,255,255,.7); }
  .nav.is-open .chev { display: none; }

  /* 알약을 패널 안으로 */
  .nav.is-open .header-cta-mobile {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 18px;
  }
  .nav.is-open .header-cta-mobile .pill { flex: 1; justify-content: center; }
}

@media (max-width: 760px) {
  .nav.is-open .header-cta-mobile { display: flex; }
}

/* ── 게시판 (early-access.html) ── */
.board { margin-top: 28px; }

.board-topbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.board-views {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: var(--mono);
  white-space: nowrap;
}
.board-views strong { color: var(--text-muted); font-weight: 600; }

.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--navy-soft);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.notice-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 1px;
}
.notice p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
}

.board-head,
.board-row {
  display: grid;
  grid-template-columns: 140px 64px 1fr 92px 56px;
  gap: 16px;
  align-items: center;
  padding: 16px 4px;
}
.board-head {
  border-bottom: 1px solid var(--border-strong);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.board-row {
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  transition: background 0.16s ease;
}
.board-row:hover { background: var(--bg-soft); }

.b-nick { font-weight: 600; color: var(--navy); }
.b-kind { font-size: 0.8rem; color: var(--text-muted); }
.b-title { color: var(--text); }
.b-title em { color: var(--text-dim); font-style: normal; }
.b-date { font-family: var(--mono); font-size: 0.8rem; color: var(--text-dim); text-align: right; }

.b-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1.5px solid var(--border-strong);
  color: var(--text-muted);
  white-space: nowrap;
}
.b-status.s-ok   { border-color: var(--teal); color: var(--teal); }
.b-status.s-run  { border-color: var(--navy); color: var(--navy); }
.b-status.s-done { border-color: var(--navy); color: #fff; background: var(--navy); }
.b-status.s-no   { border-color: var(--text-dim); color: var(--text-dim); }
.b-status.s-purged { border-color: var(--border); color: var(--text-dim); border-style: dashed; }

.board-empty {
  padding: 44px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.92rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
}

@media (max-width: 720px) {
  .board-head { display: none; }
  .board-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "nick status" "title title" "kind date";
    gap: 6px 12px;
    padding: 18px 4px;
  }
  .b-nick   { grid-area: nick; }
  .b-status { grid-area: status; justify-self: end; }
  .b-title  { grid-area: title; font-size: 0.88rem; color: var(--text-muted); }
  .b-kind   { grid-area: kind; }
  .b-date   { grid-area: date; text-align: left; justify-self: start; }
}

/* ── 약관 스크롤 박스 ── */
.terms-box {
  height: 220px;
  overflow-y: auto;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}
.terms-box h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--navy); margin: 18px 0 6px;
}
.terms-box h4:first-child { margin-top: 0; }
.terms-box p { color: var(--text-muted); margin: 0 0 4px; }
.terms-box .terms-more {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--border); font-size: 0.85rem;
}
.terms-box a { color: var(--teal); font-weight: 600; }

.terms-agree {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; padding: 14px 16px;
  border-radius: var(--radius-sm); background: var(--bg-soft);
  cursor: not-allowed; transition: background 0.2s ease;
}
.terms-agree.ready { background: var(--navy-soft); cursor: pointer; }
.terms-agree input { width: auto; margin: 0; }
.terms-agree.ready #agree-text { color: var(--navy); font-weight: 600; }
#agree-text { font-size: 0.88rem; color: var(--text-dim); }

/* ════════════════════════════════════════════════════════════
   여기부터 theme.css 맨 아래에 붙인다.
   ════════════════════════════════════════════════════════════ */


/* ── 제출 전 체크리스트 (early-access.html) ── */
.checkbox-block { padding: 0; }

.role-pick {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  margin-bottom: 14px;
}
.role-q {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
}
.role-opt {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  margin: 0;
}
.role-opt input { width: auto; margin: 3px 0 0; flex-shrink: 0; }
.role-opt strong { color: var(--text); font-weight: 600; }

/* 마스킹 규칙 표 */
.mask-rule {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.mask-rule th, .mask-rule td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
}
.mask-rule th {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-soft);
  border-bottom-color: var(--border-strong);
}
.mask-rule td:first-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.mask-rule code {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--navy);
  background: var(--navy-soft);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}
.mask-note { font-size: 0.72rem; color: var(--text-dim); line-height: 1.5; }
@media (max-width: 640px) {
  .mask-rule th:nth-child(3), .mask-rule td:nth-child(3) { display: none; }
}

/* 체크 항목 */
.checklist { list-style: none; padding: 0; margin: 14px 0 0; }
.checklist li { margin-bottom: 2px; }
.checklist label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--text-muted);
  cursor: pointer;
  margin: 0;
  transition: background 0.14s ease;
}
.checklist label:hover { background: var(--bg-soft); }
.checklist input { width: auto; margin: 2px 0 0; flex-shrink: 0; }
.checklist input:checked + span { color: var(--text); }

/* 공개 범위 안내 */
.scope-note {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  line-height: 1.65;
  margin-top: 12px;
}
.scope-note.ok { background: var(--teal-soft); color: var(--navy); }
.scope-note.no {
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.3);
  color: #C0392B;
}


/* ── 처리 절차 표 (slda.html) ── */
.proc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 0.9rem;
}
.proc-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1.5px solid var(--navy);
  white-space: nowrap;
}
.proc-table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
  line-height: 1.75;
}
.proc-table td:first-child {
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
  width: 148px;
}
.proc-table td:last-child { width: 190px; color: var(--text); }
.proc-table strong { color: var(--text); font-weight: 600; }
.proc-table tr:hover td { background: var(--bg-card); }

.proc-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  vertical-align: 1px;
}
.proc-purge .proc-no { background: var(--teal); }
.proc-purge td:last-child { color: var(--teal); font-weight: 600; }

.proc-note {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .proc-table thead { display: none; }
  .proc-table tr {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .proc-table td {
    display: block;
    padding: 0 0 8px;
    border: 0;
    width: auto !important;
  }
  .proc-table td:first-child { font-size: 1rem; margin-bottom: 6px; }
  .proc-table td:last-child {
    font-size: 0.8rem;
    padding-top: 8px;
    border-top: 1px dashed var(--border);
  }
  .proc-table tr:hover td { background: transparent; }
}


/* ── 검출 대상 표 (slda.html) ── */
.pii-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: 0.86rem;
}
.pii-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1.5px solid var(--border-strong);
  white-space: nowrap;
}
.pii-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
  line-height: 1.7;
}
.pii-table td:first-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.pii-table code {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--navy);
  background: var(--navy-soft);
  padding: 3px 7px;
  border-radius: 3px;
  white-space: nowrap;
}
.pii-table code.bad {
  color: #C0392B;
  background: rgba(192,57,43,0.07);
  text-decoration: line-through;
  text-decoration-color: rgba(192,57,43,0.4);
}
.pii-note {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .pii-table th:nth-child(3), .pii-table td:nth-child(3) { display: none; }
}


/* ── 사전 규모 칩 ── */
.dict-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.dict-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.dict-chip b {
  font-family: var(--mono);
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 700;
}


/* ── 경고 블록 ── */
.warn {
  margin-top: 32px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border-left: 3px solid var(--teal);
}
.warn-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.warn p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.warn p:last-child { margin-bottom: 0; }
.warn strong { color: var(--text); font-weight: 600; }
.warn code {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--navy);
  background: var(--navy-soft);
  padding: 2px 6px;
  border-radius: 3px;
}


/* ── rows 태그 ── */
.rows-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1.5px solid var(--border-strong);
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.rows-tag.ok { border-color: var(--teal); color: var(--teal); }


/* ── 가이드 배너 (노션 연결) ── */
.guide-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  flex-wrap: wrap;
}
.guide-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,65,137,0.22);
}
.guide-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.guide-copy h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.guide-copy p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.guide-go {
  flex-shrink: 0;
  padding: 11px 22px;
  border-radius: 100px;
  background: #fff;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .guide-banner { padding: 24px; }
  .guide-go { width: 100%; text-align: center; }
}
/* ── 파일 태그 · 마스킹 리포트 (early-access.html) ── */
.f-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text-dim);
  vertical-align: 1px;
}
.f-tag.ok { border-color: var(--teal); color: var(--teal); }

.mask-report { margin-top: 14px; }

.mask-file {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--navy-soft);
  border-left: 3px solid var(--navy);
  margin-bottom: 10px;
}
.mask-file.ok {
  background: var(--teal-soft);
  border-left-color: var(--teal);
}
.mask-file b {
  display: block;
  font-size: 0.86rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.mask-file > span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.mask-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--bg-card);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.mask-chip b {
  display: inline;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--navy);
  margin: 0;
}
.mask-chip i {
  font-style: normal;
  font-size: 0.66rem;
  color: var(--text-dim);
}

/* ============================================================
   Lang Subbar — KOR / ENG 서브바
   메인바 아래 얼은 남색 바. 데스크톱·모바일 동일.
   ============================================================ */
.lang-subbar {
  background: #0A1E3D;          /* 메인바보다 한 단계 진한 남색 */
  height: 32px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 76px;                    /* site-header 높이와 동일 */
  z-index: 998;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lang-subbar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.lang-tab {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.lang-tab:hover {
  color: rgba(255,255,255,0.85);
}
.lang-tab--active {
  color: #fff;
  border-bottom-color: #8FDCEC;  /* 메인바 틸 색 */
  pointer-events: none;
  cursor: default;
}

/* 모바일: 서브바 높이 유지 */
@media (max-width: 760px) {
  .lang-subbar { top: 76px; height: 30px; }
  .lang-tab { font-size: 0.66rem; padding: 0 12px; }
}

/* ============================================================
   EN footer — dark navy (logo is white, needs dark bg)
   ============================================================ */
.site-footer--dark {
  background: #061524;
  border-top-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}
.site-footer--dark p,
.site-footer--dark strong,
.site-footer--dark .copy {
  color: rgba(255,255,255,0.75);
}
.site-footer--dark .footer-link {
  color: rgba(255,255,255,0.5);
}
.site-footer--dark .footer-link:hover {
  color: #8FDCEC;
}
