/* ============================================================
   Windsoft design system
   Blueprint-paper look: light/dark, orange accent, drafting grid.
   Old token names are kept as aliases so pages with inline styles
   (mypage, contact, license) keep working unchanged.
   ============================================================ */

:root {
  --paper: #F7F8FA;
  --surface: #FFFFFF;
  --ink: #14181D;
  --graphite: #5A646E;
  --rule: #D8DEE4;
  --rule-soft: #E7EBEF;
  --accent: #E8720C;
  --accent-ink: #B85706;
  --accent-wash: rgba(232, 114, 12, .08);
  --grid: rgba(20, 24, 29, .05);

  --ok: #1E8E5A;
  --danger: #C0392B;

  --sans: "Segoe UI", "Helvetica Neue", Helvetica, "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
  --mono: "Cascadia Mono", Consolas, "SF Mono", "JetBrains Mono", "Courier New", monospace;

  --sheet: 1120px;
  --radius: 8px;

  /* aliases for older markup */
  --bg: var(--paper);
  --bg-soft: var(--paper);
  --card: var(--surface);
  --line: var(--rule);
  --text: var(--ink);
  --muted: var(--graphite);
  --brand: var(--accent);
  --brand-2: var(--accent-ink);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0E1216;
    --surface: #161B21;
    --ink: #E6EAEE;
    --graphite: #8C97A2;
    --rule: #262E36;
    --rule-soft: #1D242B;
    --accent: #FF8C00;
    --accent-ink: #FFA338;
    --accent-wash: rgba(255, 140, 0, .10);
    --grid: rgba(230, 234, 238, .05);
    --ok: #46D39A;
    --danger: #FF6B6B;
  }
}
:root[data-theme="dark"] {
  --paper: #0E1216;
  --surface: #161B21;
  --ink: #E6EAEE;
  --graphite: #8C97A2;
  --rule: #262E36;
  --rule-soft: #1D242B;
  --accent: #FF8C00;
  --accent-ink: #FFA338;
  --accent-wash: rgba(255, 140, 0, .10);
  --grid: rgba(230, 234, 238, .05);
  --ok: #46D39A;
  --danger: #FF6B6B;
}
:root[data-theme="light"] {
  --paper: #F7F8FA;
  --surface: #FFFFFF;
  --ink: #14181D;
  --graphite: #5A646E;
  --rule: #D8DEE4;
  --rule-soft: #E7EBEF;
  --accent: #E8720C;
  --accent-ink: #B85706;
  --accent-wash: rgba(232, 114, 12, .08);
  --grid: rgba(20, 24, 29, .05);
  --ok: #1E8E5A;
  --danger: #C0392B;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Sticky footer: the page body grows, the footer stays at the bottom. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Korean must not break mid-word; still allow very long unbreakable strings to wrap. */
  word-break: keep-all;
  overflow-wrap: break-word;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 32px 32px;
}

a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- header ---------- */
.nav {
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(6px);
  position: sticky; top: 0; z-index: 20;
}
.nav-in {
  display: flex; align-items: center; gap: 20px;
  height: 64px;
  max-width: var(--sheet); margin: 0 auto; padding: 0 28px;
}
/* compact buttons in the topbar */
.nav-actions .btn { padding: 8px 14px; font-size: 13.5px; }

.mark {
  display: flex; align-items: baseline; gap: 10px;
  font-weight: 800; letter-spacing: -.02em; font-size: 19px;
  text-decoration: none; color: var(--ink);
}
.mark:hover { text-decoration: none; }
.mark .w {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: 5px;
  background: var(--accent); color: #fff;
  font-size: 15px; font-weight: 800; letter-spacing: 0;
  transform: translateY(3px);
}
.chip {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em;
  color: var(--graphite);
  border: 1px solid var(--rule); border-radius: 999px;
  padding: 2px 9px; white-space: nowrap;
}

