/**
 * THEME: NEW (Split-Screen Monolith)
 * Editorial hairline aesthetic — same character as monolith, updated font tokens.
 * Activated by body.theme-new
 */

body.theme-new {
  --ja-font-display: 'Cormorant Garamond', Georgia, serif;
  --ja-font-mono:    'JetBrains Mono', monospace;
  --ja-font-data:    'Geist Mono', monospace;
  --ja-radius:    8px;
  --ja-radius-lg: 12px;
  --ja-radius-xl: 16px;
  --ja-shadow:    none;
  --ja-shadow-lg: 0 24px 60px rgba(22, 24, 29, 0.08);
}

body.theme-new .ja-card,
body.theme-new .jg-card {
  border: 1px solid var(--ja-border);
  box-shadow: none;
}

body.theme-new .ja-btn,
body.theme-new .jg-btn {
  border-radius: 999px;
}

body.theme-new .ja-btn-primary,
body.theme-new .jg-btn-primary {
  background: var(--ja-ink);
  color: #fff;
  transition: background-color 0.3s ease, transform 0.15s ease;
}
body.theme-new .ja-btn-primary:hover,
body.theme-new .jg-btn-primary:hover {
  background: #2557D6;
}

body.theme-new .ja-input,
body.theme-new .ja-select,
body.theme-new .ja-textarea {
  border: 0;
  border-bottom: 1px solid var(--ja-border);
  border-radius: 0;
  background: transparent;
  padding-left: 2px;
  padding-right: 2px;
}
body.theme-new .ja-input:focus,
body.theme-new .ja-select:focus,
body.theme-new .ja-textarea:focus {
  box-shadow: none;
  border-bottom-color: var(--ja-ink);
  outline: none;
}

body.theme-new .ja-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ja-muted);
  font-weight: 500;
}

body.theme-new .ja-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--ja-border);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
body.theme-new .ja-section-head h2 { margin: 0; }

/* Nav links — mono tag style */
body.theme-new .ja-nav-link,
body.theme-new .jg-nav-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