/* legacy brand markup */
.brand {
  font-weight: 800; font-size: 19px; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand span { color: var(--accent); }

.site-links { margin-left: auto; display: flex; gap: 4px; align-items: center; }
.site-link {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer; font: inherit;
  color: var(--graphite); text-decoration: none; font-size: 14px;
  padding: 4px 8px; border-bottom: 1px solid transparent;
}
.site-link:hover, .site-link:focus-visible { color: var(--ink); border-bottom-color: var(--accent); text-decoration: none; }
.site-link.active { color: var(--ink); border-bottom-color: var(--accent); }
.caret { font-size: 9px; opacity: .7; }

.menu { position: relative; }
.menu-panel {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 30;
  display: none; min-width: 250px; padding: 6px;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 6px; box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}
.menu.open .menu-panel { display: block; }
.menu-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 12px; border-radius: 4px;
  color: var(--ink); font-size: 14px; text-decoration: none;
}
.menu-item:hover { background: var(--accent-wash); text-decoration: none; }
.menu-item.active { background: var(--accent-wash); color: var(--accent-ink); }
.menu-item em {
  font-style: normal; font-family: var(--mono);
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--graphite);
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

@media (max-width: 860px) { .site-links { display: none; } .nav-actions { margin-left: auto; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 6px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  background: var(--ink); color: var(--paper);
  font-family: inherit;
}
.btn:hover, .btn:focus-visible { background: var(--accent); color: #fff; text-decoration: none; }
.btn.ghost, .btn-ghost { background: transparent; border-color: var(--rule); color: var(--ink); }
.btn.ghost:hover, .btn-ghost:hover { background: transparent; border-color: var(--accent); color: var(--accent-ink); }
.btn.block { width: 100%; justify-content: center; padding: 13px; }
.btn:disabled { opacity: .45; cursor: not-allowed; background: var(--ink); color: var(--paper); }

/* ---------- layout ---------- */
.wrap, .sheet { max-width: var(--sheet); margin: 0 auto; padding: 0 28px; }

/* home hero */
.hero {
  max-width: var(--sheet); margin: 0 auto;
  padding: 84px 28px 56px; text-align: center;
  border-bottom: 1px solid var(--rule);
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.25; letter-spacing: -.02em; font-weight: 800;
  text-wrap: balance;
}
.hero p { margin: 0 auto; max-width: 60ch; color: var(--graphite); font-size: 17px; }

/* product grid on home */
.products {
  max-width: var(--sheet); margin: 0 auto; padding: 56px 28px 20px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 860px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products { grid-template-columns: 1fr; } }

/* product promo rows (home) — icon + text, alternating sides */
.promo { width: 100%; max-width: var(--sheet); margin: 0 auto; padding: 20px 0 60px; box-sizing: border-box; display: flex; flex-direction: column; gap: 18px; }
.promo-row {
  width: 100%; box-sizing: border-box;
  display: flex; align-items: center; gap: 48px;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 44px; color: inherit; text-decoration: none;
}
.promo-row:hover { text-decoration: none; border-color: var(--accent); }
.promo-row:nth-child(even) { flex-direction: row-reverse; }
.promo-media { flex: 0 0 200px; display: flex; align-items: center; justify-content: center; }
.promo-media svg { width: 160px; height: 160px; }
/* 행 오른쪽에 넣는 앱 화면 와이어프레임 */
.promo-shot { flex: 0 0 250px; }
.promo-shot svg { display: block; width: 100%; height: auto; }
@media (max-width: 960px) { .promo-shot { display: none; } }
.promo-text { flex: 1; min-width: 0; }
.promo-text h3 { margin: 0 0 8px; font-size: 30px; line-height: 1.2; letter-spacing: -.02em; color: var(--accent); }
.promo-text .promo-tagline { margin: 0 0 12px; font-size: 19px; font-weight: 700; line-height: 1.4; letter-spacing: -.01em; color: var(--ink); }
.promo-text p { margin: 0; color: var(--graphite); font-size: 15px; line-height: 1.7; max-width: 54ch; }
@media (max-width: 700px) {
  .promo-row, .promo-row:nth-child(even) { flex-direction: column; text-align: center; padding: 32px 24px; }
  .promo-text p { margin: 0 auto; }
}
.card {
  background: var(--surface); padding: 26px 24px;
  border: none; border-radius: 0;
}
.card:hover { transform: none; }
.card .tag {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-wash); border-radius: 3px; padding: 3px 7px;
}
.card h3 { margin: 0 0 8px; font-size: 16.5px; letter-spacing: -.01em; color: var(--ink); }
.card p { margin: 0; font-size: 14.5px; color: var(--graphite); }
.card-link { display: block; color: inherit; text-decoration: none; transition: background .12s; }
.card-link:hover { text-decoration: none; background: var(--accent-wash); }

/* ---------- product page ---------- */
.p-hero { text-align: center; padding: 80px 0 56px; border-bottom: 1px solid var(--rule); }
.p-hero .tag {
  display: inline-block;
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-ink);
}
.p-hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(38px, 5vw, 58px); line-height: 1.06;
  letter-spacing: -.035em; font-weight: 800; text-wrap: balance;
}
.p-hero h1 em { font-style: normal; color: var(--accent); }
.p-hero .lead { font-size: 19px; margin: 0 0 12px; color: var(--ink); }
.p-hero .sub-lead { color: var(--graphite); font-size: 16.5px; max-width: 60ch; margin: 0 auto; }
.p-hero .cta { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.platform { color: var(--graphite); font-size: 13px; margin-top: 16px; font-family: var(--mono); letter-spacing: .04em; }

.section { padding: 66px 0; border-bottom: 1px solid var(--rule); }
.section h2 {
  margin: 0 0 12px; font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -.02em; font-weight: 700; text-wrap: balance;
}
.section .section-sub { margin: 0 0 32px; color: var(--graphite); max-width: 62ch; }

/* feature grid */
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden;
}
.feature { background: var(--surface); padding: 26px 24px; border: none; border-radius: 0; }
.feature h3 { margin: 0 0 8px; font-size: 16.5px; letter-spacing: -.01em; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.feature p { margin: 0; font-size: 14.5px; color: var(--graphite); }
.feature code, .callout code, td code {
  font-family: var(--mono); font-size: 13px;
  background: var(--accent-wash); color: var(--accent-ink);
  padding: 2px 6px; border-radius: 3px; border: none;
}
.badge-new {
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .08em;
  background: var(--accent); color: #fff; border-radius: 3px; padding: 2px 7px;
}

/* numbered steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); padding: 22px 20px; }
.step .num, .step .no {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  color: var(--accent); font-weight: 700; display: block; margin-bottom: 12px;
  width: auto; height: auto; background: none; border-radius: 0;
}
.step h3 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; font-size: 14px; color: var(--graphite); }

/* spec strip */
.specs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border: 1px solid var(--rule); border-radius: 6px;
  background: var(--surface); overflow: hidden;
}
.spec { padding: 12px 16px; border-right: 1px solid var(--rule-soft); }
.spec:last-child { border-right: 0; }
.spec span {
  display: block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--graphite); margin-bottom: 3px;
}
.spec b { font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }

/* tables */
.feature-table, .compare, .lic-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
}
.feature-table td, .compare th, .compare td, .lic-table th, .lic-table td {
  text-align: left; padding: 14px 20px;
  border-bottom: 1px solid var(--rule-soft); font-size: 14.5px;
}
.feature-table tr:last-child td, .compare tbody tr:last-child td, .lic-table tr:last-child td { border-bottom: 0; }
.feature-table td:first-child { width: 32%; font-weight: 600; color: var(--ink); }
.compare thead th, .lic-table th {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--graphite); font-weight: 600; background: var(--paper);
}
.compare tbody th { font-weight: 700; color: var(--ink); width: 110px; }
.compare .old { color: var(--graphite); }
.compare .new b { color: var(--ink); }

/* callout */
.callout {
  background: var(--surface); border: 1px solid var(--rule);
  border-left: 2px solid var(--accent);
  border-radius: 6px; padding: 22px 24px;
}
.callout p { margin: 0 0 10px; color: var(--graphite); }
.callout p:last-child { margin-bottom: 0; }
.callout b { color: var(--ink); }

/* plain list */
.list { list-style: none; padding: 0; margin: 0; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--surface); }
.list li { border-bottom: 1px solid var(--rule-soft); padding: 14px 20px; color: var(--graphite); font-size: 14.5px; }
.list li:last-child { border-bottom: none; }
.list li b { color: var(--ink); }

/* closing CTA */
.p-cta { text-align: center; padding: 74px 0; border-bottom: 1px solid var(--rule); }
.p-cta h2 { font-size: clamp(24px, 2.8vw, 32px); letter-spacing: -.02em; margin: 0 0 14px; }
.p-cta p { color: var(--graphite); margin: 0 auto 26px; max-width: 52ch; }

/* ---------- forms / panels ---------- */
.auth-wrap { max-width: 460px; margin: 56px auto; padding: 0 28px; }
.panel { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); padding: 30px; }
.panel h2 { margin: 0 0 6px; font-size: 24px; letter-spacing: -.02em; }
.panel h3 { letter-spacing: -.01em; }
.panel .sub { color: var(--graphite); margin: 0 0 22px; font-size: 15px; }

.field { margin-bottom: 16px; }
/* 라벨: 본문 글꼴 기준. mono+대문자+넓은 자간은 영문 전용 스타일이라
   한글 라벨(이메일/비밀번호)에서는 가독성만 떨어져 사용하지 않는다. */
.field label {
  display: block; font-size: 14px; font-weight: 600;
  letter-spacing: 0; color: var(--ink); margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%; padding: 12px 13px; border-radius: 6px;
  border: 1px solid var(--rule); background: var(--paper);
  color: var(--ink); font-family: inherit; font-size: 16px;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }

.input-wrap { position: relative; }
.input-wrap input { padding-right: 44px; }
.toggle-pw {
  position: absolute; top: 50%; right: 8px; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 18px; line-height: 1; padding: 4px 6px; opacity: .8;
}
.toggle-pw:hover { opacity: 1; }

/* 이메일 인증: 입력 + 옆 버튼 */
.row-inline { display: flex; gap: 8px; align-items: stretch; }
.row-inline input { flex: 1; min-width: 0; }
.btn-sub {
  flex-shrink: 0; padding: 0 14px; border-radius: 6px; cursor: pointer;
  border: 1px solid var(--rule); background: var(--paper); color: var(--ink);
  font-family: inherit; font-size: 14.5px; font-weight: 600; white-space: nowrap;
}
.btn-sub:hover:not(:disabled) { border-color: var(--accent); color: var(--accent-ink); }
.btn-sub:disabled { opacity: .45; cursor: not-allowed; }

.field select {
  width: 100%; padding: 12px 13px; border-radius: 6px;
  border: 1px solid var(--rule); background: var(--paper);
  color: var(--ink); font-family: inherit; font-size: 16px;
}
.field select:focus { outline: none; border-color: var(--accent); }

.hint { font-size: 13.5px; color: var(--graphite); margin-top: 6px; min-height: 16px; }
.hint.error { color: var(--danger); }
.hint.ok { color: var(--ok); }
.field.hidden { display: none; }
.field input.verified { border-color: var(--ok); background: rgba(0,0,0,0.015); }

.row-between { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-top: 16px; }
.msg { margin-top: 14px; font-size: 15px; min-height: 20px; }
.msg.error { color: var(--danger); }
.msg.ok { color: var(--ok); }
.center { text-align: center; margin-top: 18px; font-size: 15px; color: var(--graphite); }

/* consent block */
.agree { border: 1px solid var(--rule); border-radius: 6px; padding: 14px 16px; margin: 4px 0 18px; background: var(--paper); }
.agree hr { border: none; border-top: 1px solid var(--rule-soft); margin: 12px 0; }
.agree label { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; }
.agree-all { font-weight: 700; font-size: 16px; }
.agree-item { margin-top: 10px; font-size: 15px; color: var(--ink); line-height: 1.45; }
.agree input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); flex: 0 0 auto; }
.agree .req { color: var(--accent-ink); font-style: normal; font-size: 14px; }
.agree .opt { color: var(--graphite); font-style: normal; font-size: 14px; }
.agree .info { color: var(--graphite); cursor: help; font-size: 14px; }

/* ---------- board (notices) ---------- */
.board-list { width: 100%; border-collapse: collapse; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.board-list thead th {
  text-align: left; padding: 12px 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--graphite); background: var(--paper); border-bottom: 1px solid var(--rule);
}
.board-list td { padding: 14px 18px; border-bottom: 1px solid var(--rule-soft); font-size: 14.5px; vertical-align: middle; }
.board-list tr:last-child td { border-bottom: none; }
.board-list tr:hover td { background: var(--accent-wash); }
.board-list a { color: var(--ink); text-decoration: none; display: block; }
.board-list a:hover { color: var(--accent-ink); text-decoration: none; }
.board-list .col-date, .board-list .col-views { width: 130px; color: var(--graphite); font-size: 13px; white-space: nowrap; }
.board-pin {
  display: inline-block; margin-right: 8px;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .06em;
  background: var(--accent); color: #fff; border-radius: 3px; padding: 2px 6px;
}
.board-empty { padding: 40px 0; text-align: center; color: var(--graphite); }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.pagination button {
  min-width: 34px; height: 34px; padding: 0 8px;
  border: 1px solid var(--rule); border-radius: 6px; background: var(--surface);
  color: var(--graphite); font: inherit; font-size: 14px; cursor: pointer;
}
.pagination button:hover { border-color: var(--accent); color: var(--ink); }
.pagination button.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination button:disabled { opacity: .4; cursor: not-allowed; }

.post-meta { display: flex; gap: 14px; color: var(--graphite); font-size: 13.5px; margin: -6px 0 26px; }
.post-body { color: var(--ink); font-size: 15.5px; line-height: 1.8; white-space: pre-wrap; }

/* ---------- FAQ accordion ---------- */
.faq-cat {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-ink); margin: 28px 0 10px;
}
.faq-cat:first-child { margin-top: 0; }
details.faq-item {
  border: 1px solid var(--rule); border-radius: 8px; background: var(--surface);
  padding: 0; margin: 0 0 10px;
}
details.faq-item summary {
  cursor: pointer; padding: 15px 18px; font-weight: 600; font-size: 15px;
  list-style: none; color: var(--ink);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::before {
  content: "Q"; display: inline-block; width: 22px;
  font-family: var(--mono); color: var(--accent); font-weight: 700;
}
details.faq-item[open] summary::before { color: var(--accent-ink); }
details.faq-item .faq-answer { padding: 0 18px 18px 40px; color: var(--graphite); font-size: 14.5px; line-height: 1.7; white-space: pre-wrap; }

/* ---------- footer ---------- */
/* Pages that wrap content in <main> (glazir-exporter, manual) put the footer
   inside it, so <main> must grow and pass the free space down to the footer. */
body > main { flex: 1 0 auto; display: flex; flex-direction: column; }

footer {
  border-top: 1px solid var(--rule);
  margin-top: auto;          /* absorbs leftover height → footer sits at the bottom */
  padding: 14px 0 18px;
  color: var(--graphite); font-size: 12px;
}
footer .foot-in {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; flex-wrap: wrap;
}
.foot-biz p { margin: 0 0 2px; line-height: 1.45; }
.foot-biz p span { margin-right: 6px; }
/* separator between inline facts */
.foot-biz p span + span::before { content: '· '; color: var(--rule); }
.foot-name { font-weight: 700; color: var(--ink); font-size: 13px; margin-bottom: 3px !important; }
.foot-links { margin-top: 4px !important; }
.foot-links a { color: var(--graphite); margin-right: 12px; }
.foot-links a:hover { color: var(--accent-ink); }
.foot-copy { font-size: 11.5px; }
.foot-meta { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
